diff --git a/530952 Regressionstest HGm 2-2 ZB.docx b/530952 Regressionstest HGm 2-2 ZB.docx new file mode 100644 index 0000000..a0a73df Binary files /dev/null and b/530952 Regressionstest HGm 2-2 ZB.docx differ diff --git a/firmware/canfd_cdc_composite/CMakeLists.txt b/firmware/canfd_cdc_composite/CMakeLists.txt index 4fbbbb0..990bc68 100644 --- a/firmware/canfd_cdc_composite/CMakeLists.txt +++ b/firmware/canfd_cdc_composite/CMakeLists.txt @@ -11,4 +11,5 @@ target_sources(app PRIVATE src/cdc_handler.c src/pfet_control.c src/gs_usb_can.c + src/usb_gs_usb_class.c ) \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts b/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts index 573ecfd..a75507c 100644 --- a/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts +++ b/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts @@ -1,102 +1,160 @@ +/* + * Copyright (c) 2024 EWS Board + * Based on STM32G0B1RE-NUCLEO + * SPDX-License-Identifier: Apache-2.0 + */ + /dts-v1/; -#include -#include +#include +#include +#include / { - model = "EWS Board STM32G0B1KBU6"; - compatible = "ews,ews"; + model = "EWS STM32G0B1KBU6 board"; + compatible = "st,stm32g0b1kb-ews"; - chosen { - zephyr,console = &cdc_acm_uart0; - zephyr,shell-uart = &cdc_acm_uart0; - zephyr,sram = &sram0; - zephyr,flash = &flash0; - zephyr,canbus = &fdcan2; - }; + chosen { + zephyr,console = &usart1; + zephyr,shell-uart = &usart1; + zephyr,uart-mcumgr = &usart1; + zephyr,sram = &sram0; + zephyr,flash = &flash0; + zephyr,code-partition = &slot0_partition; + zephyr,canbus = &fdcan2; + }; - leds { - compatible = "gpio-leds"; - status_led: led_0 { - gpios = <&gpiob 4 GPIO_ACTIVE_HIGH>; - label = "Status LED"; - }; - }; + leds: leds { + compatible = "gpio-leds"; + status_led: led_0 { + gpios = <&gpiob 4 GPIO_ACTIVE_HIGH>; + label = "Status LED"; + }; + }; - pfets { - compatible = "gpio-leds"; - pfet1: pfet_1 { - gpios = <&gpioa 8 GPIO_ACTIVE_HIGH>; - label = "PFET1 Control"; - }; - pfet2: pfet_2 { - gpios = <&gpiob 2 GPIO_ACTIVE_HIGH>; - label = "PFET2 Control"; - }; - }; + gpio_keys { + compatible = "gpio-keys"; + pfet1: pfet1 { + label = "PFET1"; + gpios = <&gpioa 8 GPIO_ACTIVE_HIGH>; + zephyr,code = ; + }; + pfet2: pfet2 { + label = "PFET2"; + gpios = <&gpiob 2 GPIO_ACTIVE_HIGH>; + zephyr,code = ; + }; + }; - aliases { - led0 = &status_led; - pfet0 = &pfet1; - pfet1 = &pfet2; - }; + aliases { + led0 = &status_led; + pfet0 = &pfet1; + pfet1 = &pfet2; + watchdog0 = &iwdg; + die-temp0 = &die_temp; + volt-sensor0 = &vref; + volt-sensor1 = &vbat; + }; +}; + +&clk_lsi { + status = "okay"; }; &clk_hsi { - status = "okay"; + status = "okay"; +}; + +&clk_hsi48 { + status = "okay"; + crs-usb-sof; }; &pll { - div-m = <1>; - mul-n = <8>; - div-q = <2>; - div-r = <2>; - clocks = <&clk_hsi>; - status = "okay"; + div-m = <1>; + mul-n = <8>; + div-p = <2>; + div-q = <2>; + div-r = <2>; + clocks = <&clk_hsi>; + status = "okay"; }; &rcc { - clocks = <&pll>; - clock-frequency = ; - ahb-prescaler = <1>; - apb1-prescaler = <1>; + clocks = <&pll>; + clock-frequency = ; + ahb-prescaler = <1>; + apb1-prescaler = <1>; +}; + +zephyr_udc0: &usb { + pinctrl-0 = <&usb_dm_pa11 &usb_dp_pa12>; + pinctrl-names = "default"; + status = "okay"; +}; + +&usart1 { + pinctrl-0 = <&usart1_tx_pc4 &usart1_rx_pc5>; + pinctrl-names = "default"; + current-speed = <115200>; + status = "okay"; +}; + +&rtc { + clocks = <&rcc STM32_CLOCK(APB1, 10)>, + <&rcc STM32_SRC_LSI RTC_SEL(2)>; + status = "okay"; +}; + +&iwdg { + status = "okay"; }; &fdcan2 { - pinctrl-0 = <&fdcan2_rx_pb0 &fdcan2_tx_pb1>; - pinctrl-names = "default"; - status = "okay"; + clocks = <&rcc STM32_CLOCK(APB1, 12)>, + <&rcc STM32_SRC_PLL_Q FDCAN_SEL(1)>; + pinctrl-0 = <&fdcan2_rx_pb0 &fdcan2_tx_pb1>; + pinctrl-names = "default"; + status = "okay"; }; -&usb { - pinctrl-0 = <&usb_dm_pa11 &usb_dp_pa12>; - pinctrl-names = "default"; - status = "okay"; - cdc_acm_uart0: cdc_acm_uart0 { - compatible = "zephyr,cdc-acm-uart"; - }; +&die_temp { + status = "okay"; }; -&gpioa { - status = "okay"; +&vref { + status = "okay"; }; -&gpiob { - status = "okay"; +&vbat { + status = "okay"; }; &flash0 { - partitions { - compatible = "fixed-partitions"; - #address-cells = <1>; - #size-cells = <1>; + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; - boot_partition: partition@0 { - label = "mcuboot"; - reg = <0x00000000 0x00002000>; - }; - slot0_partition: partition@2000 { - label = "image-0"; - reg = <0x00002000 0x0001E000>; - }; - }; -}; \ No newline at end of file + boot_partition: partition@0 { + label = "mcuboot"; + reg = <0x00000000 DT_SIZE_K(16)>; + read-only; + }; + + slot0_partition: partition@4000 { + label = "image-0"; + reg = <0x00004000 DT_SIZE_K(96)>; + }; + + slot1_partition: partition@1c000 { + label = "image-1"; + reg = <0x0001c000 DT_SIZE_K(16)>; + }; + }; +}; + +stm32_lp_tick_source: &lptim1 { + clocks = <&rcc STM32_CLOCK(APB1, 31)>, + <&rcc STM32_SRC_LSI LPTIM1_SEL(1)>; + status = "okay"; +}; diff --git a/firmware/canfd_cdc_composite/build/.ninja_deps b/firmware/canfd_cdc_composite/build/.ninja_deps new file mode 100644 index 0000000..dc79982 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/.ninja_deps differ diff --git a/firmware/canfd_cdc_composite/build/.ninja_log b/firmware/canfd_cdc_composite/build/.ninja_log new file mode 100644 index 0000000..1f0e28b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/.ninja_log @@ -0,0 +1,209 @@ +# ninja log v7 +311 629 7869017007737905 zephyr/include/generated/zephyr/version.h 98e046cf82a64448 +311 629 7869017007737905 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/version.h 98e046cf82a64448 +290 2437 7869017025719784 zephyr/misc/generated/syscalls.json 39303dcdfbd7ea3f +290 2437 7869017025719784 zephyr/misc/generated/struct_tags.json 39303dcdfbd7ea3f +290 2437 7869017025719784 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls.json 39303dcdfbd7ea3f +290 2437 7869017025719784 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json 39303dcdfbd7ea3f +2502 2709 7869017028475641 zephyr/include/generated/device-api-sections.ld 6dc06ecac3c37c4e +2502 2709 7869017028475641 zephyr/include/generated/device-api-sections.cmake 6dc06ecac3c37c4e +2502 2709 7869017028475641 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld 6dc06ecac3c37c4e +2502 2709 7869017028475641 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.cmake 6dc06ecac3c37c4e +2447 2864 7869017028242713 zephyr/include/generated/zephyr/syscall_dispatch.c d234fe5eeb2f1688 +2447 2864 7869017028242713 zephyr/include/generated/zephyr/syscall_exports_llext.c d234fe5eeb2f1688 +2447 2864 7869017028242713 zephyr/syscall_weakdefs_llext.c d234fe5eeb2f1688 +2447 2864 7869017028242713 zephyr/include/generated/zephyr/syscall_list.h d234fe5eeb2f1688 +2447 2864 7869017028242713 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_dispatch.c d234fe5eeb2f1688 +2447 2864 7869017028242713 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_exports_llext.c d234fe5eeb2f1688 +2447 2864 7869017028242713 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/syscall_weakdefs_llext.c d234fe5eeb2f1688 +2447 2864 7869017028242713 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_list.h d234fe5eeb2f1688 +2466 3086 7869017031751466 zephyr/include/generated/zephyr/driver-validation.h 8248b63473f12125 +2466 3086 7869017031751466 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/driver-validation.h 8248b63473f12125 +2484 3097 7869017031994664 zephyr/include/generated/zephyr/kobj-types-enum.h 58085b804c68b97c +2484 3097 7869017031994664 zephyr/include/generated/zephyr/otype-to-str.h 58085b804c68b97c +2484 3097 7869017031994664 zephyr/include/generated/zephyr/otype-to-size.h 58085b804c68b97c +2484 3097 7869017031994664 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/kobj-types-enum.h 58085b804c68b97c +2484 3097 7869017031994664 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-str.h 58085b804c68b97c +2484 3097 7869017031994664 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-size.h 58085b804c68b97c +3098 3456 7869017032522381 zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj d477bc99927fa055 +3468 4011 7869017041292597 zephyr/include/generated/zephyr/offsets.h 52fd55cd89102228 +3468 4011 7869017041292597 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h 52fd55cd89102228 +4011 4591 7869017041659359 zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj 7a5335a2bc383615 +4107 4773 7869017042627126 zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj d6ebc18802e42aed +4040 4835 7869017041948998 CMakeFiles/app.dir/src/cdc_handler.c.obj 5c5424559166d83c +4366 4877 7869017045247900 zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj a7703cbce9aab0c0 +4026 4921 7869017041809359 CMakeFiles/app.dir/src/main.c.obj ebe0296bb97c2b57 +4189 4962 7869017043443948 zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj 1909caed1809d446 +4209 4992 7869017043650202 zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj 45241066fcf28930 +4092 5031 7869017042462725 CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj 78f1b0c314e09918 +4427 5067 7869017045825890 zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj ec0eff6f1c154bd5 +4057 5109 7869017042120990 CMakeFiles/app.dir/src/pfet_control.c.obj e65176519bc35106 +4134 5173 7869017042884336 zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj 2a9df7fb1eace586 +4234 5201 7869017043890173 zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj 15b8acbc2840115b +4169 5230 7869017043246036 zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj 2518b136947b1650 +4279 5251 7869017044342540 zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj 8779b877ff790959 +4151 5272 7869017043055684 zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj 89ff06add9c8dd5e +4075 5298 7869017042296795 CMakeFiles/app.dir/src/gs_usb_can.c.obj 76d15082267cbb09 +4962 5338 7869017051169797 zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj 646212fc59dcf907 +4884 5384 7869017050408732 zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj 9255e1cef7c35f8 +4992 5404 7869017051474706 zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj 5d00faa5c390f0a +4774 5427 7869017049293285 zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj ef4b0b2c43cd8797 +4252 5447 7869017044079871 zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj d5672b5a2eb9ea71 +4335 5547 7869017044907883 zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj 3072d5ce36133501 +4921 5641 7869017050769350 zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj a538d0f9b117c3be +5251 5699 7869017054060896 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj 3618823b493bfc1e +5032 5750 7869017051873029 zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj 13742f1be9a4ad66 +4599 5788 7869017047706755 zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj 6efef519edec6c45 +5174 5812 7869017053292421 zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj e86c80a5334c55a2 +5067 5836 7869017052220464 zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj 5bd0863bd4c2695 +4850 5862 7869017050069972 zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj 1ed50f496d948e23 +5119 5916 7869017052745794 zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj f7a0f30591546974 +5230 6119 7869017053847164 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj 5f2d6dce71c991f7 +5272 6182 7869017054270909 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj d628f5a9fb3b755a +5384 6205 7869017055394091 zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj af4378ed90eb7a20 +5863 6227 7869017060182782 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj 56c8ff8c87176023 +5339 6252 7869017054934455 zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj 683d18e3987ce47c +5700 6279 7869017058560353 zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj e373164743b1ab08 +5299 6301 7869017054533869 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj c17e03bdfe7a7be9 +5556 6331 7869017062351896 zephyr/linker_zephyr_pre0.cmd 6ab49fa3492df563 +5556 6331 7869017062351896 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd 6ab49fa3492df563 +5202 6354 7869017053569748 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj f4245212cf697eb5 +5789 6381 7869017059436167 zephyr/arch/common/libisr_tables.a ef7c36dd9b219431 +5651 6407 7869017058065205 zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj 1c275c3eda67cacb +5756 6429 7869017059116192 zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj ad1d61c02b271476 +6205 6460 7869017063605184 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj 760520601c9f1646 +5836 6609 7869017059907307 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj c7140f0317711a8b +6333 6667 7869017064884318 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj ad347ec5adc5bfc9 +6253 6718 7869017064080986 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj 421c84ce11c71b1c +5919 6743 7869017060740344 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj f5b3318e59d55aac +6355 6770 7869017065098284 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj 2a344fa316f10a17 +5814 6799 7869017059693845 zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj bf261e1a241c5c33 +6120 6822 7869017062748929 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj acb7c9423e8cb871 +6227 6902 7869017063825115 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj f71d3c5b434b2459 +6718 6981 7869017068731773 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj ba60a95f5ae76663 +5448 7075 7869017056032055 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj c1fded6eb50e8c1b +6183 7126 7869017063385082 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj c4f755b000f7c37c +6280 7159 7869017064341420 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj 6ae24d59daccc4a4 +6302 7216 7869017064567142 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj bf60c4a125a0f75b +6408 7250 7869017065635372 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj cbeeff2e0f9e2771 +6429 7283 7869017065840033 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj 446473821f6f7acf +6381 7307 7869017065356353 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj 5a1fda7dba874376 +6461 7329 7869017066232165 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj 64b9de7423735e18 +6609 7350 7869017067639670 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj de01ad428ad3a444 +5427 7438 7869017055822045 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj 2808a8bc2e76ea49 +6669 7477 7869017068231970 zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj 89ddb826cb164bc8 +7160 7586 7869017073159802 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj f0b9d021bb71e760 +6772 7617 7869017069266729 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj d2bc8bead722a6e2 +6823 7646 7869017069773279 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj 1db7c05edfd09b44 +6744 7674 7869017068991154 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj ba2b763234cebc75 +6799 7697 7869017069548065 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj bf1c5487b6d117e5 +7251 7727 7869017074057130 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj 3c38f730cafe795b +6933 7760 7869017070998318 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj e518f04750c183d +6984 7813 7869017071388930 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj 39af297ac826e930 +7128 7900 7869017072825992 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj 6dbedff775b67d27 +7092 7960 7869017072478791 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj 6c0cb05fdccd97f5 +7284 8013 7869017074391813 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj e80adcdd54e4f0e6 +7330 8084 7869017074844296 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj 8b558f332f334485 +7217 8127 7869017073713073 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj ac2905a42208b0fe +7307 8204 7869017074617350 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj aa392dc24b78ac6b +7350 8416 7869017075055532 zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj 13ee4b28954f6f5 +7728 8542 7869017078822794 zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj 7c5c1a9ca381c1b8 +7698 8594 7869017078523005 zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj b9de70c5303ea4d +7962 8652 7869017081185503 zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj 859af119a7f7f94d +7675 8738 7869017078296788 zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj b14352759eea1c5d +7831 8763 7869017079956965 zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj daab3f1c99544f8e +7901 8793 7869017080564123 zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj 5f1edaca74cc195f +7647 8823 7869017078016647 zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj ac2301f5f3060d2f +7761 8856 7869017079152757 zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj 45cb0d5b5f36cf +7587 8905 7869017077417041 zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj 2b35e04cd5936c23 +8085 8952 7869017082396054 zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj 2c3ffaab13cfb6dd +8014 8996 7869017081682883 zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj ede0f78c4dfbe3ba +7442 9058 7869017075965347 zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj ba14b4c896217c29 +8554 9090 7869017087133606 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj a29605eb18207f68 +8205 9123 7869017083598412 zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj b6a908b8622c58be +8599 9221 7869017087618015 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj fd50a11864dbde34 +8417 9248 7869017085760428 zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj ca63ee90b05487f2 +8793 9388 7869017089478318 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj 2db7101d8cea00ab +5405 9455 7869017055594158 zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj 9a72174e0e225bed +8663 9538 7869017088183480 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj 5abb82218f12d370 +8857 9598 7869017090121326 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj 8689a8a5009dd5af +8738 9710 7869017088929465 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj 315babb763ddb92f +8129 9736 7869017082841543 zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj 97bb97c307fac7e3 +8952 9785 7869017091077270 zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj 706db9f610ccc10c +8912 9816 7869017090705648 zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj 72e1a5d32419e387 +8763 9841 7869017089185150 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj 62677b094ec12806 +9090 9939 7869017092450625 zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj 6c40d33740f6d39c +8999 9967 7869017091540732 zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj 7a988a94320c13a1 +9059 9998 7869017092134171 zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj 38f4f429e652d261 +9547 10035 7869017097130908 zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj 3b43f8daf1c27265 +8824 10070 7869017089794173 modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj c759bd38aebb1b90 +9222 10110 7869017093762192 zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj 2b80520f3c594585 +9124 10234 7869017092787958 zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj 8f1cb35d3fa09431 +9248 10274 7869017094032200 zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj fa877a7137314140 +9409 10306 7869017095669895 zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj 7e32a38675540182 +9494 10389 7869017096574058 zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj 372439437ef59ed4 +9716 10526 7869017098712540 zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj 82d746b82f95aba3 +9609 10571 7869017097726248 zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj 3f10f278d9c19583 +7618 10632 7869017077732523 zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj 2aa01ee02b6e7dcf +7477 10661 7869017076325376 zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj 8c0cacda81bcd21a +9737 10717 7869017098915466 zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj 42e31a8c0bcf8d81 +9970 10747 7869017101264428 zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj c81fc2675f5bbbf4 +9817 10775 7869017099750821 zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj 231623d784dd7db9 +9940 10822 7869017100944439 zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj 37a06de57fdfc628 +9843 10858 7869017099986692 zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj 7cb52a3aa59711cf +10036 10910 7869017101912717 zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj 630eab2ea6f8f93f +10748 10976 7869017109033189 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj 74a1ced60f072d90 +9786 11002 7869017099405441 zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj 4696e5aa08185cea +10071 11117 7869017102264275 zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj dfa587a22f915c45 +10663 11151 7869017108176089 app/libapp.a 4550d6b7a137e6fc +10277 11199 7869017104324378 zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj 6a26b01506f5b7d2 +10527 11224 7869017106818025 zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj 2911842f86810ca3 +10239 11273 7869017103929711 zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj 4a0bce50affad408 +10823 11308 7869017109773541 zephyr/arch/arch/arm/core/libarch__arm__core.a e07bb8c9f9e8ee87 +10391 11337 7869017105457369 zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj 5e437d6980ad7014 +9998 11364 7869017101531831 zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj c8ecbcccd5b45742 +10637 11393 7869017107929861 zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj 1b6e253c961f7a26 +10310 11418 7869017104789823 zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj 2b3b407873326b10 +10776 11443 7869017109303216 zephyr/arch/common/libarch__common.a 175d5e7d0c4e18a8 +10718 11477 7869017108727070 zephyr/libzephyr.a da914ae38eb47b30 +10861 11501 7869017110163520 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a fd8ead93176e87f0 +10977 11502 7869017111314091 zephyr/lib/libc/common/liblib__libc__common.a b617a0dc1f503ee4 +10578 11503 7869017107468000 zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj 97543068816726bc +10912 11504 7869017110673692 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a ac87a09dec6dfd27 +11003 11505 7869017111578428 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a a273c4ccf879c563 +11117 11505 7869017112724851 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a 2b20ab1a47a6b8bd +11151 11505 7869017113065442 zephyr/drivers/usb/device/libdrivers__usb__device.a 56d32101c06ea501 +11199 11506 7869017113545466 zephyr/drivers/can/libdrivers__can.a 104ac8258884d22f +11224 11506 7869017113876000 zephyr/drivers/clock_control/libdrivers__clock_control.a db2c5e0c628b506d +11273 11523 7869017114282031 zephyr/drivers/console/libdrivers__console.a 921ec1de9d149ea +11310 11547 7869017114668105 zephyr/drivers/gpio/libdrivers__gpio.a fac96a45ff2213a0 +11338 11573 7869017114929578 zephyr/drivers/hwinfo/libdrivers__hwinfo.a de31415ee0ed3771 +11364 11592 7869017115218693 zephyr/drivers/pinctrl/libdrivers__pinctrl.a 9449fc09071af18c +11394 11626 7869017115487272 zephyr/drivers/reset/libdrivers__reset.a def1050ae32993dd +11418 11644 7869017115727774 zephyr/drivers/serial/libdrivers__serial.a 8c30962fa95ccfa4 +11446 11664 7869017116014228 zephyr/drivers/timer/libdrivers__timer.a 33d809060665fbc7 +11477 11699 7869017116324574 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a 3b55c3326d3d01b0 +10127 11704 7869017102892697 zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj a861d7c843c9e549 +11704 12002 7869017118595628 zephyr/kernel/libkernel.a 7d8ccf9455a1fffd +12002 12471 7869017124728418 zephyr/zephyr_pre0.elf f6779521eb1719fd +12002 12471 7869017124728418 zephyr/zephyr_pre0.map f6779521eb1719fd +12002 12471 7869017124728418 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.map f6779521eb1719fd +12471 12748 7869017128373247 zephyr/linker.cmd d9f72909047c7ee5 +12471 12748 7869017128373247 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/linker.cmd d9f72909047c7ee5 +12749 13428 7869017135367073 zephyr/isr_tables.c e1ecaa2b8677c5e6 +12749 13428 7869017135367073 zephyr/isr_tables_vt.ld e1ecaa2b8677c5e6 +12749 13428 7869017135367073 zephyr/isr_tables_swi.ld e1ecaa2b8677c5e6 +12749 13428 7869017135367073 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/isr_tables.c e1ecaa2b8677c5e6 +12749 13428 7869017135367073 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/isr_tables_vt.ld e1ecaa2b8677c5e6 +12749 13428 7869017135367073 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/isr_tables_swi.ld e1ecaa2b8677c5e6 +13429 13555 7869017135836712 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj db44dded05c24c6c +13446 13763 7869017136016439 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj 68626e1fa57865c0 +13764 15039 7869017145502376 zephyr/zephyr.elf dba34878a57f7dd2 +13764 15039 7869017145502376 zephyr/zephyr.map dba34878a57f7dd2 +13764 15039 7869017145502376 zephyr/zephyr.hex dba34878a57f7dd2 +13764 15039 7869017145502376 zephyr/zephyr.bin dba34878a57f7dd2 +13764 15039 7869017145502376 zephyr/zephyr.stat dba34878a57f7dd2 +13764 15039 7869017145502376 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.map dba34878a57f7dd2 +13764 15039 7869017145502376 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.hex dba34878a57f7dd2 +13764 15039 7869017145502376 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.bin dba34878a57f7dd2 +13764 15039 7869017145502376 C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.stat dba34878a57f7dd2 diff --git a/firmware/canfd_cdc_composite/build/CMakeCache.txt b/firmware/canfd_cdc_composite/build/CMakeCache.txt new file mode 100644 index 0000000..0054187 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeCache.txt @@ -0,0 +1,624 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build +# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Application Binary Directory +APPLICATION_BINARY_DIR:PATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build + +//The application configuration folder +APPLICATION_CONFIG_DIR:PATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite + +//Application Source Directory +APPLICATION_SOURCE_DIR:PATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite + +//Selected board +BOARD:STRING=ews + +//Main board directory for board (ews) +BOARD_DIR:PATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews + +//Support board extensions +BOARD_EXTENSIONS:BOOL=ON + +//Path to a program. +BOSSAC:FILEPATH=BOSSAC-NOTFOUND + +//Kernel binary file +BYPRODUCT_KERNEL_BIN_NAME:FILEPATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.bin + +//Kernel elf file +BYPRODUCT_KERNEL_ELF_NAME:FILEPATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf + +//Kernel hex file +BYPRODUCT_KERNEL_HEX_NAME:FILEPATH=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.hex + +//Selected board +CACHED_BOARD:STRING=ews + +//Selected shield +CACHED_SHIELD:STRING= + +//Selected snippet +CACHED_SNIPPET:STRING= + +//Path to a program. +CCACHE_FOUND:FILEPATH=CCACHE_FOUND-NOTFOUND + +//Path to a program. +CCACHE_PROGRAM:FILEPATH=CCACHE_PROGRAM-NOTFOUND + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar.exe + +//Path to a program. +CMAKE_AS:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-as.exe + +//ASM compiler +CMAKE_ASM_COMPILER:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:STRING=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of build database during the build. +CMAKE_EXPORT_BUILD_DATABASE:BOOL= + +//Export CMake compile commands. Used by gen_app_partitions.py +// script +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects + +//Path to a program. +CMAKE_GCOV:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov.exe + +//Path to a program. +CMAKE_GDB:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb.exe + +//Path to a program. +CMAKE_GDB_NO_PY:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb.exe + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Zephyr-Kernel + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=ews_canfd_cdc_composite + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the archiver during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the archiver during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the archiver during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//If desired, you can build the application usingthe configuration +// settings specified in an alternate .conf file using this parameter. +// These settings will override the settings in the application’s +// .config file or its default .conf file.Multiple files may be +// listed, e.g. CONF_FILE="prj1.conf;prj2.conf" The CACHED_CONF_FILE +// is internal Zephyr variable used between CMake runs. To change +// CONF_FILE, use the CONF_FILE variable. +CONF_FILE:STRING=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf + +//Path to a program. +DTC:FILEPATH=C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dtc.exe + +//If desired, you can build the application using the DT configuration +// settings specified in an alternate .overlay file using this +// parameter. These settings will override the settings in the +// board's .dts file. Multiple files may be listed, e.g. DTC_OVERLAY_FILE="dts1.overlay +// dts2.overlay" +DTC_OVERLAY_FILE:STRING= + +//Path to a program. +GEN_KOBJECT_LIST:FILEPATH=C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py + +//Linker BFD compatibility (compiler reported) +GNULD_LINKER_IS_BFD:BOOL=ON + +//GNU ld version +GNULD_VERSION_STRING:STRING=2.38 + +//Path to a program. +GPERF:FILEPATH=C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gperf.exe + +//Path to a program. +IMGTOOL:FILEPATH=C:/Users/iteedi/zephyrproject/bootloader/mcuboot/scripts/imgtool.py + +//Path to a program. +OPENOCD:FILEPATH=OPENOCD-NOTFOUND + +//Path to a program. +PAHOLE:FILEPATH=PAHOLE-NOTFOUND + +//Path to a program. +PTY_INTERFACE:FILEPATH=C:/Program Files/Git/usr/bin/winpty.exe + +//Path to a program. +PUNCOVER:FILEPATH=PUNCOVER-NOTFOUND + +//Value Computed by CMake +Picolibc_BINARY_DIR:STATIC=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc + +//Value Computed by CMake +Picolibc_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +Picolibc_SOURCE_DIR:STATIC=C:/Users/iteedi/zephyrproject/modules/lib/picolibc + +//Path to the SoC directory. +SOC_FULL_DIR:PATH=C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 + +//True if toolchain supports newlib +TOOLCHAIN_HAS_NEWLIB:BOOL=ON + +//True if toolchain supports picolibc +TOOLCHAIN_HAS_PICOLIBC:BOOL=ON + +//Zephyr toolchain root +TOOLCHAIN_ROOT:STRING=C:/Users/iteedi/zephyrproject/zephyr + +//No help, variable specified on the command line. +WEST_PYTHON:UNINITIALIZED=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe + +//Zephyr base +ZEPHYR_BASE:PATH=C:/Users/iteedi/zephyrproject/zephyr + +//Path to Zephyr git repository index file +ZEPHYR_GIT_INDEX:PATH=C:/Users/iteedi/zephyrproject/zephyr/.git/index + +//Zephyr SDK install directory +ZEPHYR_SDK_INSTALL_DIR:PATH=C:/Users/iteedi/zephyr-sdk-0.17.4 + +//Zephyr toolchain variant +ZEPHYR_TOOLCHAIN_VARIANT:STRING=zephyr + +//Value Computed by CMake +Zephyr-Kernel_BINARY_DIR:STATIC=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build + +//Value Computed by CMake +Zephyr-Kernel_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Zephyr-Kernel_SOURCE_DIR:STATIC=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite + +//The directory containing a CMake configuration file for Zephyr-sdk. +Zephyr-sdk_DIR:PATH=C:/Users/iteedi/zephyr-sdk-0.17.4/cmake + +//The directory containing a CMake configuration file for ZephyrAppConfiguration. +ZephyrAppConfiguration_DIR:PATH=ZephyrAppConfiguration_DIR-NOTFOUND + +//The directory containing a CMake configuration file for ZephyrBuildConfiguration. +ZephyrBuildConfiguration_DIR:PATH=ZephyrBuildConfiguration_DIR-NOTFOUND + +//The directory containing a CMake configuration file for Zephyr. +Zephyr_DIR:PATH=C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake + +//Value Computed by CMake +ews_canfd_cdc_composite_BINARY_DIR:STATIC=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build + +//Value Computed by CMake +ews_canfd_cdc_composite_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +ews_canfd_cdc_composite_SOURCE_DIR:STATIC=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite + + +######################## +# INTERNAL cache entries +######################## + +//List of board directories for board (ews) +BOARD_DIRECTORIES:INTERNAL=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews +//DT bindings root directories +CACHED_DTS_ROOT_BINDINGS:INTERNAL=C:/Users/iteedi/zephyrproject/zephyr/dts/bindings +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER +CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=1 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE +CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=161 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-4.1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Dtc +FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dtc.exe][v1.6.1(1.4.6)] +//Details about finding GnuLd +FIND_PACKAGE_MESSAGE_DETAILS_GnuLd:INTERNAL=[c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe][v2.38()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe][found components: Interpreter ][v3.13.3(3.10)] +//Zephyr hardware model version +HWM:INTERNAL=v2 +//Zephyr hardware model +HWMv2:INTERNAL=True +KERNEL_META_PATH:INTERNAL=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.meta +//List of SoC directories for SoC (stm32g0b1xx) +SOC_DIRECTORIES:INTERNAL=C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 +SOC_LINKER_SCRIPT:INTERNAL=C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld +//West +WEST:INTERNAL=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe;-m;west +//Compiler reason failure +_Python3_Compiler_REASON_FAILURE:INTERNAL= +//Development reason failure +_Python3_Development_REASON_FAILURE:INTERNAL= +_Python3_EXECUTABLE:INTERNAL=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe +//Path to a program. +_Python3_EXECUTABLE_DEBUG:INTERNAL=_Python3_EXECUTABLE_DEBUG-NOTFOUND +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;13;3;64;;cp313-win_amd64.pyd;;C:\Users\iteedi\AppData\Local\Programs\Python\Python313\Lib;C:\Users\iteedi\zephyrproject\.venv\Lib;C:\Users\iteedi\zephyrproject\.venv\Lib\site-packages;C:\Users\iteedi\zephyrproject\.venv\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=e7ee77aa6362a18c02dce228e9c4a023 +//NumPy reason failure +_Python3_NumPy_REASON_FAILURE:INTERNAL= + diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeASMCompiler.cmake b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeASMCompiler.cmake new file mode 100644 index 0000000..8af1b03 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeASMCompiler.cmake @@ -0,0 +1,30 @@ +set(CMAKE_ASM_COMPILER "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe") +set(CMAKE_LINKER "c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_COMPILER_LINKER "") +set(CMAKE_ASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + +set(CMAKE_ASM_ARCHITECTURE_ID "") + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED ) + + diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..6ec00f7 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake @@ -0,0 +1,84 @@ +set(CMAKE_C_COMPILER "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "12.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "") +set(CMAKE_C90_COMPILE_FEATURES "") +set(CMAKE_C99_COMPILE_FEATURES "") +set(CMAKE_C11_COMPILE_FEATURES "") +set(CMAKE_C17_COMPILE_FEATURES "") +set(CMAKE_C23_COMPILE_FEATURES "") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID "") + + + +set(CMAKE_AR "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe") +set(CMAKE_LINKER "c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "") +set(CMAKE_C_COMPILER_LINKER_ID "") +set(CMAKE_C_COMPILER_LINKER_VERSION ) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED ) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..00a2476 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake @@ -0,0 +1,100 @@ +set(CMAKE_CXX_COMPILER "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "12.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "") +set(CMAKE_CXX98_COMPILE_FEATURES "") +set(CMAKE_CXX11_COMPILE_FEATURES "") +set(CMAKE_CXX14_COMPILE_FEATURES "") +set(CMAKE_CXX17_COMPILE_FEATURES "") +set(CMAKE_CXX20_COMPILE_FEATURES "") +set(CMAKE_CXX23_COMPILE_FEATURES "") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "") + + + +set(CMAKE_AR "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe") +set(CMAKE_LINKER "c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED ) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") + diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeSystem.cmake b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeSystem.cmake new file mode 100644 index 0000000..ccf3f5f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Generic-4.3.0") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "4.3.0") +set(CMAKE_SYSTEM_PROCESSOR "arm") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..ab3c359 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,934 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.o b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000..4ead8be Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.o differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..b35f567 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,949 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.o b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000..c147c71 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.o differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/CMakeConfigureLog.yaml b/firmware/canfd_cdc_composite/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..14cf569 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,9442 @@ + +--- +events: + - + kind: "find_package-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:28 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + name: "ZephyrBuildConfiguration" + configs: + - + filename: "ZephyrBuildConfig.cmake" + kind: "cmake" + - + filename: "zephyrbuild-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: true + global: false + policy_scope: false + bypass_provider: false + names: + - "ZephyrBuild" + search_paths: + - "C:/Users/iteedi/zephyrproject/zephyr/../*" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: false + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: false + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: false + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/.venv/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/.venv/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/.west/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/.west/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/bootloader/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/bootloader/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/modules/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/modules/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/tools/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/tools/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/cmake/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/cmake/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find_package-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:41 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + name: "ZephyrAppConfiguration" + configs: + - + filename: "ZephyrAppConfig.cmake" + kind: "cmake" + - + filename: "zephyrapp-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: true + global: false + policy_scope: false + bypass_provider: false + names: + - "ZephyrApp" + search_paths: + - "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: false + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: false + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: false + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/ZephyrAppConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/zephyrapp-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/ZephyrAppConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/zephyrapp-config.cmake" + mode: "config" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/FindPython/Support.cmake:2430 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/FindPython3.cmake:656 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/python.cmake:41 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "_Python3_EXECUTABLE_DEBUG" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "python3.13_d" + - "python3_d" + - "python_d" + candidate_directories: + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + searched_directories: + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python3.13_d.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python3.13_d.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python3.13_d" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python3_d.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python3_d.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python3_d" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python_d.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python_d.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/python_d" + found: false + search_context: + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/ccache.cmake:10 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CCACHE_FOUND" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ccache" + candidate_directories: + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ccache.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ccache.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ccache" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ccache.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ccache.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ccache" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ccache.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ccache.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ccache" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ccache.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ccache.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ccache" + - "C:/ProgramData/Oracle/Java/javapath/ccache.com" + - "C:/ProgramData/Oracle/Java/javapath/ccache.exe" + - "C:/ProgramData/Oracle/Java/javapath/ccache" + - "C:/Windows/System32/ccache.com" + - "C:/Windows/System32/ccache.exe" + - "C:/Windows/System32/ccache" + - "C:/Windows/ccache.com" + - "C:/Windows/ccache.exe" + - "C:/Windows/ccache" + - "C:/Windows/System32/wbem/ccache.com" + - "C:/Windows/System32/wbem/ccache.exe" + - "C:/Windows/System32/wbem/ccache" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ccache.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ccache.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ccache" + - "C:/Windows/System32/OpenSSH/ccache.com" + - "C:/Windows/System32/OpenSSH/ccache.exe" + - "C:/Windows/System32/OpenSSH/ccache" + - "C:/Program Files/dotnet/ccache.com" + - "C:/Program Files/dotnet/ccache.exe" + - "C:/Program Files/dotnet/ccache" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ccache.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ccache.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ccache" + - "C:/Programme/SmarTeam/XCADConverters/ccache.com" + - "C:/Programme/SmarTeam/XCADConverters/ccache.exe" + - "C:/Programme/SmarTeam/XCADConverters/ccache" + - "C:/Programme/SmarTeam/Bin/ccache.com" + - "C:/Programme/SmarTeam/Bin/ccache.exe" + - "C:/Programme/SmarTeam/Bin/ccache" + - "C:/Program Files/TortoiseSVN/bin/ccache.com" + - "C:/Program Files/TortoiseSVN/bin/ccache.exe" + - "C:/Program Files/TortoiseSVN/bin/ccache" + - "C:/Program Files/usbipd-win/ccache.com" + - "C:/Program Files/usbipd-win/ccache.exe" + - "C:/Program Files/usbipd-win/ccache" + - "C:/Program Files (x86)/PuTTY/ccache.com" + - "C:/Program Files (x86)/PuTTY/ccache.exe" + - "C:/Program Files (x86)/PuTTY/ccache" + - "C:/Program Files/nodejs/ccache.com" + - "C:/Program Files/nodejs/ccache.exe" + - "C:/Program Files/nodejs/ccache" + - "C:/ProgramData/chocolatey/bin/ccache.com" + - "C:/ProgramData/chocolatey/bin/ccache.exe" + - "C:/ProgramData/chocolatey/bin/ccache" + - "C:/Program Files/Go/bin/ccache.com" + - "C:/Program Files/Go/bin/ccache.exe" + - "C:/Program Files/Go/bin/ccache" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ccache.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ccache.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ccache" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ccache.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ccache.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ccache" + - "C:/Program Files/Git/cmd/ccache.com" + - "C:/Program Files/Git/cmd/ccache.exe" + - "C:/Program Files/Git/cmd/ccache" + - "C:/Program Files/Git/mingw64/bin/ccache.com" + - "C:/Program Files/Git/mingw64/bin/ccache.exe" + - "C:/Program Files/Git/mingw64/bin/ccache" + - "C:/Program Files/Git/usr/bin/ccache.com" + - "C:/Program Files/Git/usr/bin/ccache.exe" + - "C:/Program Files/Git/usr/bin/ccache" + - "C:/Program Files/CMake/bin/ccache.com" + - "C:/Program Files/CMake/bin/ccache.exe" + - "C:/Program Files/CMake/bin/ccache" + - "C:/Program Files/Calibre2/ccache.com" + - "C:/Program Files/Calibre2/ccache.exe" + - "C:/Program Files/Calibre2/ccache" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ccache.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ccache.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ccache" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ccache.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ccache" + - "C:/zap/zap-win-x64/ccache.com" + - "C:/zap/zap-win-x64/ccache.exe" + - "C:/zap/zap-win-x64/ccache" + - "C:/Users/iteedi/AppData/Roaming/npm/ccache.com" + - "C:/Users/iteedi/AppData/Roaming/npm/ccache.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/ccache" + - "C:/Users/iteedi/go/bin/ccache.com" + - "C:/Users/iteedi/go/bin/ccache.exe" + - "C:/Users/iteedi/go/bin/ccache" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ccache.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ccache" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/ccache.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/ccache" + - "C:/Program Files/7-Zip/ccache.com" + - "C:/Program Files/7-Zip/ccache.exe" + - "C:/Program Files/7-Zip/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/ccache" + - "C:/Program Files (x86)/Nmap/ccache.com" + - "C:/Program Files (x86)/Nmap/ccache.exe" + - "C:/Program Files (x86)/Nmap/ccache" + - "C:/Users/iteedi/.dotnet/tools/ccache.com" + - "C:/Users/iteedi/.dotnet/tools/ccache.exe" + - "C:/Users/iteedi/.dotnet/tools/ccache" + found: false + search_context: + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find_package-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindZephyr-sdk.cmake:100 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:51 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + name: "Zephyr-sdk" + components: + - + name: "LOAD" + required: false + found: false + configs: + - + filename: "Zephyr-sdkConfig.cmake" + kind: "cmake" + - + filename: "zephyr-sdk-config.cmake" + kind: "cmake" + version_request: + version: "0.0.0" + version_complete: "0.0.0" + exact: true + settings: + required: "optional" + quiet: true + global: false + policy_scope: true + bypass_provider: false + names: + - "Zephyr-sdk" + search_paths: + - "/usr" + - "/usr/local" + - "/opt" + - "/.local" + - "/.local/opt" + - "/bin" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/.venv/Scripts/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/.venv/Scripts/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Programme/Oracle/product/12.2.0/client_1/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Programme/Oracle/product/12.2.0/client_1/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/ProgramData/Oracle/Java/javapath/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/ProgramData/Oracle/Java/javapath/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/wbem/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/wbem/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/WindowsPowerShell/v1.0/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/WindowsPowerShell/v1.0/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/OpenSSH/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Windows/System32/OpenSSH/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/dotnet/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/dotnet/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/Enterprise Vault/EVClient/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/Enterprise Vault/EVClient/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Programme/SmarTeam/XCADConverters/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Programme/SmarTeam/XCADConverters/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Programme/SmarTeam/Bin/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Programme/SmarTeam/Bin/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/TortoiseSVN/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/TortoiseSVN/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/usbipd-win/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/usbipd-win/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/PuTTY/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/PuTTY/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/nodejs/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/nodejs/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/ProgramData/chocolatey/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/ProgramData/chocolatey/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Go/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Go/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Git/cmd/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Git/cmd/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Git/mingw64/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Git/mingw64/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Git/usr/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Git/usr/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/CMake/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/CMake/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Calibre2/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/Calibre2/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/7-Zip/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files/7-Zip/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/Nmap/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Program Files (x86)/Nmap/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "insufficient_version" + - + path: "C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:54 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "GPERF" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gperf" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gperf.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gperf.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gperf" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gperf.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gperf.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gperf" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gperf.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gperf.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gperf" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gperf.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gperf.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gperf" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gperf.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gperf.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gperf" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gperf.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gperf.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gperf" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gperf.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gperf.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gperf" + - "C:/ProgramData/Oracle/Java/javapath/gperf.com" + - "C:/ProgramData/Oracle/Java/javapath/gperf.exe" + - "C:/ProgramData/Oracle/Java/javapath/gperf" + - "C:/Windows/System32/gperf.com" + - "C:/Windows/System32/gperf.exe" + - "C:/Windows/System32/gperf" + - "C:/Windows/gperf.com" + - "C:/Windows/gperf.exe" + - "C:/Windows/gperf" + - "C:/Windows/System32/wbem/gperf.com" + - "C:/Windows/System32/wbem/gperf.exe" + - "C:/Windows/System32/wbem/gperf" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gperf.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gperf.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gperf" + - "C:/Windows/System32/OpenSSH/gperf.com" + - "C:/Windows/System32/OpenSSH/gperf.exe" + - "C:/Windows/System32/OpenSSH/gperf" + - "C:/Program Files/dotnet/gperf.com" + - "C:/Program Files/dotnet/gperf.exe" + - "C:/Program Files/dotnet/gperf" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gperf.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gperf.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gperf" + - "C:/Programme/SmarTeam/XCADConverters/gperf.com" + - "C:/Programme/SmarTeam/XCADConverters/gperf.exe" + - "C:/Programme/SmarTeam/XCADConverters/gperf" + - "C:/Programme/SmarTeam/Bin/gperf.com" + - "C:/Programme/SmarTeam/Bin/gperf.exe" + - "C:/Programme/SmarTeam/Bin/gperf" + - "C:/Program Files/TortoiseSVN/bin/gperf.com" + - "C:/Program Files/TortoiseSVN/bin/gperf.exe" + - "C:/Program Files/TortoiseSVN/bin/gperf" + - "C:/Program Files/usbipd-win/gperf.com" + - "C:/Program Files/usbipd-win/gperf.exe" + - "C:/Program Files/usbipd-win/gperf" + - "C:/Program Files (x86)/PuTTY/gperf.com" + - "C:/Program Files (x86)/PuTTY/gperf.exe" + - "C:/Program Files (x86)/PuTTY/gperf" + - "C:/Program Files/nodejs/gperf.com" + - "C:/Program Files/nodejs/gperf.exe" + - "C:/Program Files/nodejs/gperf" + - "C:/ProgramData/chocolatey/bin/gperf.com" + - "C:/ProgramData/chocolatey/bin/gperf.exe" + - "C:/ProgramData/chocolatey/bin/gperf" + - "C:/Program Files/Go/bin/gperf.com" + - "C:/Program Files/Go/bin/gperf.exe" + - "C:/Program Files/Go/bin/gperf" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gperf.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gperf.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gperf" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gperf.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gperf.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gperf" + - "C:/Program Files/Git/cmd/gperf.com" + - "C:/Program Files/Git/cmd/gperf.exe" + - "C:/Program Files/Git/cmd/gperf" + - "C:/Program Files/Git/mingw64/bin/gperf.com" + - "C:/Program Files/Git/mingw64/bin/gperf.exe" + - "C:/Program Files/Git/mingw64/bin/gperf" + - "C:/Program Files/Git/usr/bin/gperf.com" + - "C:/Program Files/Git/usr/bin/gperf.exe" + - "C:/Program Files/Git/usr/bin/gperf" + - "C:/Program Files/CMake/bin/gperf.com" + - "C:/Program Files/CMake/bin/gperf.exe" + - "C:/Program Files/CMake/bin/gperf" + - "C:/Program Files/Calibre2/gperf.com" + - "C:/Program Files/Calibre2/gperf.exe" + - "C:/Program Files/Calibre2/gperf" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gperf.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gperf.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gperf" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gperf.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gperf.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gperf" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gperf.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gperf.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gperf" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gperf.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gperf.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gperf" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gperf.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gperf.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gperf" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gperf.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gperf.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gperf" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gperf.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gperf.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gperf" + - "C:/zap/zap-win-x64/gperf.com" + - "C:/zap/zap-win-x64/gperf.exe" + - "C:/zap/zap-win-x64/gperf" + - "C:/Users/iteedi/AppData/Roaming/npm/gperf.com" + - "C:/Users/iteedi/AppData/Roaming/npm/gperf.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/gperf" + - "C:/Users/iteedi/go/bin/gperf.com" + - "C:/Users/iteedi/go/bin/gperf.exe" + - "C:/Users/iteedi/go/bin/gperf" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gperf.com" + found: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gperf.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:57 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "OPENOCD" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "openocd" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/openocd.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/openocd.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/openocd" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/openocd.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/openocd.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/openocd" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/openocd.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/openocd.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/openocd" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/openocd.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/openocd.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/openocd" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/openocd.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/openocd.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/openocd" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/openocd.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/openocd.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/openocd" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/openocd.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/openocd.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/openocd" + - "C:/ProgramData/Oracle/Java/javapath/openocd.com" + - "C:/ProgramData/Oracle/Java/javapath/openocd.exe" + - "C:/ProgramData/Oracle/Java/javapath/openocd" + - "C:/Windows/System32/openocd.com" + - "C:/Windows/System32/openocd.exe" + - "C:/Windows/System32/openocd" + - "C:/Windows/openocd.com" + - "C:/Windows/openocd.exe" + - "C:/Windows/openocd" + - "C:/Windows/System32/wbem/openocd.com" + - "C:/Windows/System32/wbem/openocd.exe" + - "C:/Windows/System32/wbem/openocd" + - "C:/Windows/System32/WindowsPowerShell/v1.0/openocd.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/openocd.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/openocd" + - "C:/Windows/System32/OpenSSH/openocd.com" + - "C:/Windows/System32/OpenSSH/openocd.exe" + - "C:/Windows/System32/OpenSSH/openocd" + - "C:/Program Files/dotnet/openocd.com" + - "C:/Program Files/dotnet/openocd.exe" + - "C:/Program Files/dotnet/openocd" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/openocd.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/openocd.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/openocd" + - "C:/Programme/SmarTeam/XCADConverters/openocd.com" + - "C:/Programme/SmarTeam/XCADConverters/openocd.exe" + - "C:/Programme/SmarTeam/XCADConverters/openocd" + - "C:/Programme/SmarTeam/Bin/openocd.com" + - "C:/Programme/SmarTeam/Bin/openocd.exe" + - "C:/Programme/SmarTeam/Bin/openocd" + - "C:/Program Files/TortoiseSVN/bin/openocd.com" + - "C:/Program Files/TortoiseSVN/bin/openocd.exe" + - "C:/Program Files/TortoiseSVN/bin/openocd" + - "C:/Program Files/usbipd-win/openocd.com" + - "C:/Program Files/usbipd-win/openocd.exe" + - "C:/Program Files/usbipd-win/openocd" + - "C:/Program Files (x86)/PuTTY/openocd.com" + - "C:/Program Files (x86)/PuTTY/openocd.exe" + - "C:/Program Files (x86)/PuTTY/openocd" + - "C:/Program Files/nodejs/openocd.com" + - "C:/Program Files/nodejs/openocd.exe" + - "C:/Program Files/nodejs/openocd" + - "C:/ProgramData/chocolatey/bin/openocd.com" + - "C:/ProgramData/chocolatey/bin/openocd.exe" + - "C:/ProgramData/chocolatey/bin/openocd" + - "C:/Program Files/Go/bin/openocd.com" + - "C:/Program Files/Go/bin/openocd.exe" + - "C:/Program Files/Go/bin/openocd" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/openocd.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/openocd.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/openocd" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/openocd.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/openocd.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/openocd" + - "C:/Program Files/Git/cmd/openocd.com" + - "C:/Program Files/Git/cmd/openocd.exe" + - "C:/Program Files/Git/cmd/openocd" + - "C:/Program Files/Git/mingw64/bin/openocd.com" + - "C:/Program Files/Git/mingw64/bin/openocd.exe" + - "C:/Program Files/Git/mingw64/bin/openocd" + - "C:/Program Files/Git/usr/bin/openocd.com" + - "C:/Program Files/Git/usr/bin/openocd.exe" + - "C:/Program Files/Git/usr/bin/openocd" + - "C:/Program Files/CMake/bin/openocd.com" + - "C:/Program Files/CMake/bin/openocd.exe" + - "C:/Program Files/CMake/bin/openocd" + - "C:/Program Files/Calibre2/openocd.com" + - "C:/Program Files/Calibre2/openocd.exe" + - "C:/Program Files/Calibre2/openocd" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/openocd.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/openocd.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/openocd" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/openocd.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/openocd" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/openocd.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/openocd" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/openocd.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/openocd" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/openocd.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/openocd" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/openocd.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/openocd" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/openocd.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/openocd" + - "C:/zap/zap-win-x64/openocd.com" + - "C:/zap/zap-win-x64/openocd.exe" + - "C:/zap/zap-win-x64/openocd" + - "C:/Users/iteedi/AppData/Roaming/npm/openocd.com" + - "C:/Users/iteedi/AppData/Roaming/npm/openocd.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/openocd" + - "C:/Users/iteedi/go/bin/openocd.com" + - "C:/Users/iteedi/go/bin/openocd.exe" + - "C:/Users/iteedi/go/bin/openocd" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/openocd.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/openocd" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/openocd.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/openocd" + - "C:/Program Files/7-Zip/openocd.com" + - "C:/Program Files/7-Zip/openocd.exe" + - "C:/Program Files/7-Zip/openocd" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/openocd.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/openocd.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/openocd" + - "C:/Program Files (x86)/Nmap/openocd.com" + - "C:/Program Files (x86)/Nmap/openocd.exe" + - "C:/Program Files (x86)/Nmap/openocd" + - "C:/Users/iteedi/.dotnet/tools/openocd.com" + - "C:/Users/iteedi/.dotnet/tools/openocd.exe" + - "C:/Users/iteedi/.dotnet/tools/openocd" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:60 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "BOSSAC" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "bossac" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/bossac.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/bossac.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/bossac" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/bossac.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/bossac.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/bossac" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bossac.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bossac.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bossac" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/bossac.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/bossac.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/bossac" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/bossac.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/bossac.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/bossac" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/bossac.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/bossac.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/bossac" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/bossac.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/bossac.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/bossac" + - "C:/ProgramData/Oracle/Java/javapath/bossac.com" + - "C:/ProgramData/Oracle/Java/javapath/bossac.exe" + - "C:/ProgramData/Oracle/Java/javapath/bossac" + - "C:/Windows/System32/bossac.com" + - "C:/Windows/System32/bossac.exe" + - "C:/Windows/System32/bossac" + - "C:/Windows/bossac.com" + - "C:/Windows/bossac.exe" + - "C:/Windows/bossac" + - "C:/Windows/System32/wbem/bossac.com" + - "C:/Windows/System32/wbem/bossac.exe" + - "C:/Windows/System32/wbem/bossac" + - "C:/Windows/System32/WindowsPowerShell/v1.0/bossac.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/bossac.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/bossac" + - "C:/Windows/System32/OpenSSH/bossac.com" + - "C:/Windows/System32/OpenSSH/bossac.exe" + - "C:/Windows/System32/OpenSSH/bossac" + - "C:/Program Files/dotnet/bossac.com" + - "C:/Program Files/dotnet/bossac.exe" + - "C:/Program Files/dotnet/bossac" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/bossac.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/bossac.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/bossac" + - "C:/Programme/SmarTeam/XCADConverters/bossac.com" + - "C:/Programme/SmarTeam/XCADConverters/bossac.exe" + - "C:/Programme/SmarTeam/XCADConverters/bossac" + - "C:/Programme/SmarTeam/Bin/bossac.com" + - "C:/Programme/SmarTeam/Bin/bossac.exe" + - "C:/Programme/SmarTeam/Bin/bossac" + - "C:/Program Files/TortoiseSVN/bin/bossac.com" + - "C:/Program Files/TortoiseSVN/bin/bossac.exe" + - "C:/Program Files/TortoiseSVN/bin/bossac" + - "C:/Program Files/usbipd-win/bossac.com" + - "C:/Program Files/usbipd-win/bossac.exe" + - "C:/Program Files/usbipd-win/bossac" + - "C:/Program Files (x86)/PuTTY/bossac.com" + - "C:/Program Files (x86)/PuTTY/bossac.exe" + - "C:/Program Files (x86)/PuTTY/bossac" + - "C:/Program Files/nodejs/bossac.com" + - "C:/Program Files/nodejs/bossac.exe" + - "C:/Program Files/nodejs/bossac" + - "C:/ProgramData/chocolatey/bin/bossac.com" + - "C:/ProgramData/chocolatey/bin/bossac.exe" + - "C:/ProgramData/chocolatey/bin/bossac" + - "C:/Program Files/Go/bin/bossac.com" + - "C:/Program Files/Go/bin/bossac.exe" + - "C:/Program Files/Go/bin/bossac" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/bossac.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/bossac.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/bossac" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/bossac.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/bossac.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/bossac" + - "C:/Program Files/Git/cmd/bossac.com" + - "C:/Program Files/Git/cmd/bossac.exe" + - "C:/Program Files/Git/cmd/bossac" + - "C:/Program Files/Git/mingw64/bin/bossac.com" + - "C:/Program Files/Git/mingw64/bin/bossac.exe" + - "C:/Program Files/Git/mingw64/bin/bossac" + - "C:/Program Files/Git/usr/bin/bossac.com" + - "C:/Program Files/Git/usr/bin/bossac.exe" + - "C:/Program Files/Git/usr/bin/bossac" + - "C:/Program Files/CMake/bin/bossac.com" + - "C:/Program Files/CMake/bin/bossac.exe" + - "C:/Program Files/CMake/bin/bossac" + - "C:/Program Files/Calibre2/bossac.com" + - "C:/Program Files/Calibre2/bossac.exe" + - "C:/Program Files/Calibre2/bossac" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/bossac.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/bossac.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/bossac" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/bossac.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/bossac" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/bossac.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/bossac" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/bossac.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/bossac" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/bossac.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/bossac" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/bossac.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/bossac" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/bossac.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/bossac" + - "C:/zap/zap-win-x64/bossac.com" + - "C:/zap/zap-win-x64/bossac.exe" + - "C:/zap/zap-win-x64/bossac" + - "C:/Users/iteedi/AppData/Roaming/npm/bossac.com" + - "C:/Users/iteedi/AppData/Roaming/npm/bossac.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/bossac" + - "C:/Users/iteedi/go/bin/bossac.com" + - "C:/Users/iteedi/go/bin/bossac.exe" + - "C:/Users/iteedi/go/bin/bossac" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/bossac.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/bossac" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/bossac.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/bossac" + - "C:/Program Files/7-Zip/bossac.com" + - "C:/Program Files/7-Zip/bossac.exe" + - "C:/Program Files/7-Zip/bossac" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/bossac.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/bossac.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/bossac" + - "C:/Program Files (x86)/Nmap/bossac.com" + - "C:/Program Files (x86)/Nmap/bossac.exe" + - "C:/Program Files (x86)/Nmap/bossac" + - "C:/Users/iteedi/.dotnet/tools/bossac.com" + - "C:/Users/iteedi/.dotnet/tools/bossac.exe" + - "C:/Users/iteedi/.dotnet/tools/bossac" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:65 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "IMGTOOL" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgtool.py" + - "imgtool" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/bootloader/mcuboot/scripts/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/imgtool.py.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/imgtool.py.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/imgtool.py" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/imgtool.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/imgtool.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/imgtool" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/imgtool.py.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/imgtool.py.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/imgtool.py" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/imgtool.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/imgtool.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/imgtool" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/imgtool.py.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/imgtool.py.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/imgtool.py" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/imgtool.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/imgtool.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/imgtool" + - "C:/Users/iteedi/zephyrproject/bootloader/mcuboot/scripts/imgtool.py.com" + - "C:/Users/iteedi/zephyrproject/bootloader/mcuboot/scripts/imgtool.py.exe" + found: "C:/Users/iteedi/zephyrproject/bootloader/mcuboot/scripts/imgtool.py" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:68 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "PTY_INTERFACE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "winpty" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/winpty.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/winpty.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/winpty" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/winpty.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/winpty.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/winpty" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/winpty.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/winpty.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/winpty" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/winpty.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/winpty.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/winpty" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/winpty.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/winpty.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/winpty" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/winpty.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/winpty.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/winpty" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/winpty.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/winpty.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/winpty" + - "C:/ProgramData/Oracle/Java/javapath/winpty.com" + - "C:/ProgramData/Oracle/Java/javapath/winpty.exe" + - "C:/ProgramData/Oracle/Java/javapath/winpty" + - "C:/Windows/System32/winpty.com" + - "C:/Windows/System32/winpty.exe" + - "C:/Windows/System32/winpty" + - "C:/Windows/winpty.com" + - "C:/Windows/winpty.exe" + - "C:/Windows/winpty" + - "C:/Windows/System32/wbem/winpty.com" + - "C:/Windows/System32/wbem/winpty.exe" + - "C:/Windows/System32/wbem/winpty" + - "C:/Windows/System32/WindowsPowerShell/v1.0/winpty.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/winpty.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/winpty" + - "C:/Windows/System32/OpenSSH/winpty.com" + - "C:/Windows/System32/OpenSSH/winpty.exe" + - "C:/Windows/System32/OpenSSH/winpty" + - "C:/Program Files/dotnet/winpty.com" + - "C:/Program Files/dotnet/winpty.exe" + - "C:/Program Files/dotnet/winpty" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/winpty.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/winpty.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/winpty" + - "C:/Programme/SmarTeam/XCADConverters/winpty.com" + - "C:/Programme/SmarTeam/XCADConverters/winpty.exe" + - "C:/Programme/SmarTeam/XCADConverters/winpty" + - "C:/Programme/SmarTeam/Bin/winpty.com" + - "C:/Programme/SmarTeam/Bin/winpty.exe" + - "C:/Programme/SmarTeam/Bin/winpty" + - "C:/Program Files/TortoiseSVN/bin/winpty.com" + - "C:/Program Files/TortoiseSVN/bin/winpty.exe" + - "C:/Program Files/TortoiseSVN/bin/winpty" + - "C:/Program Files/usbipd-win/winpty.com" + - "C:/Program Files/usbipd-win/winpty.exe" + - "C:/Program Files/usbipd-win/winpty" + - "C:/Program Files (x86)/PuTTY/winpty.com" + - "C:/Program Files (x86)/PuTTY/winpty.exe" + - "C:/Program Files (x86)/PuTTY/winpty" + - "C:/Program Files/nodejs/winpty.com" + - "C:/Program Files/nodejs/winpty.exe" + - "C:/Program Files/nodejs/winpty" + - "C:/ProgramData/chocolatey/bin/winpty.com" + - "C:/ProgramData/chocolatey/bin/winpty.exe" + - "C:/ProgramData/chocolatey/bin/winpty" + - "C:/Program Files/Go/bin/winpty.com" + - "C:/Program Files/Go/bin/winpty.exe" + - "C:/Program Files/Go/bin/winpty" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/winpty.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/winpty.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/winpty" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/winpty.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/winpty.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/winpty" + - "C:/Program Files/Git/cmd/winpty.com" + - "C:/Program Files/Git/cmd/winpty.exe" + - "C:/Program Files/Git/cmd/winpty" + - "C:/Program Files/Git/mingw64/bin/winpty.com" + - "C:/Program Files/Git/mingw64/bin/winpty.exe" + - "C:/Program Files/Git/mingw64/bin/winpty" + - "C:/Program Files/Git/usr/bin/winpty.com" + found: "C:/Program Files/Git/usr/bin/winpty.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake:5 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:113 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcc" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcc.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcc.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake:6 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:113 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_GCOV" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindDtc.cmake:19 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake:10 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:131 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "DTC" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "dtc" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/dtc.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/dtc.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/dtc" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/dtc.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/dtc.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/dtc" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/dtc.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/dtc.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/dtc" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/dtc.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/dtc.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/dtc" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/dtc.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/dtc.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/dtc" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/dtc.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/dtc.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/dtc" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/dtc.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/dtc.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/dtc" + - "C:/ProgramData/Oracle/Java/javapath/dtc.com" + - "C:/ProgramData/Oracle/Java/javapath/dtc.exe" + - "C:/ProgramData/Oracle/Java/javapath/dtc" + - "C:/Windows/System32/dtc.com" + - "C:/Windows/System32/dtc.exe" + - "C:/Windows/System32/dtc" + - "C:/Windows/dtc.com" + - "C:/Windows/dtc.exe" + - "C:/Windows/dtc" + - "C:/Windows/System32/wbem/dtc.com" + - "C:/Windows/System32/wbem/dtc.exe" + - "C:/Windows/System32/wbem/dtc" + - "C:/Windows/System32/WindowsPowerShell/v1.0/dtc.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/dtc.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/dtc" + - "C:/Windows/System32/OpenSSH/dtc.com" + - "C:/Windows/System32/OpenSSH/dtc.exe" + - "C:/Windows/System32/OpenSSH/dtc" + - "C:/Program Files/dotnet/dtc.com" + - "C:/Program Files/dotnet/dtc.exe" + - "C:/Program Files/dotnet/dtc" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/dtc.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/dtc.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/dtc" + - "C:/Programme/SmarTeam/XCADConverters/dtc.com" + - "C:/Programme/SmarTeam/XCADConverters/dtc.exe" + - "C:/Programme/SmarTeam/XCADConverters/dtc" + - "C:/Programme/SmarTeam/Bin/dtc.com" + - "C:/Programme/SmarTeam/Bin/dtc.exe" + - "C:/Programme/SmarTeam/Bin/dtc" + - "C:/Program Files/TortoiseSVN/bin/dtc.com" + - "C:/Program Files/TortoiseSVN/bin/dtc.exe" + - "C:/Program Files/TortoiseSVN/bin/dtc" + - "C:/Program Files/usbipd-win/dtc.com" + - "C:/Program Files/usbipd-win/dtc.exe" + - "C:/Program Files/usbipd-win/dtc" + - "C:/Program Files (x86)/PuTTY/dtc.com" + - "C:/Program Files (x86)/PuTTY/dtc.exe" + - "C:/Program Files (x86)/PuTTY/dtc" + - "C:/Program Files/nodejs/dtc.com" + - "C:/Program Files/nodejs/dtc.exe" + - "C:/Program Files/nodejs/dtc" + - "C:/ProgramData/chocolatey/bin/dtc.com" + - "C:/ProgramData/chocolatey/bin/dtc.exe" + - "C:/ProgramData/chocolatey/bin/dtc" + - "C:/Program Files/Go/bin/dtc.com" + - "C:/Program Files/Go/bin/dtc.exe" + - "C:/Program Files/Go/bin/dtc" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/dtc.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/dtc.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/dtc" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/dtc.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/dtc.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/dtc" + - "C:/Program Files/Git/cmd/dtc.com" + - "C:/Program Files/Git/cmd/dtc.exe" + - "C:/Program Files/Git/cmd/dtc" + - "C:/Program Files/Git/mingw64/bin/dtc.com" + - "C:/Program Files/Git/mingw64/bin/dtc.exe" + - "C:/Program Files/Git/mingw64/bin/dtc" + - "C:/Program Files/Git/usr/bin/dtc.com" + - "C:/Program Files/Git/usr/bin/dtc.exe" + - "C:/Program Files/Git/usr/bin/dtc" + - "C:/Program Files/CMake/bin/dtc.com" + - "C:/Program Files/CMake/bin/dtc.exe" + - "C:/Program Files/CMake/bin/dtc" + - "C:/Program Files/Calibre2/dtc.com" + - "C:/Program Files/Calibre2/dtc.exe" + - "C:/Program Files/Calibre2/dtc" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/dtc.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/dtc.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/dtc" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/dtc.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/dtc" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/dtc.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/dtc" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/dtc.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/dtc" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/dtc.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/dtc" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/dtc.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/dtc" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/dtc.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/dtc" + - "C:/zap/zap-win-x64/dtc.com" + - "C:/zap/zap-win-x64/dtc.exe" + - "C:/zap/zap-win-x64/dtc" + - "C:/Users/iteedi/AppData/Roaming/npm/dtc.com" + - "C:/Users/iteedi/AppData/Roaming/npm/dtc.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/dtc" + - "C:/Users/iteedi/go/bin/dtc.com" + - "C:/Users/iteedi/go/bin/dtc.exe" + - "C:/Users/iteedi/go/bin/dtc" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/dtc.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/dtc.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/dtc" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dtc.com" + found: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dtc.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake:8 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:103 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake:26 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:103 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_CXX_COMPILER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:5 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:6 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:7 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_AS" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-as" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-as.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-as.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:12 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:13 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:15 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:16 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:17 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:19 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_GDB" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb-py" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb-py.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb-py.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:31 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_GDB_NO_PY" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake:207 (message)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + message: | + The target system is: Generic - 4.3.0 - arm + The host system is: Windows - 10.0.22631 - AMD64 + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeNinjaFindMake.cmake:5 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Program used to build from build.ninja files." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ninja-build" + - "ninja" + - "samu" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ninja-build.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ninja-build.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ninja-build" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ninja.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ninja.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ninja" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/samu.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/samu.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/samu" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ninja-build.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ninja-build.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ninja-build" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ninja.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ninja.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ninja" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/samu.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/samu.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/samu" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ninja-build.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ninja-build.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ninja-build" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ninja.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ninja.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ninja" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/samu.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/samu.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/samu" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ninja-build.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ninja-build.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ninja-build" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ninja.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ninja.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ninja" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/samu.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/samu.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/samu" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ninja-build.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ninja-build.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ninja-build" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ninja.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ninja.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ninja" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/samu.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/samu.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/samu" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ninja-build.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ninja-build.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ninja-build" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ninja.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ninja.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ninja" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/samu.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/samu.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/samu" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ninja-build.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ninja-build.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ninja-build" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ninja.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ninja.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ninja" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/samu.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/samu.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/samu" + - "C:/ProgramData/Oracle/Java/javapath/ninja-build.com" + - "C:/ProgramData/Oracle/Java/javapath/ninja-build.exe" + - "C:/ProgramData/Oracle/Java/javapath/ninja-build" + - "C:/ProgramData/Oracle/Java/javapath/ninja.com" + - "C:/ProgramData/Oracle/Java/javapath/ninja.exe" + - "C:/ProgramData/Oracle/Java/javapath/ninja" + - "C:/ProgramData/Oracle/Java/javapath/samu.com" + - "C:/ProgramData/Oracle/Java/javapath/samu.exe" + - "C:/ProgramData/Oracle/Java/javapath/samu" + - "C:/Windows/System32/ninja-build.com" + - "C:/Windows/System32/ninja-build.exe" + - "C:/Windows/System32/ninja-build" + - "C:/Windows/System32/ninja.com" + - "C:/Windows/System32/ninja.exe" + - "C:/Windows/System32/ninja" + - "C:/Windows/System32/samu.com" + - "C:/Windows/System32/samu.exe" + - "C:/Windows/System32/samu" + - "C:/Windows/ninja-build.com" + - "C:/Windows/ninja-build.exe" + - "C:/Windows/ninja-build" + - "C:/Windows/ninja.com" + - "C:/Windows/ninja.exe" + - "C:/Windows/ninja" + - "C:/Windows/samu.com" + - "C:/Windows/samu.exe" + - "C:/Windows/samu" + - "C:/Windows/System32/wbem/ninja-build.com" + - "C:/Windows/System32/wbem/ninja-build.exe" + - "C:/Windows/System32/wbem/ninja-build" + - "C:/Windows/System32/wbem/ninja.com" + - "C:/Windows/System32/wbem/ninja.exe" + - "C:/Windows/System32/wbem/ninja" + - "C:/Windows/System32/wbem/samu.com" + - "C:/Windows/System32/wbem/samu.exe" + - "C:/Windows/System32/wbem/samu" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ninja-build.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ninja-build.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ninja-build" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ninja.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ninja.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ninja" + - "C:/Windows/System32/WindowsPowerShell/v1.0/samu.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/samu.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/samu" + - "C:/Windows/System32/OpenSSH/ninja-build.com" + - "C:/Windows/System32/OpenSSH/ninja-build.exe" + - "C:/Windows/System32/OpenSSH/ninja-build" + - "C:/Windows/System32/OpenSSH/ninja.com" + - "C:/Windows/System32/OpenSSH/ninja.exe" + - "C:/Windows/System32/OpenSSH/ninja" + - "C:/Windows/System32/OpenSSH/samu.com" + - "C:/Windows/System32/OpenSSH/samu.exe" + - "C:/Windows/System32/OpenSSH/samu" + - "C:/Program Files/dotnet/ninja-build.com" + - "C:/Program Files/dotnet/ninja-build.exe" + - "C:/Program Files/dotnet/ninja-build" + - "C:/Program Files/dotnet/ninja.com" + - "C:/Program Files/dotnet/ninja.exe" + - "C:/Program Files/dotnet/ninja" + - "C:/Program Files/dotnet/samu.com" + - "C:/Program Files/dotnet/samu.exe" + - "C:/Program Files/dotnet/samu" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ninja-build.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ninja-build.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ninja-build" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ninja.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ninja.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ninja" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/samu.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/samu.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/samu" + - "C:/Programme/SmarTeam/XCADConverters/ninja-build.com" + - "C:/Programme/SmarTeam/XCADConverters/ninja-build.exe" + - "C:/Programme/SmarTeam/XCADConverters/ninja-build" + - "C:/Programme/SmarTeam/XCADConverters/ninja.com" + - "C:/Programme/SmarTeam/XCADConverters/ninja.exe" + - "C:/Programme/SmarTeam/XCADConverters/ninja" + - "C:/Programme/SmarTeam/XCADConverters/samu.com" + - "C:/Programme/SmarTeam/XCADConverters/samu.exe" + - "C:/Programme/SmarTeam/XCADConverters/samu" + - "C:/Programme/SmarTeam/Bin/ninja-build.com" + - "C:/Programme/SmarTeam/Bin/ninja-build.exe" + - "C:/Programme/SmarTeam/Bin/ninja-build" + - "C:/Programme/SmarTeam/Bin/ninja.com" + - "C:/Programme/SmarTeam/Bin/ninja.exe" + - "C:/Programme/SmarTeam/Bin/ninja" + - "C:/Programme/SmarTeam/Bin/samu.com" + - "C:/Programme/SmarTeam/Bin/samu.exe" + - "C:/Programme/SmarTeam/Bin/samu" + - "C:/Program Files/TortoiseSVN/bin/ninja-build.com" + - "C:/Program Files/TortoiseSVN/bin/ninja-build.exe" + - "C:/Program Files/TortoiseSVN/bin/ninja-build" + - "C:/Program Files/TortoiseSVN/bin/ninja.com" + - "C:/Program Files/TortoiseSVN/bin/ninja.exe" + - "C:/Program Files/TortoiseSVN/bin/ninja" + - "C:/Program Files/TortoiseSVN/bin/samu.com" + - "C:/Program Files/TortoiseSVN/bin/samu.exe" + - "C:/Program Files/TortoiseSVN/bin/samu" + - "C:/Program Files/usbipd-win/ninja-build.com" + - "C:/Program Files/usbipd-win/ninja-build.exe" + - "C:/Program Files/usbipd-win/ninja-build" + - "C:/Program Files/usbipd-win/ninja.com" + - "C:/Program Files/usbipd-win/ninja.exe" + - "C:/Program Files/usbipd-win/ninja" + - "C:/Program Files/usbipd-win/samu.com" + - "C:/Program Files/usbipd-win/samu.exe" + - "C:/Program Files/usbipd-win/samu" + - "C:/Program Files (x86)/PuTTY/ninja-build.com" + - "C:/Program Files (x86)/PuTTY/ninja-build.exe" + - "C:/Program Files (x86)/PuTTY/ninja-build" + - "C:/Program Files (x86)/PuTTY/ninja.com" + - "C:/Program Files (x86)/PuTTY/ninja.exe" + - "C:/Program Files (x86)/PuTTY/ninja" + - "C:/Program Files (x86)/PuTTY/samu.com" + - "C:/Program Files (x86)/PuTTY/samu.exe" + - "C:/Program Files (x86)/PuTTY/samu" + - "C:/Program Files/nodejs/ninja-build.com" + - "C:/Program Files/nodejs/ninja-build.exe" + - "C:/Program Files/nodejs/ninja-build" + - "C:/Program Files/nodejs/ninja.com" + - "C:/Program Files/nodejs/ninja.exe" + - "C:/Program Files/nodejs/ninja" + - "C:/Program Files/nodejs/samu.com" + - "C:/Program Files/nodejs/samu.exe" + - "C:/Program Files/nodejs/samu" + - "C:/ProgramData/chocolatey/bin/ninja-build.com" + - "C:/ProgramData/chocolatey/bin/ninja-build.exe" + - "C:/ProgramData/chocolatey/bin/ninja-build" + - "C:/ProgramData/chocolatey/bin/ninja.com" + - "C:/ProgramData/chocolatey/bin/ninja.exe" + - "C:/ProgramData/chocolatey/bin/ninja" + - "C:/ProgramData/chocolatey/bin/samu.com" + - "C:/ProgramData/chocolatey/bin/samu.exe" + - "C:/ProgramData/chocolatey/bin/samu" + - "C:/Program Files/Go/bin/ninja-build.com" + - "C:/Program Files/Go/bin/ninja-build.exe" + - "C:/Program Files/Go/bin/ninja-build" + - "C:/Program Files/Go/bin/ninja.com" + - "C:/Program Files/Go/bin/ninja.exe" + - "C:/Program Files/Go/bin/ninja" + - "C:/Program Files/Go/bin/samu.com" + - "C:/Program Files/Go/bin/samu.exe" + - "C:/Program Files/Go/bin/samu" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ninja-build.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ninja-build.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ninja-build" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ninja.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ninja.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ninja" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/samu.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/samu.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/samu" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ninja-build.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ninja-build.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ninja-build" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ninja.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ninja.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ninja" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/samu.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/samu.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/samu" + - "C:/Program Files/Git/cmd/ninja-build.com" + - "C:/Program Files/Git/cmd/ninja-build.exe" + - "C:/Program Files/Git/cmd/ninja-build" + - "C:/Program Files/Git/cmd/ninja.com" + - "C:/Program Files/Git/cmd/ninja.exe" + - "C:/Program Files/Git/cmd/ninja" + - "C:/Program Files/Git/cmd/samu.com" + - "C:/Program Files/Git/cmd/samu.exe" + - "C:/Program Files/Git/cmd/samu" + - "C:/Program Files/Git/mingw64/bin/ninja-build.com" + - "C:/Program Files/Git/mingw64/bin/ninja-build.exe" + - "C:/Program Files/Git/mingw64/bin/ninja-build" + - "C:/Program Files/Git/mingw64/bin/ninja.com" + - "C:/Program Files/Git/mingw64/bin/ninja.exe" + - "C:/Program Files/Git/mingw64/bin/ninja" + - "C:/Program Files/Git/mingw64/bin/samu.com" + - "C:/Program Files/Git/mingw64/bin/samu.exe" + - "C:/Program Files/Git/mingw64/bin/samu" + - "C:/Program Files/Git/usr/bin/ninja-build.com" + - "C:/Program Files/Git/usr/bin/ninja-build.exe" + - "C:/Program Files/Git/usr/bin/ninja-build" + - "C:/Program Files/Git/usr/bin/ninja.com" + - "C:/Program Files/Git/usr/bin/ninja.exe" + - "C:/Program Files/Git/usr/bin/ninja" + - "C:/Program Files/Git/usr/bin/samu.com" + - "C:/Program Files/Git/usr/bin/samu.exe" + - "C:/Program Files/Git/usr/bin/samu" + - "C:/Program Files/CMake/bin/ninja-build.com" + - "C:/Program Files/CMake/bin/ninja-build.exe" + - "C:/Program Files/CMake/bin/ninja-build" + - "C:/Program Files/CMake/bin/ninja.com" + - "C:/Program Files/CMake/bin/ninja.exe" + - "C:/Program Files/CMake/bin/ninja" + - "C:/Program Files/CMake/bin/samu.com" + - "C:/Program Files/CMake/bin/samu.exe" + - "C:/Program Files/CMake/bin/samu" + - "C:/Program Files/Calibre2/ninja-build.com" + - "C:/Program Files/Calibre2/ninja-build.exe" + - "C:/Program Files/Calibre2/ninja-build" + - "C:/Program Files/Calibre2/ninja.com" + - "C:/Program Files/Calibre2/ninja.exe" + - "C:/Program Files/Calibre2/ninja" + - "C:/Program Files/Calibre2/samu.com" + - "C:/Program Files/Calibre2/samu.exe" + - "C:/Program Files/Calibre2/samu" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ninja-build.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ninja-build.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ninja-build" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ninja.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ninja.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ninja" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/samu.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/samu.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/samu" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ninja-build" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ninja.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ninja.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ninja" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/samu.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/samu.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/samu" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ninja-build" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ninja.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ninja.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ninja" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/samu.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/samu.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/samu" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ninja-build" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ninja.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ninja.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ninja" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/samu.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/samu.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/samu" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ninja-build" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ninja.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ninja.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ninja" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/samu.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/samu.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/samu" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ninja-build" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ninja.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ninja.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ninja" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/samu.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/samu.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/samu" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ninja-build" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ninja.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ninja.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ninja" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/samu.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/samu.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/samu" + - "C:/zap/zap-win-x64/ninja-build.com" + - "C:/zap/zap-win-x64/ninja-build.exe" + - "C:/zap/zap-win-x64/ninja-build" + - "C:/zap/zap-win-x64/ninja.com" + - "C:/zap/zap-win-x64/ninja.exe" + - "C:/zap/zap-win-x64/ninja" + - "C:/zap/zap-win-x64/samu.com" + - "C:/zap/zap-win-x64/samu.exe" + - "C:/zap/zap-win-x64/samu" + - "C:/Users/iteedi/AppData/Roaming/npm/ninja-build.com" + - "C:/Users/iteedi/AppData/Roaming/npm/ninja-build.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/ninja-build" + - "C:/Users/iteedi/AppData/Roaming/npm/ninja.com" + - "C:/Users/iteedi/AppData/Roaming/npm/ninja.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/ninja" + - "C:/Users/iteedi/AppData/Roaming/npm/samu.com" + - "C:/Users/iteedi/AppData/Roaming/npm/samu.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/samu" + - "C:/Users/iteedi/go/bin/ninja-build.com" + - "C:/Users/iteedi/go/bin/ninja-build.exe" + - "C:/Users/iteedi/go/bin/ninja-build" + - "C:/Users/iteedi/go/bin/ninja.com" + - "C:/Users/iteedi/go/bin/ninja.exe" + - "C:/Users/iteedi/go/bin/ninja" + - "C:/Users/iteedi/go/bin/samu.com" + - "C:/Users/iteedi/go/bin/samu.exe" + - "C:/Users/iteedi/go/bin/samu" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja-build.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja-build.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja-build" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja.com" + found: "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/" + found: "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCCompilerId.c.in" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. + Compiler: C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + Build flags: + Id flags: + + The output was: + 1 + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.exe: c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib\\libc.a(lib_a-exit.o): in function `exit': + exit.c:(.text.exit+0x34): undefined reference to `_exit' + collect2.exe: error: ld returned 1 exit status + + + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/" + found: "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCCompilerId.c.in" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" + + The C compiler identification is GNU, found in: + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.o + + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-dlltool" + - "dlltool" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-dlltool" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-dlltool" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-dlltool.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-dlltool.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-dlltool" + - "C:/Windows/System32/arm-zephyr-eabi-dlltool.com" + - "C:/Windows/System32/arm-zephyr-eabi-dlltool.exe" + - "C:/Windows/System32/arm-zephyr-eabi-dlltool" + - "C:/Windows/arm-zephyr-eabi-dlltool.com" + - "C:/Windows/arm-zephyr-eabi-dlltool.exe" + - "C:/Windows/arm-zephyr-eabi-dlltool" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-dlltool.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-dlltool.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-dlltool" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-dlltool.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-dlltool.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-dlltool" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-dlltool.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-dlltool.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-dlltool" + - "C:/Program Files/dotnet/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-dlltool" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-dlltool" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-dlltool.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-dlltool.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-dlltool" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-dlltool.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-dlltool" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-dlltool" + - "C:/Program Files/nodejs/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-dlltool" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-dlltool.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-dlltool" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-dlltool" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-dlltool.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-dlltool.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-dlltool" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-dlltool" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-dlltool.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-dlltool.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-dlltool.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-dlltool.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-dlltool" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/dlltool.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/dlltool.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/dlltool" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/dlltool.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/dlltool.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/dlltool" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/dlltool.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/dlltool.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/dlltool" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/dlltool.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/dlltool.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/dlltool" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/dlltool.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/dlltool.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/dlltool" + - "C:/ProgramData/Oracle/Java/javapath/dlltool.com" + - "C:/ProgramData/Oracle/Java/javapath/dlltool.exe" + - "C:/ProgramData/Oracle/Java/javapath/dlltool" + - "C:/Windows/System32/dlltool.com" + - "C:/Windows/System32/dlltool.exe" + - "C:/Windows/System32/dlltool" + - "C:/Windows/dlltool.com" + - "C:/Windows/dlltool.exe" + - "C:/Windows/dlltool" + - "C:/Windows/System32/wbem/dlltool.com" + - "C:/Windows/System32/wbem/dlltool.exe" + - "C:/Windows/System32/wbem/dlltool" + - "C:/Windows/System32/WindowsPowerShell/v1.0/dlltool.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/dlltool.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/dlltool" + - "C:/Windows/System32/OpenSSH/dlltool.com" + - "C:/Windows/System32/OpenSSH/dlltool.exe" + - "C:/Windows/System32/OpenSSH/dlltool" + - "C:/Program Files/dotnet/dlltool.com" + - "C:/Program Files/dotnet/dlltool.exe" + - "C:/Program Files/dotnet/dlltool" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/dlltool.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/dlltool.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/dlltool" + - "C:/Programme/SmarTeam/XCADConverters/dlltool.com" + - "C:/Programme/SmarTeam/XCADConverters/dlltool.exe" + - "C:/Programme/SmarTeam/XCADConverters/dlltool" + - "C:/Programme/SmarTeam/Bin/dlltool.com" + - "C:/Programme/SmarTeam/Bin/dlltool.exe" + - "C:/Programme/SmarTeam/Bin/dlltool" + - "C:/Program Files/TortoiseSVN/bin/dlltool.com" + - "C:/Program Files/TortoiseSVN/bin/dlltool.exe" + - "C:/Program Files/TortoiseSVN/bin/dlltool" + - "C:/Program Files/usbipd-win/dlltool.com" + - "C:/Program Files/usbipd-win/dlltool.exe" + - "C:/Program Files/usbipd-win/dlltool" + - "C:/Program Files (x86)/PuTTY/dlltool.com" + - "C:/Program Files (x86)/PuTTY/dlltool.exe" + - "C:/Program Files (x86)/PuTTY/dlltool" + - "C:/Program Files/nodejs/dlltool.com" + - "C:/Program Files/nodejs/dlltool.exe" + - "C:/Program Files/nodejs/dlltool" + - "C:/ProgramData/chocolatey/bin/dlltool.com" + - "C:/ProgramData/chocolatey/bin/dlltool.exe" + - "C:/ProgramData/chocolatey/bin/dlltool" + - "C:/Program Files/Go/bin/dlltool.com" + - "C:/Program Files/Go/bin/dlltool.exe" + - "C:/Program Files/Go/bin/dlltool" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/dlltool.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/dlltool.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/dlltool" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/dlltool.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/dlltool.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/dlltool" + - "C:/Program Files/Git/cmd/dlltool.com" + - "C:/Program Files/Git/cmd/dlltool.exe" + - "C:/Program Files/Git/cmd/dlltool" + - "C:/Program Files/Git/mingw64/bin/dlltool.com" + - "C:/Program Files/Git/mingw64/bin/dlltool.exe" + - "C:/Program Files/Git/mingw64/bin/dlltool" + - "C:/Program Files/Git/usr/bin/dlltool.com" + - "C:/Program Files/Git/usr/bin/dlltool.exe" + - "C:/Program Files/Git/usr/bin/dlltool" + - "C:/Program Files/CMake/bin/dlltool.com" + - "C:/Program Files/CMake/bin/dlltool.exe" + - "C:/Program Files/CMake/bin/dlltool" + - "C:/Program Files/Calibre2/dlltool.com" + - "C:/Program Files/Calibre2/dlltool.exe" + - "C:/Program Files/Calibre2/dlltool" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/dlltool.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/dlltool.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/dlltool" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/dlltool" + - "C:/zap/zap-win-x64/dlltool.com" + - "C:/zap/zap-win-x64/dlltool.exe" + - "C:/zap/zap-win-x64/dlltool" + - "C:/Users/iteedi/AppData/Roaming/npm/dlltool.com" + - "C:/Users/iteedi/AppData/Roaming/npm/dlltool.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/dlltool" + - "C:/Users/iteedi/go/bin/dlltool.com" + - "C:/Users/iteedi/go/bin/dlltool.exe" + - "C:/Users/iteedi/go/bin/dlltool" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/dlltool" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/dlltool" + - "C:/Program Files/7-Zip/dlltool.com" + - "C:/Program Files/7-Zip/dlltool.exe" + - "C:/Program Files/7-Zip/dlltool" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/dlltool.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/dlltool.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/dlltool" + - "C:/Program Files (x86)/Nmap/dlltool.com" + - "C:/Program Files (x86)/Nmap/dlltool.exe" + - "C:/Program Files (x86)/Nmap/dlltool" + - "C:/Users/iteedi/.dotnet/tools/dlltool.com" + - "C:/Users/iteedi/.dotnet/tools/dlltool.exe" + - "C:/Users/iteedi/.dotnet/tools/dlltool" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-addr2line" + - "addr2line" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-tapi" + - "tapi" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-tapi" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-tapi.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-tapi" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-tapi.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-tapi.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-tapi" + - "C:/Windows/System32/arm-zephyr-eabi-tapi.com" + - "C:/Windows/System32/arm-zephyr-eabi-tapi.exe" + - "C:/Windows/System32/arm-zephyr-eabi-tapi" + - "C:/Windows/arm-zephyr-eabi-tapi.com" + - "C:/Windows/arm-zephyr-eabi-tapi.exe" + - "C:/Windows/arm-zephyr-eabi-tapi" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-tapi.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-tapi.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-tapi" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-tapi.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-tapi.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-tapi" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-tapi.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-tapi.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-tapi" + - "C:/Program Files/dotnet/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-tapi" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-tapi.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-tapi" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-tapi.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-tapi.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-tapi" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-tapi.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-tapi.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-tapi" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-tapi.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-tapi" + - "C:/Program Files/nodejs/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-tapi" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-tapi.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-tapi.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-tapi" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-tapi" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-tapi" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-tapi.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-tapi" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-tapi.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-tapi.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-tapi" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-tapi.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-tapi" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-tapi.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-tapi.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-tapi.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-tapi.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-tapi" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/tapi.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/tapi.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/tapi" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/tapi.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/tapi.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/tapi" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/tapi.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/tapi.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/tapi" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/tapi.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/tapi.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/tapi" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/tapi.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/tapi.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/tapi" + - "C:/ProgramData/Oracle/Java/javapath/tapi.com" + - "C:/ProgramData/Oracle/Java/javapath/tapi.exe" + - "C:/ProgramData/Oracle/Java/javapath/tapi" + - "C:/Windows/System32/tapi.com" + - "C:/Windows/System32/tapi.exe" + - "C:/Windows/System32/tapi" + - "C:/Windows/tapi.com" + - "C:/Windows/tapi.exe" + - "C:/Windows/tapi" + - "C:/Windows/System32/wbem/tapi.com" + - "C:/Windows/System32/wbem/tapi.exe" + - "C:/Windows/System32/wbem/tapi" + - "C:/Windows/System32/WindowsPowerShell/v1.0/tapi.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/tapi.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/tapi" + - "C:/Windows/System32/OpenSSH/tapi.com" + - "C:/Windows/System32/OpenSSH/tapi.exe" + - "C:/Windows/System32/OpenSSH/tapi" + - "C:/Program Files/dotnet/tapi.com" + - "C:/Program Files/dotnet/tapi.exe" + - "C:/Program Files/dotnet/tapi" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/tapi.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/tapi.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/tapi" + - "C:/Programme/SmarTeam/XCADConverters/tapi.com" + - "C:/Programme/SmarTeam/XCADConverters/tapi.exe" + - "C:/Programme/SmarTeam/XCADConverters/tapi" + - "C:/Programme/SmarTeam/Bin/tapi.com" + - "C:/Programme/SmarTeam/Bin/tapi.exe" + - "C:/Programme/SmarTeam/Bin/tapi" + - "C:/Program Files/TortoiseSVN/bin/tapi.com" + - "C:/Program Files/TortoiseSVN/bin/tapi.exe" + - "C:/Program Files/TortoiseSVN/bin/tapi" + - "C:/Program Files/usbipd-win/tapi.com" + - "C:/Program Files/usbipd-win/tapi.exe" + - "C:/Program Files/usbipd-win/tapi" + - "C:/Program Files (x86)/PuTTY/tapi.com" + - "C:/Program Files (x86)/PuTTY/tapi.exe" + - "C:/Program Files (x86)/PuTTY/tapi" + - "C:/Program Files/nodejs/tapi.com" + - "C:/Program Files/nodejs/tapi.exe" + - "C:/Program Files/nodejs/tapi" + - "C:/ProgramData/chocolatey/bin/tapi.com" + - "C:/ProgramData/chocolatey/bin/tapi.exe" + - "C:/ProgramData/chocolatey/bin/tapi" + - "C:/Program Files/Go/bin/tapi.com" + - "C:/Program Files/Go/bin/tapi.exe" + - "C:/Program Files/Go/bin/tapi" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/tapi.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/tapi.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/tapi" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/tapi.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/tapi.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/tapi" + - "C:/Program Files/Git/cmd/tapi.com" + - "C:/Program Files/Git/cmd/tapi.exe" + - "C:/Program Files/Git/cmd/tapi" + - "C:/Program Files/Git/mingw64/bin/tapi.com" + - "C:/Program Files/Git/mingw64/bin/tapi.exe" + - "C:/Program Files/Git/mingw64/bin/tapi" + - "C:/Program Files/Git/usr/bin/tapi.com" + - "C:/Program Files/Git/usr/bin/tapi.exe" + - "C:/Program Files/Git/usr/bin/tapi" + - "C:/Program Files/CMake/bin/tapi.com" + - "C:/Program Files/CMake/bin/tapi.exe" + - "C:/Program Files/CMake/bin/tapi" + - "C:/Program Files/Calibre2/tapi.com" + - "C:/Program Files/Calibre2/tapi.exe" + - "C:/Program Files/Calibre2/tapi" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/tapi.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/tapi.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/tapi" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/tapi.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/tapi" + - "C:/zap/zap-win-x64/tapi.com" + - "C:/zap/zap-win-x64/tapi.exe" + - "C:/zap/zap-win-x64/tapi" + - "C:/Users/iteedi/AppData/Roaming/npm/tapi.com" + - "C:/Users/iteedi/AppData/Roaming/npm/tapi.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/tapi" + - "C:/Users/iteedi/go/bin/tapi.com" + - "C:/Users/iteedi/go/bin/tapi.exe" + - "C:/Users/iteedi/go/bin/tapi" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/tapi.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/tapi" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/tapi.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/tapi" + - "C:/Program Files/7-Zip/tapi.com" + - "C:/Program Files/7-Zip/tapi.exe" + - "C:/Program Files/7-Zip/tapi" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/tapi.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/tapi.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/tapi" + - "C:/Program Files (x86)/Nmap/tapi.com" + - "C:/Program Files (x86)/Nmap/tapi.exe" + - "C:/Program Files (x86)/Nmap/tapi" + - "C:/Users/iteedi/.dotnet/tools/tapi.com" + - "C:/Users/iteedi/.dotnet/tools/tapi.exe" + - "C:/Users/iteedi/.dotnet/tools/tapi" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-gcc-ar-12.2" + - "arm-zephyr-eabi-gcc-ar-12" + - "arm-zephyr-eabi-gcc-ar12" + - "arm-zephyr-eabi-gcc-ar" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-gcc-ranlib-12.2" + - "arm-zephyr-eabi-gcc-ranlib-12" + - "arm-zephyr-eabi-gcc-ranlib12" + - "arm-zephyr-eabi-gcc-ranlib" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/" + found: "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. + Compiler: C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + Build flags: + Id flags: + + The output was: + 1 + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.exe: c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib\\libc.a(lib_a-exit.o): in function `exit': + exit.c:(.text.exit+0x34): undefined reference to `_exit' + collect2.exe: error: ld returned 1 exit status + + + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/" + found: "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + + The CXX compiler identification is GNU, found in: + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.o + + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-gcc-ar-12.2" + - "arm-zephyr-eabi-gcc-ar-12" + - "arm-zephyr-eabi-gcc-ar12" + - "arm-zephyr-eabi-gcc-ar" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.2.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.2.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.2" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-gcc-ranlib-12.2" + - "arm-zephyr-eabi-gcc-ranlib-12" + - "arm-zephyr-eabi-gcc-ranlib12" + - "arm-zephyr-eabi-gcc-ranlib" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.2.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.2.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.2" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib12" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib12.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib12.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib12" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineASMCompiler.cmake:61 (_cmake_find_compiler)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_ASM_COMPILER" + description: "ASM compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:1290 (message)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + arm-zephyr-eabi-gcc.exe (Zephyr SDK 0.17.4) 12.2.0 + Copyright (C) 2022 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineASMCompiler.cmake:268 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_ASM_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-gcc-ar-" + - "arm-zephyr-eabi-gcc-ar-" + - "arm-zephyr-eabi-gcc-ar" + - "arm-zephyr-eabi-gcc-ar" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + - "/bin/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-" + - "/bin/arm-zephyr-eabi-gcc-ar-.com" + - "/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ar-" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ar-" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ar-" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ar-" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ar-" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ar-" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ar-" + - "/bin/arm-zephyr-eabi-gcc-ar-.com" + - "/bin/arm-zephyr-eabi-gcc-ar-.exe" + - "/bin/arm-zephyr-eabi-gcc-ar-" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineASMCompiler.cmake:268 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:140 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:6 (find_package)" + mode: "program" + variable: "CMAKE_ASM_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "arm-zephyr-eabi-gcc-ranlib-" + - "arm-zephyr-eabi-gcc-ranlib-" + - "arm-zephyr-eabi-gcc-ranlib" + - "arm-zephyr-eabi-gcc-ranlib" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + - "/bin/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-" + - "/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/ProgramData/Oracle/Java/javapath/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/wbem/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Windows/System32/OpenSSH/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/dotnet/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Programme/SmarTeam/XCADConverters/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Programme/SmarTeam/Bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/TortoiseSVN/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/usbipd-win/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/PuTTY/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/nodejs/arm-zephyr-eabi-gcc-ranlib-" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/ProgramData/chocolatey/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Go/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Git/cmd/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Git/mingw64/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Git/usr/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/CMake/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/Calibre2/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/zap/zap-win-x64/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/go/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files/7-Zip/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Program Files (x86)/Nmap/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-.com" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-.exe" + - "C:/Users/iteedi/.dotnet/tools/arm-zephyr-eabi-gcc-ranlib-" + - "/bin/arm-zephyr-eabi-gcc-ranlib-.com" + - "/bin/arm-zephyr-eabi-gcc-ranlib-.exe" + - "/bin/arm-zephyr-eabi-gcc-ranlib-" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.com" + found: "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib.exe" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/modules/lib/picolibc/CMakeLists.txt:49 (find_program)" + mode: "program" + variable: "CCACHE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ccache" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + - "/bin/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ccache.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ccache.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/ccache" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ccache.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ccache.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/ccache" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ccache.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ccache.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/ccache" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ccache.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ccache.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/ccache" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ccache.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ccache.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/ccache" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ccache.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ccache.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/ccache" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ccache.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ccache.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/ccache" + - "C:/ProgramData/Oracle/Java/javapath/ccache.com" + - "C:/ProgramData/Oracle/Java/javapath/ccache.exe" + - "C:/ProgramData/Oracle/Java/javapath/ccache" + - "C:/Windows/System32/ccache.com" + - "C:/Windows/System32/ccache.exe" + - "C:/Windows/System32/ccache" + - "C:/Windows/ccache.com" + - "C:/Windows/ccache.exe" + - "C:/Windows/ccache" + - "C:/Windows/System32/wbem/ccache.com" + - "C:/Windows/System32/wbem/ccache.exe" + - "C:/Windows/System32/wbem/ccache" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ccache.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ccache.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/ccache" + - "C:/Windows/System32/OpenSSH/ccache.com" + - "C:/Windows/System32/OpenSSH/ccache.exe" + - "C:/Windows/System32/OpenSSH/ccache" + - "C:/Program Files/dotnet/ccache.com" + - "C:/Program Files/dotnet/ccache.exe" + - "C:/Program Files/dotnet/ccache" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ccache.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ccache.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/ccache" + - "C:/Programme/SmarTeam/XCADConverters/ccache.com" + - "C:/Programme/SmarTeam/XCADConverters/ccache.exe" + - "C:/Programme/SmarTeam/XCADConverters/ccache" + - "C:/Programme/SmarTeam/Bin/ccache.com" + - "C:/Programme/SmarTeam/Bin/ccache.exe" + - "C:/Programme/SmarTeam/Bin/ccache" + - "C:/Program Files/TortoiseSVN/bin/ccache.com" + - "C:/Program Files/TortoiseSVN/bin/ccache.exe" + - "C:/Program Files/TortoiseSVN/bin/ccache" + - "C:/Program Files/usbipd-win/ccache.com" + - "C:/Program Files/usbipd-win/ccache.exe" + - "C:/Program Files/usbipd-win/ccache" + - "C:/Program Files (x86)/PuTTY/ccache.com" + - "C:/Program Files (x86)/PuTTY/ccache.exe" + - "C:/Program Files (x86)/PuTTY/ccache" + - "C:/Program Files/nodejs/ccache.com" + - "C:/Program Files/nodejs/ccache.exe" + - "C:/Program Files/nodejs/ccache" + - "C:/ProgramData/chocolatey/bin/ccache.com" + - "C:/ProgramData/chocolatey/bin/ccache.exe" + - "C:/ProgramData/chocolatey/bin/ccache" + - "C:/Program Files/Go/bin/ccache.com" + - "C:/Program Files/Go/bin/ccache.exe" + - "C:/Program Files/Go/bin/ccache" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ccache.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ccache.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/ccache" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ccache.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ccache.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/ccache" + - "C:/Program Files/Git/cmd/ccache.com" + - "C:/Program Files/Git/cmd/ccache.exe" + - "C:/Program Files/Git/cmd/ccache" + - "C:/Program Files/Git/mingw64/bin/ccache.com" + - "C:/Program Files/Git/mingw64/bin/ccache.exe" + - "C:/Program Files/Git/mingw64/bin/ccache" + - "C:/Program Files/Git/usr/bin/ccache.com" + - "C:/Program Files/Git/usr/bin/ccache.exe" + - "C:/Program Files/Git/usr/bin/ccache" + - "C:/Program Files/CMake/bin/ccache.com" + - "C:/Program Files/CMake/bin/ccache.exe" + - "C:/Program Files/CMake/bin/ccache" + - "C:/Program Files/Calibre2/ccache.com" + - "C:/Program Files/Calibre2/ccache.exe" + - "C:/Program Files/Calibre2/ccache" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ccache.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ccache.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/ccache" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ccache.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/ccache" + - "C:/zap/zap-win-x64/ccache.com" + - "C:/zap/zap-win-x64/ccache.exe" + - "C:/zap/zap-win-x64/ccache" + - "C:/Users/iteedi/AppData/Roaming/npm/ccache.com" + - "C:/Users/iteedi/AppData/Roaming/npm/ccache.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/ccache" + - "C:/Users/iteedi/go/bin/ccache.com" + - "C:/Users/iteedi/go/bin/ccache.exe" + - "C:/Users/iteedi/go/bin/ccache" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ccache.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ccache" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/ccache.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/ccache" + - "C:/Program Files/7-Zip/ccache.com" + - "C:/Program Files/7-Zip/ccache.exe" + - "C:/Program Files/7-Zip/ccache" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/ccache.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/ccache.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/ccache" + - "C:/Program Files (x86)/Nmap/ccache.com" + - "C:/Program Files (x86)/Nmap/ccache.exe" + - "C:/Program Files (x86)/Nmap/ccache" + - "C:/Users/iteedi/.dotnet/tools/ccache.com" + - "C:/Users/iteedi/.dotnet/tools/ccache.exe" + - "C:/Users/iteedi/.dotnet/tools/ccache" + - "/bin/ccache.com" + - "/bin/ccache.exe" + - "/bin/ccache" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/kobj.cmake:3 (find_program)" + - "C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt:1003 (include)" + mode: "program" + variable: "GEN_KOBJECT_LIST" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gen_kobject_list" + - "gen_kobject_list.py" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + - "/bin/" + - "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gen_kobject_list.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gen_kobject_list.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gen_kobject_list" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gen_kobject_list.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gen_kobject_list.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gen_kobject_list" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gen_kobject_list.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gen_kobject_list.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gen_kobject_list" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gen_kobject_list.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gen_kobject_list.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gen_kobject_list" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gen_kobject_list" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gen_kobject_list" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gen_kobject_list.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gen_kobject_list.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gen_kobject_list" + - "C:/ProgramData/Oracle/Java/javapath/gen_kobject_list.com" + - "C:/ProgramData/Oracle/Java/javapath/gen_kobject_list.exe" + - "C:/ProgramData/Oracle/Java/javapath/gen_kobject_list" + - "C:/Windows/System32/gen_kobject_list.com" + - "C:/Windows/System32/gen_kobject_list.exe" + - "C:/Windows/System32/gen_kobject_list" + - "C:/Windows/gen_kobject_list.com" + - "C:/Windows/gen_kobject_list.exe" + - "C:/Windows/gen_kobject_list" + - "C:/Windows/System32/wbem/gen_kobject_list.com" + - "C:/Windows/System32/wbem/gen_kobject_list.exe" + - "C:/Windows/System32/wbem/gen_kobject_list" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gen_kobject_list.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gen_kobject_list.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gen_kobject_list" + - "C:/Windows/System32/OpenSSH/gen_kobject_list.com" + - "C:/Windows/System32/OpenSSH/gen_kobject_list.exe" + - "C:/Windows/System32/OpenSSH/gen_kobject_list" + - "C:/Program Files/dotnet/gen_kobject_list.com" + - "C:/Program Files/dotnet/gen_kobject_list.exe" + - "C:/Program Files/dotnet/gen_kobject_list" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gen_kobject_list.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gen_kobject_list.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gen_kobject_list" + - "C:/Programme/SmarTeam/XCADConverters/gen_kobject_list.com" + - "C:/Programme/SmarTeam/XCADConverters/gen_kobject_list.exe" + - "C:/Programme/SmarTeam/XCADConverters/gen_kobject_list" + - "C:/Programme/SmarTeam/Bin/gen_kobject_list.com" + - "C:/Programme/SmarTeam/Bin/gen_kobject_list.exe" + - "C:/Programme/SmarTeam/Bin/gen_kobject_list" + - "C:/Program Files/TortoiseSVN/bin/gen_kobject_list.com" + - "C:/Program Files/TortoiseSVN/bin/gen_kobject_list.exe" + - "C:/Program Files/TortoiseSVN/bin/gen_kobject_list" + - "C:/Program Files/usbipd-win/gen_kobject_list.com" + - "C:/Program Files/usbipd-win/gen_kobject_list.exe" + - "C:/Program Files/usbipd-win/gen_kobject_list" + - "C:/Program Files (x86)/PuTTY/gen_kobject_list.com" + - "C:/Program Files (x86)/PuTTY/gen_kobject_list.exe" + - "C:/Program Files (x86)/PuTTY/gen_kobject_list" + - "C:/Program Files/nodejs/gen_kobject_list.com" + - "C:/Program Files/nodejs/gen_kobject_list.exe" + - "C:/Program Files/nodejs/gen_kobject_list" + - "C:/ProgramData/chocolatey/bin/gen_kobject_list.com" + - "C:/ProgramData/chocolatey/bin/gen_kobject_list.exe" + - "C:/ProgramData/chocolatey/bin/gen_kobject_list" + - "C:/Program Files/Go/bin/gen_kobject_list.com" + - "C:/Program Files/Go/bin/gen_kobject_list.exe" + - "C:/Program Files/Go/bin/gen_kobject_list" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gen_kobject_list.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gen_kobject_list.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gen_kobject_list" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gen_kobject_list.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gen_kobject_list.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gen_kobject_list" + - "C:/Program Files/Git/cmd/gen_kobject_list.com" + - "C:/Program Files/Git/cmd/gen_kobject_list.exe" + - "C:/Program Files/Git/cmd/gen_kobject_list" + - "C:/Program Files/Git/mingw64/bin/gen_kobject_list.com" + - "C:/Program Files/Git/mingw64/bin/gen_kobject_list.exe" + - "C:/Program Files/Git/mingw64/bin/gen_kobject_list" + - "C:/Program Files/Git/usr/bin/gen_kobject_list.com" + - "C:/Program Files/Git/usr/bin/gen_kobject_list.exe" + - "C:/Program Files/Git/usr/bin/gen_kobject_list" + - "C:/Program Files/CMake/bin/gen_kobject_list.com" + - "C:/Program Files/CMake/bin/gen_kobject_list.exe" + - "C:/Program Files/CMake/bin/gen_kobject_list" + - "C:/Program Files/Calibre2/gen_kobject_list.com" + - "C:/Program Files/Calibre2/gen_kobject_list.exe" + - "C:/Program Files/Calibre2/gen_kobject_list" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gen_kobject_list.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gen_kobject_list.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gen_kobject_list" + - "C:/zap/zap-win-x64/gen_kobject_list.com" + - "C:/zap/zap-win-x64/gen_kobject_list.exe" + - "C:/zap/zap-win-x64/gen_kobject_list" + - "C:/Users/iteedi/AppData/Roaming/npm/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Roaming/npm/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/gen_kobject_list" + - "C:/Users/iteedi/go/bin/gen_kobject_list.com" + - "C:/Users/iteedi/go/bin/gen_kobject_list.exe" + - "C:/Users/iteedi/go/bin/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/gen_kobject_list" + - "C:/Program Files/7-Zip/gen_kobject_list.com" + - "C:/Program Files/7-Zip/gen_kobject_list.exe" + - "C:/Program Files/7-Zip/gen_kobject_list" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/gen_kobject_list.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/gen_kobject_list.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/gen_kobject_list" + - "C:/Program Files (x86)/Nmap/gen_kobject_list.com" + - "C:/Program Files (x86)/Nmap/gen_kobject_list.exe" + - "C:/Program Files (x86)/Nmap/gen_kobject_list" + - "C:/Users/iteedi/.dotnet/tools/gen_kobject_list.com" + - "C:/Users/iteedi/.dotnet/tools/gen_kobject_list.exe" + - "C:/Users/iteedi/.dotnet/tools/gen_kobject_list" + - "/bin/gen_kobject_list.com" + - "/bin/gen_kobject_list.exe" + - "/bin/gen_kobject_list" + - "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.com" + - "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.exe" + - "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gen_kobject_list.py.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gen_kobject_list.py.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/gen_kobject_list.py" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gen_kobject_list.py.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gen_kobject_list.py.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/gen_kobject_list.py" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gen_kobject_list.py.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gen_kobject_list.py.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/gen_kobject_list.py" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gen_kobject_list.py.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gen_kobject_list.py.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/gen_kobject_list.py" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gen_kobject_list.py.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gen_kobject_list.py.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/gen_kobject_list.py" + - "C:/ProgramData/Oracle/Java/javapath/gen_kobject_list.py.com" + - "C:/ProgramData/Oracle/Java/javapath/gen_kobject_list.py.exe" + - "C:/ProgramData/Oracle/Java/javapath/gen_kobject_list.py" + - "C:/Windows/System32/gen_kobject_list.py.com" + - "C:/Windows/System32/gen_kobject_list.py.exe" + - "C:/Windows/System32/gen_kobject_list.py" + - "C:/Windows/gen_kobject_list.py.com" + - "C:/Windows/gen_kobject_list.py.exe" + - "C:/Windows/gen_kobject_list.py" + - "C:/Windows/System32/wbem/gen_kobject_list.py.com" + - "C:/Windows/System32/wbem/gen_kobject_list.py.exe" + - "C:/Windows/System32/wbem/gen_kobject_list.py" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gen_kobject_list.py.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gen_kobject_list.py.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/gen_kobject_list.py" + - "C:/Windows/System32/OpenSSH/gen_kobject_list.py.com" + - "C:/Windows/System32/OpenSSH/gen_kobject_list.py.exe" + - "C:/Windows/System32/OpenSSH/gen_kobject_list.py" + - "C:/Program Files/dotnet/gen_kobject_list.py.com" + - "C:/Program Files/dotnet/gen_kobject_list.py.exe" + - "C:/Program Files/dotnet/gen_kobject_list.py" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gen_kobject_list.py.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gen_kobject_list.py.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/gen_kobject_list.py" + - "C:/Programme/SmarTeam/XCADConverters/gen_kobject_list.py.com" + - "C:/Programme/SmarTeam/XCADConverters/gen_kobject_list.py.exe" + - "C:/Programme/SmarTeam/XCADConverters/gen_kobject_list.py" + - "C:/Programme/SmarTeam/Bin/gen_kobject_list.py.com" + - "C:/Programme/SmarTeam/Bin/gen_kobject_list.py.exe" + - "C:/Programme/SmarTeam/Bin/gen_kobject_list.py" + - "C:/Program Files/TortoiseSVN/bin/gen_kobject_list.py.com" + - "C:/Program Files/TortoiseSVN/bin/gen_kobject_list.py.exe" + - "C:/Program Files/TortoiseSVN/bin/gen_kobject_list.py" + - "C:/Program Files/usbipd-win/gen_kobject_list.py.com" + - "C:/Program Files/usbipd-win/gen_kobject_list.py.exe" + - "C:/Program Files/usbipd-win/gen_kobject_list.py" + - "C:/Program Files (x86)/PuTTY/gen_kobject_list.py.com" + - "C:/Program Files (x86)/PuTTY/gen_kobject_list.py.exe" + - "C:/Program Files (x86)/PuTTY/gen_kobject_list.py" + - "C:/Program Files/nodejs/gen_kobject_list.py.com" + - "C:/Program Files/nodejs/gen_kobject_list.py.exe" + - "C:/Program Files/nodejs/gen_kobject_list.py" + - "C:/ProgramData/chocolatey/bin/gen_kobject_list.py.com" + - "C:/ProgramData/chocolatey/bin/gen_kobject_list.py.exe" + - "C:/ProgramData/chocolatey/bin/gen_kobject_list.py" + - "C:/Program Files/Go/bin/gen_kobject_list.py.com" + - "C:/Program Files/Go/bin/gen_kobject_list.py.exe" + - "C:/Program Files/Go/bin/gen_kobject_list.py" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gen_kobject_list.py.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gen_kobject_list.py.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/gen_kobject_list.py" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gen_kobject_list.py.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gen_kobject_list.py.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/gen_kobject_list.py" + - "C:/Program Files/Git/cmd/gen_kobject_list.py.com" + - "C:/Program Files/Git/cmd/gen_kobject_list.py.exe" + - "C:/Program Files/Git/cmd/gen_kobject_list.py" + - "C:/Program Files/Git/mingw64/bin/gen_kobject_list.py.com" + - "C:/Program Files/Git/mingw64/bin/gen_kobject_list.py.exe" + - "C:/Program Files/Git/mingw64/bin/gen_kobject_list.py" + - "C:/Program Files/Git/usr/bin/gen_kobject_list.py.com" + - "C:/Program Files/Git/usr/bin/gen_kobject_list.py.exe" + - "C:/Program Files/Git/usr/bin/gen_kobject_list.py" + - "C:/Program Files/CMake/bin/gen_kobject_list.py.com" + - "C:/Program Files/CMake/bin/gen_kobject_list.py.exe" + - "C:/Program Files/CMake/bin/gen_kobject_list.py" + - "C:/Program Files/Calibre2/gen_kobject_list.py.com" + - "C:/Program Files/Calibre2/gen_kobject_list.py.exe" + - "C:/Program Files/Calibre2/gen_kobject_list.py" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gen_kobject_list.py.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gen_kobject_list.py.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/gen_kobject_list.py" + - "C:/zap/zap-win-x64/gen_kobject_list.py.com" + - "C:/zap/zap-win-x64/gen_kobject_list.py.exe" + - "C:/zap/zap-win-x64/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Roaming/npm/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Roaming/npm/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/gen_kobject_list.py" + - "C:/Users/iteedi/go/bin/gen_kobject_list.py.com" + - "C:/Users/iteedi/go/bin/gen_kobject_list.py.exe" + - "C:/Users/iteedi/go/bin/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/gen_kobject_list.py" + - "C:/Program Files/7-Zip/gen_kobject_list.py.com" + - "C:/Program Files/7-Zip/gen_kobject_list.py.exe" + - "C:/Program Files/7-Zip/gen_kobject_list.py" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/gen_kobject_list.py.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/gen_kobject_list.py.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/gen_kobject_list.py" + - "C:/Program Files (x86)/Nmap/gen_kobject_list.py.com" + - "C:/Program Files (x86)/Nmap/gen_kobject_list.py.exe" + - "C:/Program Files (x86)/Nmap/gen_kobject_list.py" + - "C:/Users/iteedi/.dotnet/tools/gen_kobject_list.py.com" + - "C:/Users/iteedi/.dotnet/tools/gen_kobject_list.py.exe" + - "C:/Users/iteedi/.dotnet/tools/gen_kobject_list.py" + - "/bin/gen_kobject_list.py.com" + - "/bin/gen_kobject_list.py.exe" + - "/bin/gen_kobject_list.py" + - "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py.com" + - "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py.exe" + found: "C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/reports/CMakeLists.txt:115 (find_program)" + mode: "program" + variable: "PUNCOVER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "puncover" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + - "/bin/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/puncover.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/puncover.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/puncover" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/puncover.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/puncover.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/puncover" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/puncover.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/puncover.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/puncover" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/puncover.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/puncover.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/puncover" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/puncover.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/puncover.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/puncover" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/puncover.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/puncover.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/puncover" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/puncover.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/puncover.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/puncover" + - "C:/ProgramData/Oracle/Java/javapath/puncover.com" + - "C:/ProgramData/Oracle/Java/javapath/puncover.exe" + - "C:/ProgramData/Oracle/Java/javapath/puncover" + - "C:/Windows/System32/puncover.com" + - "C:/Windows/System32/puncover.exe" + - "C:/Windows/System32/puncover" + - "C:/Windows/puncover.com" + - "C:/Windows/puncover.exe" + - "C:/Windows/puncover" + - "C:/Windows/System32/wbem/puncover.com" + - "C:/Windows/System32/wbem/puncover.exe" + - "C:/Windows/System32/wbem/puncover" + - "C:/Windows/System32/WindowsPowerShell/v1.0/puncover.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/puncover.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/puncover" + - "C:/Windows/System32/OpenSSH/puncover.com" + - "C:/Windows/System32/OpenSSH/puncover.exe" + - "C:/Windows/System32/OpenSSH/puncover" + - "C:/Program Files/dotnet/puncover.com" + - "C:/Program Files/dotnet/puncover.exe" + - "C:/Program Files/dotnet/puncover" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/puncover.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/puncover.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/puncover" + - "C:/Programme/SmarTeam/XCADConverters/puncover.com" + - "C:/Programme/SmarTeam/XCADConverters/puncover.exe" + - "C:/Programme/SmarTeam/XCADConverters/puncover" + - "C:/Programme/SmarTeam/Bin/puncover.com" + - "C:/Programme/SmarTeam/Bin/puncover.exe" + - "C:/Programme/SmarTeam/Bin/puncover" + - "C:/Program Files/TortoiseSVN/bin/puncover.com" + - "C:/Program Files/TortoiseSVN/bin/puncover.exe" + - "C:/Program Files/TortoiseSVN/bin/puncover" + - "C:/Program Files/usbipd-win/puncover.com" + - "C:/Program Files/usbipd-win/puncover.exe" + - "C:/Program Files/usbipd-win/puncover" + - "C:/Program Files (x86)/PuTTY/puncover.com" + - "C:/Program Files (x86)/PuTTY/puncover.exe" + - "C:/Program Files (x86)/PuTTY/puncover" + - "C:/Program Files/nodejs/puncover.com" + - "C:/Program Files/nodejs/puncover.exe" + - "C:/Program Files/nodejs/puncover" + - "C:/ProgramData/chocolatey/bin/puncover.com" + - "C:/ProgramData/chocolatey/bin/puncover.exe" + - "C:/ProgramData/chocolatey/bin/puncover" + - "C:/Program Files/Go/bin/puncover.com" + - "C:/Program Files/Go/bin/puncover.exe" + - "C:/Program Files/Go/bin/puncover" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/puncover.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/puncover.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/puncover" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/puncover.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/puncover.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/puncover" + - "C:/Program Files/Git/cmd/puncover.com" + - "C:/Program Files/Git/cmd/puncover.exe" + - "C:/Program Files/Git/cmd/puncover" + - "C:/Program Files/Git/mingw64/bin/puncover.com" + - "C:/Program Files/Git/mingw64/bin/puncover.exe" + - "C:/Program Files/Git/mingw64/bin/puncover" + - "C:/Program Files/Git/usr/bin/puncover.com" + - "C:/Program Files/Git/usr/bin/puncover.exe" + - "C:/Program Files/Git/usr/bin/puncover" + - "C:/Program Files/CMake/bin/puncover.com" + - "C:/Program Files/CMake/bin/puncover.exe" + - "C:/Program Files/CMake/bin/puncover" + - "C:/Program Files/Calibre2/puncover.com" + - "C:/Program Files/Calibre2/puncover.exe" + - "C:/Program Files/Calibre2/puncover" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/puncover.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/puncover.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/puncover" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/puncover.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/puncover" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/puncover.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/puncover" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/puncover.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/puncover" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/puncover.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/puncover" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/puncover.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/puncover" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/puncover.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/puncover" + - "C:/zap/zap-win-x64/puncover.com" + - "C:/zap/zap-win-x64/puncover.exe" + - "C:/zap/zap-win-x64/puncover" + - "C:/Users/iteedi/AppData/Roaming/npm/puncover.com" + - "C:/Users/iteedi/AppData/Roaming/npm/puncover.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/puncover" + - "C:/Users/iteedi/go/bin/puncover.com" + - "C:/Users/iteedi/go/bin/puncover.exe" + - "C:/Users/iteedi/go/bin/puncover" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/puncover.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/puncover" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/puncover.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/puncover" + - "C:/Program Files/7-Zip/puncover.com" + - "C:/Program Files/7-Zip/puncover.exe" + - "C:/Program Files/7-Zip/puncover" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/puncover.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/puncover.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/puncover" + - "C:/Program Files (x86)/Nmap/puncover.com" + - "C:/Program Files (x86)/Nmap/puncover.exe" + - "C:/Program Files (x86)/Nmap/puncover" + - "C:/Users/iteedi/.dotnet/tools/puncover.com" + - "C:/Users/iteedi/.dotnet/tools/puncover.exe" + - "C:/Users/iteedi/.dotnet/tools/puncover" + - "/bin/puncover.com" + - "/bin/puncover.exe" + - "/bin/puncover" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "C:/Users/iteedi/zephyrproject/zephyr/cmake/reports/CMakeLists.txt:142 (find_program)" + mode: "program" + variable: "PAHOLE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "pahole" + candidate_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/" + - "C:/ProgramData/Oracle/Java/javapath/" + - "C:/Windows/System32/" + - "C:/Windows/" + - "C:/Windows/System32/wbem/" + - "C:/Windows/System32/WindowsPowerShell/v1.0/" + - "C:/Windows/System32/OpenSSH/" + - "C:/Program Files/dotnet/" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/" + - "C:/Programme/SmarTeam/XCADConverters/" + - "C:/Programme/SmarTeam/Bin/" + - "C:/Program Files/TortoiseSVN/bin/" + - "C:/Program Files/usbipd-win/" + - "C:/Program Files (x86)/PuTTY/" + - "C:/Program Files/nodejs/" + - "C:/ProgramData/chocolatey/bin/" + - "C:/Program Files/Go/bin/" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/" + - "C:/Program Files/Git/cmd/" + - "C:/Program Files/Git/mingw64/bin/" + - "C:/Program Files/Git/usr/bin/" + - "C:/Program Files/CMake/bin/" + - "C:/Program Files/Calibre2/" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/" + - "C:/zap/zap-win-x64/" + - "C:/Users/iteedi/AppData/Roaming/npm/" + - "C:/Users/iteedi/go/bin/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/" + - "C:/Program Files/7-Zip/" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/" + - "C:/Program Files (x86)/Nmap/" + - "C:/Users/iteedi/.dotnet/tools/" + - "/bin/" + searched_directories: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/pahole.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/pahole.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/bin/pahole" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/pahole.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/pahole.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/sbin/pahole" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/pahole.com" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/pahole.exe" + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr/pahole" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/pahole.com" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/pahole.exe" + - "C:/Users/iteedi/zephyrproject/.venv/Scripts/pahole" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/pahole.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/pahole.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/debugCommand/pahole" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/pahole.com" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/pahole.exe" + - "C:/Users/iteedi/AppData/Roaming/Code/User/globalStorage/github.copilot-chat/copilotCli/pahole" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/pahole.com" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/pahole.exe" + - "C:/Programme/Oracle/product/12.2.0/client_1/bin/pahole" + - "C:/ProgramData/Oracle/Java/javapath/pahole.com" + - "C:/ProgramData/Oracle/Java/javapath/pahole.exe" + - "C:/ProgramData/Oracle/Java/javapath/pahole" + - "C:/Windows/System32/pahole.com" + - "C:/Windows/System32/pahole.exe" + - "C:/Windows/System32/pahole" + - "C:/Windows/pahole.com" + - "C:/Windows/pahole.exe" + - "C:/Windows/pahole" + - "C:/Windows/System32/wbem/pahole.com" + - "C:/Windows/System32/wbem/pahole.exe" + - "C:/Windows/System32/wbem/pahole" + - "C:/Windows/System32/WindowsPowerShell/v1.0/pahole.com" + - "C:/Windows/System32/WindowsPowerShell/v1.0/pahole.exe" + - "C:/Windows/System32/WindowsPowerShell/v1.0/pahole" + - "C:/Windows/System32/OpenSSH/pahole.com" + - "C:/Windows/System32/OpenSSH/pahole.exe" + - "C:/Windows/System32/OpenSSH/pahole" + - "C:/Program Files/dotnet/pahole.com" + - "C:/Program Files/dotnet/pahole.exe" + - "C:/Program Files/dotnet/pahole" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/pahole.com" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/pahole.exe" + - "C:/Program Files (x86)/Enterprise Vault/EVClient/pahole" + - "C:/Programme/SmarTeam/XCADConverters/pahole.com" + - "C:/Programme/SmarTeam/XCADConverters/pahole.exe" + - "C:/Programme/SmarTeam/XCADConverters/pahole" + - "C:/Programme/SmarTeam/Bin/pahole.com" + - "C:/Programme/SmarTeam/Bin/pahole.exe" + - "C:/Programme/SmarTeam/Bin/pahole" + - "C:/Program Files/TortoiseSVN/bin/pahole.com" + - "C:/Program Files/TortoiseSVN/bin/pahole.exe" + - "C:/Program Files/TortoiseSVN/bin/pahole" + - "C:/Program Files/usbipd-win/pahole.com" + - "C:/Program Files/usbipd-win/pahole.exe" + - "C:/Program Files/usbipd-win/pahole" + - "C:/Program Files (x86)/PuTTY/pahole.com" + - "C:/Program Files (x86)/PuTTY/pahole.exe" + - "C:/Program Files (x86)/PuTTY/pahole" + - "C:/Program Files/nodejs/pahole.com" + - "C:/Program Files/nodejs/pahole.exe" + - "C:/Program Files/nodejs/pahole" + - "C:/ProgramData/chocolatey/bin/pahole.com" + - "C:/ProgramData/chocolatey/bin/pahole.exe" + - "C:/ProgramData/chocolatey/bin/pahole" + - "C:/Program Files/Go/bin/pahole.com" + - "C:/Program Files/Go/bin/pahole.exe" + - "C:/Program Files/Go/bin/pahole" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/pahole.com" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/pahole.exe" + - "C:/Program Files/Microsoft SQL Server/150/Tools/Binn/pahole" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/pahole.com" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/pahole.exe" + - "C:/Program Files/Nordic Semiconductor/nrf-command-line-tools/bin/pahole" + - "C:/Program Files/Git/cmd/pahole.com" + - "C:/Program Files/Git/cmd/pahole.exe" + - "C:/Program Files/Git/cmd/pahole" + - "C:/Program Files/Git/mingw64/bin/pahole.com" + - "C:/Program Files/Git/mingw64/bin/pahole.exe" + - "C:/Program Files/Git/mingw64/bin/pahole" + - "C:/Program Files/Git/usr/bin/pahole.com" + - "C:/Program Files/Git/usr/bin/pahole.exe" + - "C:/Program Files/Git/usr/bin/pahole" + - "C:/Program Files/CMake/bin/pahole.com" + - "C:/Program Files/CMake/bin/pahole.exe" + - "C:/Program Files/CMake/bin/pahole" + - "C:/Program Files/Calibre2/pahole.com" + - "C:/Program Files/Calibre2/pahole.exe" + - "C:/Program Files/Calibre2/pahole" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/pahole.com" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/pahole.exe" + - "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.3 rel1/bin/pahole" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/pahole.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/Scripts/pahole" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/pahole.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python313/pahole" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/pahole.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/Scripts/pahole" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/pahole.com" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Python/Python312/pahole" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/pahole.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WindowsApps/pahole" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/pahole.com" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Microsoft VS Code/bin/pahole" + - "C:/zap/zap-win-x64/pahole.com" + - "C:/zap/zap-win-x64/pahole.exe" + - "C:/zap/zap-win-x64/pahole" + - "C:/Users/iteedi/AppData/Roaming/npm/pahole.com" + - "C:/Users/iteedi/AppData/Roaming/npm/pahole.exe" + - "C:/Users/iteedi/AppData/Roaming/npm/pahole" + - "C:/Users/iteedi/go/bin/pahole.com" + - "C:/Users/iteedi/go/bin/pahole.exe" + - "C:/Users/iteedi/go/bin/pahole" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/pahole.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/pahole" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/pahole.com" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Packages/oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe/usr/bin/pahole" + - "C:/Program Files/7-Zip/pahole.com" + - "C:/Program Files/7-Zip/pahole.exe" + - "C:/Program Files/7-Zip/pahole" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/pahole.com" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/pahole.exe" + - "C:/Users/iteedi/AppData/Local/Programs/Ollama/pahole" + - "C:/Program Files (x86)/Nmap/pahole.com" + - "C:/Program Files (x86)/Nmap/pahole.exe" + - "C:/Program Files (x86)/Nmap/pahole" + - "C:/Users/iteedi/.dotnet/tools/pahole.com" + - "C:/Users/iteedi/.dotnet/tools/pahole.exe" + - "C:/Users/iteedi/.dotnet/tools/pahole" + - "/bin/pahole.com" + - "/bin/pahole.exe" + - "/bin/pahole" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find_package-v1" + backtrace: + - "CMakeLists.txt:6 (find_package)" + name: "Zephyr" + configs: + - + filename: "ZephyrConfig.cmake" + kind: "cmake" + - + filename: "zephyr-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + hints: + - "C:\\Users\\iteedi\\zephyrproject\\zephyr" + names: + - "Zephyr" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pkgRedirects/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/cmake/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/cmake/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/share/zephyrunittest-package/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "C:/Users/iteedi/zephyrproject/zephyr/share/zephyrunittest-package/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "C:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake" + mode: "config" + version: "4.3.0" + search_context: + CMAKE_PREFIX_PATH: + - "C:/Users/iteedi/zephyr-sdk-0.17.4/sysroots/AMD64-pokysdk-linux/usr" + ENV{PATH}: + - "C:\\Users\\iteedi\\zephyrproject\\.venv\\Scripts" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\debugCommand" + - "c:\\Users\\iteedi\\AppData\\Roaming\\Code\\User\\globalStorage\\github.copilot-chat\\copilotCli" + - "C:\\Programme\\Oracle\\product\\12.2.0\\client_1\\bin" + - "C:\\ProgramData\\Oracle\\Java\\javapath" + - "C:\\WINDOWS\\system32" + - "C:\\WINDOWS" + - "C:\\WINDOWS\\System32\\Wbem" + - "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\" + - "C:\\WINDOWS\\System32\\OpenSSH\\" + - "C:\\Program Files\\dotnet\\" + - "C:\\Program Files (x86)\\Enterprise Vault\\EVClient\\" + - "C:\\Programme\\SmarTeam\\XCADConverters\\" + - "C:\\Programme\\SmarTeam\\bin" + - "C:\\Program Files\\TortoiseSVN\\bin" + - "C:\\Program Files\\usbipd-win\\" + - "C:\\Program Files (x86)\\PuTTY\\" + - "C:\\Program Files\\nodejs\\" + - "C:\\ProgramData\\chocolatey\\bin" + - "C:\\Program Files\\Go\\bin" + - "C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\" + - "C:\\Program Files\\Nordic Semiconductor\\nrf-command-line-tools\\bin\\" + - "C:\\Program Files\\Git\\cmd" + - "C:\\Program Files\\Git\\mingw64\\bin" + - "C:\\Program Files\\Git\\usr\\bin" + - "C:\\Program Files\\CMake\\bin" + - "C:\\Program Files\\Calibre2\\" + - "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\14.3 rel1\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python313\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Python\\Python312\\" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WindowsApps" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Microsoft VS Code\\bin" + - "c:\\zap\\zap-win-x64" + - "C:\\Users\\iteedi\\AppData\\Roaming\\npm" + - "C:\\Users\\iteedi\\go\\bin" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Links" + - "C:\\Users\\iteedi\\AppData\\Local\\Microsoft\\WinGet\\Packages\\oss-winget.dtc_Microsoft.Winget.Source_8wekyb3d8bbwe\\usr\\bin" + - "C:\\Program Files\\7-Zip" + - "C:\\Users\\iteedi\\AppData\\Local\\Programs\\Ollama" + - "C:\\Program Files (x86)\\Nmap" + - "C:\\Users\\iteedi\\.dotnet\\tools" + CMAKE_INSTALL_PREFIX: "C:/Program Files (x86)/Zephyr-Kernel" +... diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/InstallScripts.json b/firmware/canfd_cdc_composite/build/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..533729b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/InstallScripts.json @@ -0,0 +1,167 @@ +{ + "InstallScripts" : + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/cmake_install.cmake", + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/TargetDirectories.txt b/firmware/canfd_cdc_composite/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..e2528fc --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,388 @@ +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/boards.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/shields.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/snippets.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/devicetree_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/menuconfig.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/guiconfig.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/hardenconfig.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/traceconfig.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/config-twister.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/asm.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/compiler.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/compiler-cpp.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/linker.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/bintools.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/code_data_relocation_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/runners_yaml_props_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/pristine.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/zephyr_property_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/version_h.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/syscall_list_h_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/driver_validation_h_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/kobj_types_h_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/device_api_ld_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets_h.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_pre0.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/linker_zephyr_final_script_target.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/initlevels.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/run.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/build_info_yaml_saved.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/isr_tables.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/CMakeFiles/drivers__can__transceiver.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/drivers__reset.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/flash.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/debug.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/debugserver.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/attach.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/rtt.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/CMakeFiles/usage.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/CMakeFiles/rebuild_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/ram_report.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/ram_plot.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/rom_report.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/rom_plot.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/footprint.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/edit_cache.dir +C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/CMakeFiles/rebuild_cache.dir diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/cdc_handler.c.obj b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/cdc_handler.c.obj new file mode 100644 index 0000000..6da915d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/cdc_handler.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/gs_usb_can.c.obj b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/gs_usb_can.c.obj new file mode 100644 index 0000000..f1d2ee7 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/gs_usb_can.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/main.c.obj b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/main.c.obj new file mode 100644 index 0000000..b7b66c9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/main.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/pfet_control.c.obj b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/pfet_control.c.obj new file mode 100644 index 0000000..4b73d68 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/pfet_control.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj new file mode 100644 index 0000000..96cbb43 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/clean_additional.cmake b/firmware/canfd_cdc_composite/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..c3715a4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/clean_additional.cmake @@ -0,0 +1,8 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "zephyr\\include\\generated\\zephyr\\syscalls" + ) +endif() diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/cmake.check_cache b/firmware/canfd_cdc_composite/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/guiconfig-0b59bc5.bat b/firmware/canfd_cdc_composite/build/CMakeFiles/guiconfig-0b59bc5.bat new file mode 100644 index 0000000..cd455aa --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/guiconfig-0b59bc5.bat @@ -0,0 +1,9 @@ +@echo off +cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\kconfig || (set FAIL_LINE=2& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr PYTHON_EXECUTABLE=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe srctree=C:/Users/iteedi/zephyrproject/zephyr ZEPHYR_ACPICA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/acpica ZEPHYR_CMSIS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis ZEPHYR_CMSIS_DSP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp ZEPHYR_CMSIS_NN_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn ZEPHYR_CMSIS_6_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6 ZEPHYR_FATFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/fatfs ZEPHYR_ADI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/adi ZEPHYR_HAL_AFBR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/afbr ZEPHYR_HAL_AMBIQ_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ambiq ZEPHYR_ATMEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/atmel ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/espressif ZEPHYR_HAL_ETHOS_U_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ethos_u ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/gigadevice ZEPHYR_HAL_INFINEON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/infineon ZEPHYR_HAL_INTEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/intel ZEPHYR_MICROCHIP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/microchip ZEPHYR_HAL_NORDIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nordic ZEPHYR_NUVOTON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nuvoton ZEPHYR_HAL_NXP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nxp ZEPHYR_OPENISA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/openisa ZEPHYR_QUICKLOGIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/quicklogic ZEPHYR_HAL_RENESAS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/renesas ZEPHYR_HAL_RPI_PICO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico ZEPHYR_HAL_SIFLI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/sifli ZEPHYR_HAL_SILABS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/silabs ZEPHYR_HAL_ST_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/st ZEPHYR_HAL_STM32_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/stm32 ZEPHYR_HAL_TDK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/tdk ZEPHYR_HAL_TELINK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/telink ZEPHYR_TI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ti ZEPHYR_HAL_WCH_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wch ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik ZEPHYR_XTENSA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/xtensa ZEPHYR_HOSTAP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/hostap ZEPHYR_LIBLC3_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/liblc3 ZEPHYR_LIBMCTP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libmctp ZEPHYR_LIBMETAL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/libmetal ZEPHYR_LIBSBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libsbc ZEPHYR_LITTLEFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/littlefs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem ZEPHYR_LORAMAC_NODE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/loramac-node ZEPHYR_LVGL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls ZEPHYR_MCUBOOT_MODULE_DIR=C:/Users/iteedi/zephyrproject/bootloader/mcuboot ZEPHYR_MIPI_SYS_T_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t ZEPHYR_NANOPB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nanopb ZEPHYR_NRF_WIFI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi ZEPHYR_OPEN_AMP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/open-amp ZEPHYR_OPENTHREAD_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/openthread ZEPHYR_PERCEPIO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/percepio ZEPHYR_PICOLIBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/segger ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc ZEPHYR_ZCBOR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/zcbor ZEPHYR_NRF_HW_MODELS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models KERNELVERSION=0x4030000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite CONFIG_=CONFIG_ KCONFIG_CONFIG=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/.config KCONFIG_BOARD_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/boards BOARD=ews BOARD_REVISION= BOARD_QUALIFIERS=/stm32g0b1xx HWM_SCHEME=v2 KCONFIG_BINARY_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig APPLICATION_SOURCE_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_FATFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=C:/Users/iteedi/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=C:/Users/iteedi/zephyrproject/zephyr/dts/bindings "C:/Program Files/Git/usr/bin/winpty.exe" C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/kconfig/guiconfig.py C:/Users/iteedi/zephyrproject/zephyr/Kconfig || (set FAIL_LINE=3& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/hardenconfig-9a95698.bat b/firmware/canfd_cdc_composite/build/CMakeFiles/hardenconfig-9a95698.bat new file mode 100644 index 0000000..a5f29a8 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/hardenconfig-9a95698.bat @@ -0,0 +1,9 @@ +@echo off +cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\kconfig || (set FAIL_LINE=2& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr PYTHON_EXECUTABLE=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe srctree=C:/Users/iteedi/zephyrproject/zephyr ZEPHYR_ACPICA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/acpica ZEPHYR_CMSIS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis ZEPHYR_CMSIS_DSP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp ZEPHYR_CMSIS_NN_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn ZEPHYR_CMSIS_6_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6 ZEPHYR_FATFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/fatfs ZEPHYR_ADI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/adi ZEPHYR_HAL_AFBR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/afbr ZEPHYR_HAL_AMBIQ_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ambiq ZEPHYR_ATMEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/atmel ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/espressif ZEPHYR_HAL_ETHOS_U_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ethos_u ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/gigadevice ZEPHYR_HAL_INFINEON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/infineon ZEPHYR_HAL_INTEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/intel ZEPHYR_MICROCHIP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/microchip ZEPHYR_HAL_NORDIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nordic ZEPHYR_NUVOTON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nuvoton ZEPHYR_HAL_NXP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nxp ZEPHYR_OPENISA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/openisa ZEPHYR_QUICKLOGIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/quicklogic ZEPHYR_HAL_RENESAS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/renesas ZEPHYR_HAL_RPI_PICO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico ZEPHYR_HAL_SIFLI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/sifli ZEPHYR_HAL_SILABS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/silabs ZEPHYR_HAL_ST_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/st ZEPHYR_HAL_STM32_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/stm32 ZEPHYR_HAL_TDK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/tdk ZEPHYR_HAL_TELINK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/telink ZEPHYR_TI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ti ZEPHYR_HAL_WCH_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wch ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik ZEPHYR_XTENSA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/xtensa ZEPHYR_HOSTAP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/hostap ZEPHYR_LIBLC3_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/liblc3 ZEPHYR_LIBMCTP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libmctp ZEPHYR_LIBMETAL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/libmetal ZEPHYR_LIBSBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libsbc ZEPHYR_LITTLEFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/littlefs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem ZEPHYR_LORAMAC_NODE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/loramac-node ZEPHYR_LVGL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls ZEPHYR_MCUBOOT_MODULE_DIR=C:/Users/iteedi/zephyrproject/bootloader/mcuboot ZEPHYR_MIPI_SYS_T_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t ZEPHYR_NANOPB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nanopb ZEPHYR_NRF_WIFI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi ZEPHYR_OPEN_AMP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/open-amp ZEPHYR_OPENTHREAD_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/openthread ZEPHYR_PERCEPIO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/percepio ZEPHYR_PICOLIBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/segger ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc ZEPHYR_ZCBOR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/zcbor ZEPHYR_NRF_HW_MODELS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models KERNELVERSION=0x4030000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite CONFIG_=CONFIG_ KCONFIG_CONFIG=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/.config KCONFIG_BOARD_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/boards BOARD=ews BOARD_REVISION= BOARD_QUALIFIERS=/stm32g0b1xx HWM_SCHEME=v2 KCONFIG_BINARY_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig APPLICATION_SOURCE_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_FATFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=C:/Users/iteedi/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=C:/Users/iteedi/zephyrproject/zephyr/dts/bindings "C:/Program Files/Git/usr/bin/winpty.exe" C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/kconfig/hardenconfig.py C:/Users/iteedi/zephyrproject/zephyr/Kconfig || (set FAIL_LINE=3& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/menuconfig-5f29641.bat b/firmware/canfd_cdc_composite/build/CMakeFiles/menuconfig-5f29641.bat new file mode 100644 index 0000000..bcb1f6b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/menuconfig-5f29641.bat @@ -0,0 +1,9 @@ +@echo off +cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\kconfig || (set FAIL_LINE=2& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr PYTHON_EXECUTABLE=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe srctree=C:/Users/iteedi/zephyrproject/zephyr ZEPHYR_ACPICA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/acpica ZEPHYR_CMSIS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis ZEPHYR_CMSIS_DSP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp ZEPHYR_CMSIS_NN_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn ZEPHYR_CMSIS_6_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6 ZEPHYR_FATFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/fatfs ZEPHYR_ADI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/adi ZEPHYR_HAL_AFBR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/afbr ZEPHYR_HAL_AMBIQ_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ambiq ZEPHYR_ATMEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/atmel ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/espressif ZEPHYR_HAL_ETHOS_U_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ethos_u ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/gigadevice ZEPHYR_HAL_INFINEON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/infineon ZEPHYR_HAL_INTEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/intel ZEPHYR_MICROCHIP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/microchip ZEPHYR_HAL_NORDIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nordic ZEPHYR_NUVOTON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nuvoton ZEPHYR_HAL_NXP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nxp ZEPHYR_OPENISA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/openisa ZEPHYR_QUICKLOGIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/quicklogic ZEPHYR_HAL_RENESAS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/renesas ZEPHYR_HAL_RPI_PICO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico ZEPHYR_HAL_SIFLI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/sifli ZEPHYR_HAL_SILABS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/silabs ZEPHYR_HAL_ST_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/st ZEPHYR_HAL_STM32_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/stm32 ZEPHYR_HAL_TDK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/tdk ZEPHYR_HAL_TELINK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/telink ZEPHYR_TI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ti ZEPHYR_HAL_WCH_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wch ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik ZEPHYR_XTENSA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/xtensa ZEPHYR_HOSTAP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/hostap ZEPHYR_LIBLC3_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/liblc3 ZEPHYR_LIBMCTP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libmctp ZEPHYR_LIBMETAL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/libmetal ZEPHYR_LIBSBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libsbc ZEPHYR_LITTLEFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/littlefs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem ZEPHYR_LORAMAC_NODE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/loramac-node ZEPHYR_LVGL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls ZEPHYR_MCUBOOT_MODULE_DIR=C:/Users/iteedi/zephyrproject/bootloader/mcuboot ZEPHYR_MIPI_SYS_T_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t ZEPHYR_NANOPB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nanopb ZEPHYR_NRF_WIFI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi ZEPHYR_OPEN_AMP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/open-amp ZEPHYR_OPENTHREAD_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/openthread ZEPHYR_PERCEPIO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/percepio ZEPHYR_PICOLIBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/segger ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc ZEPHYR_ZCBOR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/zcbor ZEPHYR_NRF_HW_MODELS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models KERNELVERSION=0x4030000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite CONFIG_=CONFIG_ KCONFIG_CONFIG=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/.config KCONFIG_BOARD_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/boards BOARD=ews BOARD_REVISION= BOARD_QUALIFIERS=/stm32g0b1xx HWM_SCHEME=v2 KCONFIG_BINARY_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig APPLICATION_SOURCE_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_FATFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=C:/Users/iteedi/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=C:/Users/iteedi/zephyrproject/zephyr/dts/bindings "C:/Program Files/Git/usr/bin/winpty.exe" C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/kconfig/menuconfig.py C:/Users/iteedi/zephyrproject/zephyr/Kconfig || (set FAIL_LINE=3& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/rules.ninja b/firmware/canfd_cdc_composite/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..77d3489 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/rules.ninja @@ -0,0 +1,558 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.1 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: ews_canfd_cdc_composite +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__app_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__app_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__zephyr_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__zephyr_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__offsets_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__zephyr_pre0_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__zephyr_pre0_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -Lc:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp -lc -lgcc && $POST_BUILD" + description = Linking C executable $TARGET_FILE; Logical command for additional byproducts on target: zephyr_pre0 + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__zephyr_final_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__zephyr_final_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -Lc:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp -lc -lgcc && $POST_BUILD" + description = Linking C executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__common_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__isr_tables_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__isr_tables_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER__arch__arm__core_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__arm__core_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__arm__core_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER__arch__arm__core__cortex_m_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__arch__arm__core__cortex_m_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__arch__arm__core__cortex_m_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__lib__libc__picolibc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__lib__libc__picolibc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__lib__libc__common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__lib__libc__common_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__lib__posix__c_lib_ext_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__lib__posix__c_lib_ext_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__interrupt_controller_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__interrupt_controller_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__usb__device_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__usb__device_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__can_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__can_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__can__transceiver_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__can__transceiver_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__clock_control_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__clock_control_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__console_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__console_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__gpio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__gpio_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__hwinfo_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__hwinfo_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__pinctrl_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__pinctrl_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__reset_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__reset_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__serial_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__serial_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__drivers__timer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__drivers__timer_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__.2e.2e__modules__hal__stm32__stm32cube_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__kernel_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__kernel_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\CMake\bin\cmake.exe" -E rm -f $TARGET_FILE && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = "C:\Program Files\CMake\bin\cmake.exe" -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\iteedi\AppData\Local\Microsoft\WinGet\Links\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\iteedi\AppData\Local\Microsoft\WinGet\Links\ninja.exe -t targets + description = All primary targets available: + diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/shields-7b9b338.bat b/firmware/canfd_cdc_composite/build/CMakeFiles/shields-7b9b338.bat new file mode 100644 index 0000000..489305a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/shields-7b9b338.bat @@ -0,0 +1,213 @@ +@echo off +cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build || (set FAIL_LINE=2& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo abrobot_sh1106_72x40 || (set FAIL_LINE=3& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_24lc32 || (set FAIL_LINE=4& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_2_8_tft_touch_v2 || (set FAIL_LINE=5& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_2_8_tft_touch_v2_nano || (set FAIL_LINE=6& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_8chan_solenoid || (set FAIL_LINE=7& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ad5693r || (set FAIL_LINE=8& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_adalogger_featherwing || (set FAIL_LINE=9& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_aht20 || (set FAIL_LINE=10& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_apds9960 || (set FAIL_LINE=11& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_aw9523 || (set FAIL_LINE=12& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_can_picowbell || (set FAIL_LINE=13& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_data_logger || (set FAIL_LINE=14& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_dps310 || (set FAIL_LINE=15& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_drv2605l || (set FAIL_LINE=16& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ds2484 || (set FAIL_LINE=17& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_featherwing_128x32_oled || (set FAIL_LINE=18& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ht16k33 || (set FAIL_LINE=19& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ina219 || (set FAIL_LINE=20& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ina228 || (set FAIL_LINE=21& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ina237 || (set FAIL_LINE=22& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_lis2mdl || (set FAIL_LINE=23& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_lis3dh || (set FAIL_LINE=24& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_lis3mdl || (set FAIL_LINE=25& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_lps22 || (set FAIL_LINE=26& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_ltr329 || (set FAIL_LINE=27& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_mcp9808 || (set FAIL_LINE=28& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_neopixel_grid_bff || (set FAIL_LINE=29& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_neopixel_grid_bff_display || (set FAIL_LINE=30& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_pca9685 || (set FAIL_LINE=31& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_pcf8523 || (set FAIL_LINE=32& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_sht4x || (set FAIL_LINE=33& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_tsl2591 || (set FAIL_LINE=34& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_vcnl4040 || (set FAIL_LINE=35& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_veml7700 || (set FAIL_LINE=36& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo adafruit_winc1500 || (set FAIL_LINE=37& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo amg88xx_eval_kit || (set FAIL_LINE=38& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo amg88xx_grid_eye_eval_shield || (set FAIL_LINE=39& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arceli_eth_w5500 || (set FAIL_LINE=40& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arducam_cu450_ov5640_dvp || (set FAIL_LINE=41& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arduino_giga_display_shield || (set FAIL_LINE=42& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arduino_modulino_buttons || (set FAIL_LINE=43& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arduino_modulino_movement || (set FAIL_LINE=44& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arduino_modulino_pixels || (set FAIL_LINE=45& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arduino_modulino_thermo || (set FAIL_LINE=46& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo arduino_uno_click || (set FAIL_LINE=47& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo atmel_rf2xx || (set FAIL_LINE=48& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo atmel_rf2xx_arduino || (set FAIL_LINE=49& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo atmel_rf2xx_legacy || (set FAIL_LINE=50& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo atmel_rf2xx_mikrobus || (set FAIL_LINE=51& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo atmel_rf2xx_xplained || (set FAIL_LINE=52& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo atmel_rf2xx_xpro || (set FAIL_LINE=53& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo boostxl_ulpsense || (set FAIL_LINE=54& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo buydisplay_2_8_tft_touch_arduino || (set FAIL_LINE=55& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo buydisplay_3_5_tft_touch_arduino || (set FAIL_LINE=56& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo canis_canpico || (set FAIL_LINE=57& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo dac80508_evm || (set FAIL_LINE=58& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo dfrobot_can_bus_v2_0 || (set FAIL_LINE=59& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo dvp_20pin_ov7670 || (set FAIL_LINE=60& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo dvp_fpc24_mt9m114 || (set FAIL_LINE=61& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ek_ra8d1_rtk7eka6m3b00001bu || (set FAIL_LINE=62& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo esp_8266 || (set FAIL_LINE=63& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo esp_8266_arduino || (set FAIL_LINE=64& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo esp_8266_mikrobus || (set FAIL_LINE=65& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo eval_ad4052_ardz || (set FAIL_LINE=66& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo eval_adxl362_ardz || (set FAIL_LINE=67& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo eval_adxl367_ardz || (set FAIL_LINE=68& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo eval_adxl372_ardz || (set FAIL_LINE=69& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo frdm_cr20a || (set FAIL_LINE=70& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo frdm_kw41z || (set FAIL_LINE=71& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo frdm_stbc_agm01 || (set FAIL_LINE=72& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ftdi_vm800c || (set FAIL_LINE=73& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo g1120b0mipi || (set FAIL_LINE=74& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo inventek_eswifi || (set FAIL_LINE=75& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo inventek_eswifi_arduino_spi || (set FAIL_LINE=76& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo inventek_eswifi_arduino_uart || (set FAIL_LINE=77& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo keyestudio_can_bus_ks0411 || (set FAIL_LINE=78& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo lcd_par_s035_8080 || (set FAIL_LINE=79& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo lcd_par_s035_spi || (set FAIL_LINE=80& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo link_board_eth || (set FAIL_LINE=81& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo lmp90100_evb || (set FAIL_LINE=82& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ls013b7dh03 || (set FAIL_LINE=83& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo m5stack_cardputer || (set FAIL_LINE=84& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo m5stack_core2_ext || (set FAIL_LINE=85& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo max7219_8x8 || (set FAIL_LINE=86& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_3d_hall_3_click || (set FAIL_LINE=87& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_accel13_click || (set FAIL_LINE=88& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_adc_click || (set FAIL_LINE=89& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_air_quality_3_click || (set FAIL_LINE=90& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_ambient_2_click || (set FAIL_LINE=91& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_ble_tiny_click || (set FAIL_LINE=92& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_eth3_click || (set FAIL_LINE=93& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_eth_click || (set FAIL_LINE=94& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_h_bridge_4_click || (set FAIL_LINE=95& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_illuminance_click || (set FAIL_LINE=96& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_ir_gesture_click || (set FAIL_LINE=97& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_lsm6dsl_click || (set FAIL_LINE=98& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_lte_iot10_click || (set FAIL_LINE=99& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_mcp2518fd_click || (set FAIL_LINE=100& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_pressure_3_click || (set FAIL_LINE=101& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_proximity_9_click || (set FAIL_LINE=102& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_rtc_18_click || (set FAIL_LINE=103& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_stepper_18_click || (set FAIL_LINE=104& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_stepper_19_click || (set FAIL_LINE=105& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_weather_click_i2c || (set FAIL_LINE=106& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_weather_click_spi || (set FAIL_LINE=107& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_wifi_bt_click_arduino || (set FAIL_LINE=108& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo mikroe_wifi_bt_click_mikrobus || (set FAIL_LINE=109& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo npm1100_ek || (set FAIL_LINE=110& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo npm1300_ek || (set FAIL_LINE=111& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo npm1304_ek || (set FAIL_LINE=112& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo npm2100_ek || (set FAIL_LINE=113& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo npm6001_ek || (set FAIL_LINE=114& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nrf7002eb || (set FAIL_LINE=115& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nrf7002eb_coex || (set FAIL_LINE=116& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nrf7002ek || (set FAIL_LINE=117& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nrf7002ek_coex || (set FAIL_LINE=118& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nrf7002ek_nrf7000 || (set FAIL_LINE=119& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nrf7002ek_nrf7001 || (set FAIL_LINE=120& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nxp_adtja1101 || (set FAIL_LINE=121& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nxp_btb44_ov5640 || (set FAIL_LINE=122& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nxp_m2_1xk_wifi_bt || (set FAIL_LINE=123& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nxp_m2_2el_wifi_bt || (set FAIL_LINE=124& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo nxp_m2_2ll_wifi_bt || (set FAIL_LINE=125& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo olimex_shield_midi || (set FAIL_LINE=126& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo openthread_rcp_arduino_serial || (set FAIL_LINE=127& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo openthread_rcp_arduino_spi || (set FAIL_LINE=128& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo p3t1755dp_ard_i2c || (set FAIL_LINE=129& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo p3t1755dp_ard_i3c || (set FAIL_LINE=130& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo pmod_acl || (set FAIL_LINE=131& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo pmod_sd || (set FAIL_LINE=132& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo renesas_us159_da14531evz || (set FAIL_LINE=133& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo reyax_lora || (set FAIL_LINE=134& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rk043fn02h_ct || (set FAIL_LINE=135& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rk043fn66hs_ctg || (set FAIL_LINE=136& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rk055hdmipi4m || (set FAIL_LINE=137& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rk055hdmipi4ma0 || (set FAIL_LINE=138& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rpi_pico_uno_flexypin || (set FAIL_LINE=139& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rtk0eg0019b01002bj || (set FAIL_LINE=140& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rtk7eka6m3b00001bu || (set FAIL_LINE=141& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rtklcdpar1s00001be || (set FAIL_LINE=142& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo rtkmipilcdb00000be || (set FAIL_LINE=143& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo seeed_w5500 || (set FAIL_LINE=144& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo seeed_xiao_expansion_board || (set FAIL_LINE=145& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo seeed_xiao_round_display || (set FAIL_LINE=146& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo semtech_sx1262mb2das || (set FAIL_LINE=147& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo semtech_sx1272mb2das || (set FAIL_LINE=148& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo semtech_sx1276mb1mas || (set FAIL_LINE=149& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sh1106_128x64 || (set FAIL_LINE=150& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sparkfun_carrier_asset_tracker || (set FAIL_LINE=151& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sparkfun_environmental_combo || (set FAIL_LINE=152& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sparkfun_max3421e || (set FAIL_LINE=153& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sparkfun_rv8803 || (set FAIL_LINE=154& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sparkfun_sara_r4 || (set FAIL_LINE=155& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo sparkfun_shtc3 || (set FAIL_LINE=156& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ssd1306_128x32 || (set FAIL_LINE=157& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ssd1306_128x64 || (set FAIL_LINE=158& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ssd1306_128x64_spi || (set FAIL_LINE=159& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st7735r_ada_160x128 || (set FAIL_LINE=160& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st7789v_tl019fqv01 || (set FAIL_LINE=161& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st7789v_waveshare_240x240 || (set FAIL_LINE=162& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_b_cams_imx_mb1854 || (set FAIL_LINE=163& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_b_cams_omv_mb1683 || (set FAIL_LINE=164& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_b_lcd40_dsi1_mb1166 || (set FAIL_LINE=165& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_b_lcd40_dsi1_mb1166_a09 || (set FAIL_LINE=166& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_lcd_dsi_mb1835 || (set FAIL_LINE=167& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_mb1897_cam || (set FAIL_LINE=168& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo st_stm32f4dis_cam || (set FAIL_LINE=169& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo swir_hl78xx_ev_kit || (set FAIL_LINE=170& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo tcan4550evm || (set FAIL_LINE=171& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo ti_bp_bassensorsmkii || (set FAIL_LINE=172& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo v2c_daplink || (set FAIL_LINE=173& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo v2c_daplink_cfg || (set FAIL_LINE=174& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_7inch_dsi_lcd_c || (set FAIL_LINE=175& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdeh0154a07 || (set FAIL_LINE=176& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdeh0213b1 || (set FAIL_LINE=177& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdeh0213b72 || (set FAIL_LINE=178& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdeh029a1 || (set FAIL_LINE=179& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdew042t2 || (set FAIL_LINE=180& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdew042t2-p || (set FAIL_LINE=181& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdew075t7 || (set FAIL_LINE=182& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_epaper_gdey0213b74 || (set FAIL_LINE=183& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_pico_lcd_1_14 || (set FAIL_LINE=184& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_pico_oled_1_3 || (set FAIL_LINE=185& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo waveshare_pico_ups_b || (set FAIL_LINE=186& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo weact_ov2640_cam_module || (set FAIL_LINE=187& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo wnc_m14a2a || (set FAIL_LINE=188& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_53l0a1 || (set FAIL_LINE=189& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_bnrg2a1 || (set FAIL_LINE=190& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_eeprma2 || (set FAIL_LINE=191& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_gfx01m2 || (set FAIL_LINE=192& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_idb05a1 || (set FAIL_LINE=193& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks01a1 || (set FAIL_LINE=194& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks01a2 || (set FAIL_LINE=195& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks01a2_shub || (set FAIL_LINE=196& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks01a3 || (set FAIL_LINE=197& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks01a3_shub || (set FAIL_LINE=198& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks02a1 || (set FAIL_LINE=199& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks02a1_mic || (set FAIL_LINE=200& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks02a1_shub || (set FAIL_LINE=201& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks4a1 || (set FAIL_LINE=202& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks4a1_shub1 || (set FAIL_LINE=203& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_iks4a1_shub2 || (set FAIL_LINE=204& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_wb05kn1_spi || (set FAIL_LINE=205& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo x_nucleo_wb05kn1_uart || (set FAIL_LINE=206& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E echo zc143ac72mipi || (set FAIL_LINE=207& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/CMakeFiles/traceconfig-e7d6fc9.bat b/firmware/canfd_cdc_composite/build/CMakeFiles/traceconfig-e7d6fc9.bat new file mode 100644 index 0000000..57d5f69 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/CMakeFiles/traceconfig-e7d6fc9.bat @@ -0,0 +1,9 @@ +@echo off +cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\kconfig || (set FAIL_LINE=2& goto :ABORT) +"C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr PYTHON_EXECUTABLE=C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe srctree=C:/Users/iteedi/zephyrproject/zephyr ZEPHYR_ACPICA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/acpica ZEPHYR_CMSIS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis ZEPHYR_CMSIS_DSP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp ZEPHYR_CMSIS_NN_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn ZEPHYR_CMSIS_6_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6 ZEPHYR_FATFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/fatfs ZEPHYR_ADI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/adi ZEPHYR_HAL_AFBR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/afbr ZEPHYR_HAL_AMBIQ_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ambiq ZEPHYR_ATMEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/atmel ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/espressif ZEPHYR_HAL_ETHOS_U_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ethos_u ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/gigadevice ZEPHYR_HAL_INFINEON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/infineon ZEPHYR_HAL_INTEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/intel ZEPHYR_MICROCHIP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/microchip ZEPHYR_HAL_NORDIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nordic ZEPHYR_NUVOTON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nuvoton ZEPHYR_HAL_NXP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nxp ZEPHYR_OPENISA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/openisa ZEPHYR_QUICKLOGIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/quicklogic ZEPHYR_HAL_RENESAS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/renesas ZEPHYR_HAL_RPI_PICO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico ZEPHYR_HAL_SIFLI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/sifli ZEPHYR_HAL_SILABS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/silabs ZEPHYR_HAL_ST_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/st ZEPHYR_HAL_STM32_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/stm32 ZEPHYR_HAL_TDK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/tdk ZEPHYR_HAL_TELINK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/telink ZEPHYR_TI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ti ZEPHYR_HAL_WCH_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wch ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik ZEPHYR_XTENSA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/xtensa ZEPHYR_HOSTAP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/hostap ZEPHYR_LIBLC3_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/liblc3 ZEPHYR_LIBMCTP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libmctp ZEPHYR_LIBMETAL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/libmetal ZEPHYR_LIBSBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libsbc ZEPHYR_LITTLEFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/littlefs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem ZEPHYR_LORAMAC_NODE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/loramac-node ZEPHYR_LVGL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls ZEPHYR_MCUBOOT_MODULE_DIR=C:/Users/iteedi/zephyrproject/bootloader/mcuboot ZEPHYR_MIPI_SYS_T_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t ZEPHYR_NANOPB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nanopb ZEPHYR_NRF_WIFI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi ZEPHYR_OPEN_AMP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/open-amp ZEPHYR_OPENTHREAD_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/openthread ZEPHYR_PERCEPIO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/percepio ZEPHYR_PICOLIBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/picolibc ZEPHYR_SEGGER_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/segger ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc ZEPHYR_ZCBOR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/zcbor ZEPHYR_NRF_HW_MODELS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models KERNELVERSION=0x4030000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite CONFIG_=CONFIG_ KCONFIG_CONFIG=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/.config KCONFIG_BOARD_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/boards BOARD=ews BOARD_REVISION= BOARD_QUALIFIERS=/stm32g0b1xx HWM_SCHEME=v2 KCONFIG_BINARY_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig APPLICATION_SOURCE_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_KCONFIG_DIR=C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=y TOOLCHAIN_HAS_PICOLIBC=y EDT_PICKLE=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_FATFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=C:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=C:/Users/iteedi/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=C:/Users/iteedi/zephyrproject/zephyr/dts/bindings "C:/Program Files/Git/usr/bin/winpty.exe" C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/kconfig/traceconfig.py C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/.config C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kconfig-trace.md C:/Users/iteedi/zephyrproject/zephyr/Kconfig || (set FAIL_LINE=3& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts new file mode 100644 index 0000000..9403e1d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts @@ -0,0 +1,14728 @@ +# Generated devicetree Kconfig +# +# SPDX-License-Identifier: Apache-2.0 + +DT_COMPAT_ADAFRUIT_FEATHER_HEADER := adafruit-feather-header + +config DT_HAS_ADAFRUIT_FEATHER_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADAFRUIT_FEATHER_HEADER)) + +DT_COMPAT_ADC_KEYS := adc-keys + +config DT_HAS_ADC_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADC_KEYS)) + +DT_COMPAT_ADI_AD2S1210 := adi,ad2s1210 + +config DT_HAS_ADI_AD2S1210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD2S1210)) + +DT_COMPAT_ADI_AD4050_ADC := adi,ad4050-adc + +config DT_HAS_ADI_AD4050_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4050_ADC)) + +DT_COMPAT_ADI_AD4052_ADC := adi,ad4052-adc + +config DT_HAS_ADI_AD4052_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4052_ADC)) + +DT_COMPAT_ADI_AD4114_ADC := adi,ad4114-adc + +config DT_HAS_ADI_AD4114_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4114_ADC)) + +DT_COMPAT_ADI_AD4130_ADC := adi,ad4130-adc + +config DT_HAS_ADI_AD4130_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4130_ADC)) + +DT_COMPAT_ADI_AD4170_ADC := adi,ad4170-adc + +config DT_HAS_ADI_AD4170_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4170_ADC)) + +DT_COMPAT_ADI_AD4190_ADC := adi,ad4190-adc + +config DT_HAS_ADI_AD4190_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4190_ADC)) + +DT_COMPAT_ADI_AD4195_ADC := adi,ad4195-adc + +config DT_HAS_ADI_AD4195_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4195_ADC)) + +DT_COMPAT_ADI_AD559X := adi,ad559x + +config DT_HAS_ADI_AD559X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X)) + +DT_COMPAT_ADI_AD559X_ADC := adi,ad559x-adc + +config DT_HAS_ADI_AD559X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_ADC)) + +DT_COMPAT_ADI_AD559X_DAC := adi,ad559x-dac + +config DT_HAS_ADI_AD559X_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_DAC)) + +DT_COMPAT_ADI_AD559X_GPIO := adi,ad559x-gpio + +config DT_HAS_ADI_AD559X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_GPIO)) + +DT_COMPAT_ADI_AD5601 := adi,ad5601 + +config DT_HAS_ADI_AD5601_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5601)) + +DT_COMPAT_ADI_AD5611 := adi,ad5611 + +config DT_HAS_ADI_AD5611_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5611)) + +DT_COMPAT_ADI_AD5621 := adi,ad5621 + +config DT_HAS_ADI_AD5621_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5621)) + +DT_COMPAT_ADI_AD5628 := adi,ad5628 + +config DT_HAS_ADI_AD5628_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5628)) + +DT_COMPAT_ADI_AD5648 := adi,ad5648 + +config DT_HAS_ADI_AD5648_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5648)) + +DT_COMPAT_ADI_AD5668 := adi,ad5668 + +config DT_HAS_ADI_AD5668_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5668)) + +DT_COMPAT_ADI_AD5672 := adi,ad5672 + +config DT_HAS_ADI_AD5672_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5672)) + +DT_COMPAT_ADI_AD5674 := adi,ad5674 + +config DT_HAS_ADI_AD5674_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5674)) + +DT_COMPAT_ADI_AD5676 := adi,ad5676 + +config DT_HAS_ADI_AD5676_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5676)) + +DT_COMPAT_ADI_AD5679 := adi,ad5679 + +config DT_HAS_ADI_AD5679_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5679)) + +DT_COMPAT_ADI_AD5684 := adi,ad5684 + +config DT_HAS_ADI_AD5684_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5684)) + +DT_COMPAT_ADI_AD5686 := adi,ad5686 + +config DT_HAS_ADI_AD5686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5686)) + +DT_COMPAT_ADI_AD5687 := adi,ad5687 + +config DT_HAS_ADI_AD5687_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5687)) + +DT_COMPAT_ADI_AD5689 := adi,ad5689 + +config DT_HAS_ADI_AD5689_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5689)) + +DT_COMPAT_ADI_AD5691 := adi,ad5691 + +config DT_HAS_ADI_AD5691_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5691)) + +DT_COMPAT_ADI_AD5692 := adi,ad5692 + +config DT_HAS_ADI_AD5692_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5692)) + +DT_COMPAT_ADI_AD5693 := adi,ad5693 + +config DT_HAS_ADI_AD5693_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5693)) + +DT_COMPAT_ADI_AD7124_ADC := adi,ad7124-adc + +config DT_HAS_ADI_AD7124_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD7124_ADC)) + +DT_COMPAT_ADI_ADIN1100_PHY := adi,adin1100-phy + +config DT_HAS_ADI_ADIN1100_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN1100_PHY)) + +DT_COMPAT_ADI_ADIN1110 := adi,adin1110 + +config DT_HAS_ADI_ADIN1110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN1110)) + +DT_COMPAT_ADI_ADIN2111 := adi,adin2111 + +config DT_HAS_ADI_ADIN2111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111)) + +DT_COMPAT_ADI_ADIN2111_MDIO := adi,adin2111-mdio + +config DT_HAS_ADI_ADIN2111_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111_MDIO)) + +DT_COMPAT_ADI_ADIN2111_PHY := adi,adin2111-phy + +config DT_HAS_ADI_ADIN2111_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111_PHY)) + +DT_COMPAT_ADI_ADLTC2990 := adi,adltc2990 + +config DT_HAS_ADI_ADLTC2990_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADLTC2990)) + +DT_COMPAT_ADI_ADP5360 := adi,adp5360 + +config DT_HAS_ADI_ADP5360_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5360)) + +DT_COMPAT_ADI_ADP5360_REGULATOR := adi,adp5360-regulator + +config DT_HAS_ADI_ADP5360_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5360_REGULATOR)) + +DT_COMPAT_ADI_ADP5585 := adi,adp5585 + +config DT_HAS_ADI_ADP5585_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5585)) + +DT_COMPAT_ADI_ADP5585_GPIO := adi,adp5585-gpio + +config DT_HAS_ADI_ADP5585_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5585_GPIO)) + +DT_COMPAT_ADI_ADT7310 := adi,adt7310 + +config DT_HAS_ADI_ADT7310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7310)) + +DT_COMPAT_ADI_ADT7420 := adi,adt7420 + +config DT_HAS_ADI_ADT7420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7420)) + +DT_COMPAT_ADI_ADXL345 := adi,adxl345 + +config DT_HAS_ADI_ADXL345_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL345)) + +DT_COMPAT_ADI_ADXL362 := adi,adxl362 + +config DT_HAS_ADI_ADXL362_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL362)) + +DT_COMPAT_ADI_ADXL366 := adi,adxl366 + +config DT_HAS_ADI_ADXL366_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL366)) + +DT_COMPAT_ADI_ADXL367 := adi,adxl367 + +config DT_HAS_ADI_ADXL367_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL367)) + +DT_COMPAT_ADI_ADXL372 := adi,adxl372 + +config DT_HAS_ADI_ADXL372_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL372)) + +DT_COMPAT_ADI_LTC2959 := adi,ltc2959 + +config DT_HAS_ADI_LTC2959_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_LTC2959)) + +DT_COMPAT_ADI_MAX14906_GPIO := adi,max14906-gpio + +config DT_HAS_ADI_MAX14906_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14906_GPIO)) + +DT_COMPAT_ADI_MAX14915_GPIO := adi,max14915-gpio + +config DT_HAS_ADI_MAX14915_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14915_GPIO)) + +DT_COMPAT_ADI_MAX14916_GPIO := adi,max14916-gpio + +config DT_HAS_ADI_MAX14916_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14916_GPIO)) + +DT_COMPAT_ADI_MAX14917_GPIO := adi,max14917-gpio + +config DT_HAS_ADI_MAX14917_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14917_GPIO)) + +DT_COMPAT_ADI_MAX22017 := adi,max22017 + +config DT_HAS_ADI_MAX22017_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22017)) + +DT_COMPAT_ADI_MAX22017_DAC := adi,max22017-dac + +config DT_HAS_ADI_MAX22017_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22017_DAC)) + +DT_COMPAT_ADI_MAX22017_GPIO := adi,max22017-gpio + +config DT_HAS_ADI_MAX22017_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22017_GPIO)) + +DT_COMPAT_ADI_MAX22190_GPIO := adi,max22190-gpio + +config DT_HAS_ADI_MAX22190_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22190_GPIO)) + +DT_COMPAT_ADI_MAX22199_GPIO := adi,max22199-gpio + +config DT_HAS_ADI_MAX22199_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22199_GPIO)) + +DT_COMPAT_ADI_MAX32_ADC := adi,max32-adc + +config DT_HAS_ADI_MAX32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC)) + +DT_COMPAT_ADI_MAX32_ADC_10B := adi,max32-adc-10b + +config DT_HAS_ADI_MAX32_ADC_10B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_10B)) + +DT_COMPAT_ADI_MAX32_ADC_B_ME18 := adi,max32-adc-b-me18 + +config DT_HAS_ADI_MAX32_ADC_B_ME18_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_B_ME18)) + +DT_COMPAT_ADI_MAX32_ADC_SAR := adi,max32-adc-sar + +config DT_HAS_ADI_MAX32_ADC_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_SAR)) + +DT_COMPAT_ADI_MAX32_CAN := adi,max32-can + +config DT_HAS_ADI_MAX32_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_CAN)) + +DT_COMPAT_ADI_MAX32_COUNTER := adi,max32-counter + +config DT_HAS_ADI_MAX32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_COUNTER)) + +DT_COMPAT_ADI_MAX32_DMA := adi,max32-dma + +config DT_HAS_ADI_MAX32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_DMA)) + +DT_COMPAT_ADI_MAX32_FLASH_CONTROLLER := adi,max32-flash-controller + +config DT_HAS_ADI_MAX32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_FLASH_CONTROLLER)) + +DT_COMPAT_ADI_MAX32_GCR := adi,max32-gcr + +config DT_HAS_ADI_MAX32_GCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_GCR)) + +DT_COMPAT_ADI_MAX32_GPIO := adi,max32-gpio + +config DT_HAS_ADI_MAX32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_GPIO)) + +DT_COMPAT_ADI_MAX32_HPB := adi,max32-hpb + +config DT_HAS_ADI_MAX32_HPB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_HPB)) + +DT_COMPAT_ADI_MAX32_I2C := adi,max32-i2c + +config DT_HAS_ADI_MAX32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_I2C)) + +DT_COMPAT_ADI_MAX32_I3C := adi,max32-i3c + +config DT_HAS_ADI_MAX32_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_I3C)) + +DT_COMPAT_ADI_MAX32_PINCTRL := adi,max32-pinctrl + +config DT_HAS_ADI_MAX32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_PINCTRL)) + +DT_COMPAT_ADI_MAX32_PWM := adi,max32-pwm + +config DT_HAS_ADI_MAX32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_PWM)) + +DT_COMPAT_ADI_MAX32_RTC_COUNTER := adi,max32-rtc-counter + +config DT_HAS_ADI_MAX32_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_RTC_COUNTER)) + +DT_COMPAT_ADI_MAX32_SDHC := adi,max32-sdhc + +config DT_HAS_ADI_MAX32_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SDHC)) + +DT_COMPAT_ADI_MAX32_SPI := adi,max32-spi + +config DT_HAS_ADI_MAX32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPI)) + +DT_COMPAT_ADI_MAX32_SPIXF := adi,max32-spixf + +config DT_HAS_ADI_MAX32_SPIXF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPIXF)) + +DT_COMPAT_ADI_MAX32_SPIXF_NOR := adi,max32-spixf-nor + +config DT_HAS_ADI_MAX32_SPIXF_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPIXF_NOR)) + +DT_COMPAT_ADI_MAX32_TIMER := adi,max32-timer + +config DT_HAS_ADI_MAX32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_TIMER)) + +DT_COMPAT_ADI_MAX32_TRNG := adi,max32-trng + +config DT_HAS_ADI_MAX32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_TRNG)) + +DT_COMPAT_ADI_MAX32_UART := adi,max32-uart + +config DT_HAS_ADI_MAX32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_UART)) + +DT_COMPAT_ADI_MAX32_USBHS := adi,max32-usbhs + +config DT_HAS_ADI_MAX32_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_USBHS)) + +DT_COMPAT_ADI_MAX32_W1 := adi,max32-w1 + +config DT_HAS_ADI_MAX32_W1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_W1)) + +DT_COMPAT_ADI_MAX32_WATCHDOG := adi,max32-watchdog + +config DT_HAS_ADI_MAX32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_WATCHDOG)) + +DT_COMPAT_ADI_MAX32_WUT := adi,max32-wut + +config DT_HAS_ADI_MAX32_WUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_WUT)) + +DT_COMPAT_ADI_MAXQ10XX := adi,maxq10xx + +config DT_HAS_ADI_MAXQ10XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAXQ10XX)) + +DT_COMPAT_ADI_MAXQ10XX_TRNG := adi,maxq10xx-trng + +config DT_HAS_ADI_MAXQ10XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAXQ10XX_TRNG)) + +DT_COMPAT_ADI_SDP_120 := adi,sdp-120 + +config DT_HAS_ADI_SDP_120_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_SDP_120)) + +DT_COMPAT_ADI_TMC2209 := adi,tmc2209 + +config DT_HAS_ADI_TMC2209_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC2209)) + +DT_COMPAT_ADI_TMC50XX := adi,tmc50xx + +config DT_HAS_ADI_TMC50XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC50XX)) + +DT_COMPAT_ADI_TMC51XX := adi,tmc51xx + +config DT_HAS_ADI_TMC51XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC51XX)) + +DT_COMPAT_AESC_GPIO := aesc,gpio + +config DT_HAS_AESC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AESC_GPIO)) + +DT_COMPAT_AESC_UART := aesc,uart + +config DT_HAS_AESC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AESC_UART)) + +DT_COMPAT_ALLEGRO_A4979 := allegro,a4979 + +config DT_HAS_ALLEGRO_A4979_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALLEGRO_A4979)) + +DT_COMPAT_ALLEGRO_ALS31300 := allegro,als31300 + +config DT_HAS_ALLEGRO_ALS31300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALLEGRO_ALS31300)) + +DT_COMPAT_ALTR_JTAG_UART := altr,jtag-uart + +config DT_HAS_ALTR_JTAG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_JTAG_UART)) + +DT_COMPAT_ALTR_MSGDMA := altr,msgdma + +config DT_HAS_ALTR_MSGDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_MSGDMA)) + +DT_COMPAT_ALTR_NIOS2_I2C := altr,nios2-i2c + +config DT_HAS_ALTR_NIOS2_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_I2C)) + +DT_COMPAT_ALTR_NIOS2_QSPI := altr,nios2-qspi + +config DT_HAS_ALTR_NIOS2_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_QSPI)) + +DT_COMPAT_ALTR_NIOS2_QSPI_NOR := altr,nios2-qspi-nor + +config DT_HAS_ALTR_NIOS2_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_QSPI_NOR)) + +DT_COMPAT_ALTR_PIO_1_0 := altr,pio-1.0 + +config DT_HAS_ALTR_PIO_1_0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_PIO_1_0)) + +DT_COMPAT_ALTR_UART := altr,uart + +config DT_HAS_ALTR_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_UART)) + +DT_COMPAT_AMBIQ_ADC := ambiq,adc + +config DT_HAS_AMBIQ_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_ADC)) + +DT_COMPAT_AMBIQ_AM1805 := ambiq,am1805 + +config DT_HAS_AMBIQ_AM1805_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_AM1805)) + +DT_COMPAT_AMBIQ_APOLLO2_PINCTRL := ambiq,apollo2-pinctrl + +config DT_HAS_AMBIQ_APOLLO2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO2_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO3_PINCTRL := ambiq,apollo3-pinctrl + +config DT_HAS_AMBIQ_APOLLO3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO3_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO4_PINCTRL := ambiq,apollo4-pinctrl + +config DT_HAS_AMBIQ_APOLLO4_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO4_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO5_PINCTRL := ambiq,apollo5-pinctrl + +config DT_HAS_AMBIQ_APOLLO5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO5_PINCTRL)) + +DT_COMPAT_AMBIQ_BT_HCI_SPI := ambiq,bt-hci-spi + +config DT_HAS_AMBIQ_BT_HCI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_BT_HCI_SPI)) + +DT_COMPAT_AMBIQ_CLKCTRL := ambiq,clkctrl + +config DT_HAS_AMBIQ_CLKCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CLKCTRL)) + +DT_COMPAT_AMBIQ_COUNTER := ambiq,counter + +config DT_HAS_AMBIQ_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_COUNTER)) + +DT_COMPAT_AMBIQ_CTIMER := ambiq,ctimer + +config DT_HAS_AMBIQ_CTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CTIMER)) + +DT_COMPAT_AMBIQ_CTIMER_PWM := ambiq,ctimer-pwm + +config DT_HAS_AMBIQ_CTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CTIMER_PWM)) + +DT_COMPAT_AMBIQ_FLASH_CONTROLLER := ambiq,flash-controller + +config DT_HAS_AMBIQ_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_FLASH_CONTROLLER)) + +DT_COMPAT_AMBIQ_GPIO := ambiq,gpio + +config DT_HAS_AMBIQ_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_GPIO)) + +DT_COMPAT_AMBIQ_GPIO_BANK := ambiq,gpio-bank + +config DT_HAS_AMBIQ_GPIO_BANK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_GPIO_BANK)) + +DT_COMPAT_AMBIQ_I2C := ambiq,i2c + +config DT_HAS_AMBIQ_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_I2C)) + +DT_COMPAT_AMBIQ_I2S := ambiq,i2s + +config DT_HAS_AMBIQ_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_I2S)) + +DT_COMPAT_AMBIQ_IOM := ambiq,iom + +config DT_HAS_AMBIQ_IOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_IOM)) + +DT_COMPAT_AMBIQ_MSPI := ambiq,mspi + +config DT_HAS_AMBIQ_MSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI)) + +DT_COMPAT_AMBIQ_MSPI_CONTROLLER := ambiq,mspi-controller + +config DT_HAS_AMBIQ_MSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI_CONTROLLER)) + +DT_COMPAT_AMBIQ_MSPI_DEVICE := ambiq,mspi-device + +config DT_HAS_AMBIQ_MSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI_DEVICE)) + +DT_COMPAT_AMBIQ_PDM := ambiq,pdm + +config DT_HAS_AMBIQ_PDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PDM)) + +DT_COMPAT_AMBIQ_PL011_UART := ambiq,pl011-uart + +config DT_HAS_AMBIQ_PL011_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PL011_UART)) + +DT_COMPAT_AMBIQ_PUF_TRNG := ambiq,puf-trng + +config DT_HAS_AMBIQ_PUF_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PUF_TRNG)) + +DT_COMPAT_AMBIQ_RTC := ambiq,rtc + +config DT_HAS_AMBIQ_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_RTC)) + +DT_COMPAT_AMBIQ_SDIO := ambiq,sdio + +config DT_HAS_AMBIQ_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SDIO)) + +DT_COMPAT_AMBIQ_SPI := ambiq,spi + +config DT_HAS_AMBIQ_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPI)) + +DT_COMPAT_AMBIQ_SPI_BLEIF := ambiq,spi-bleif + +config DT_HAS_AMBIQ_SPI_BLEIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPI_BLEIF)) + +DT_COMPAT_AMBIQ_SPID := ambiq,spid + +config DT_HAS_AMBIQ_SPID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPID)) + +DT_COMPAT_AMBIQ_STIMER := ambiq,stimer + +config DT_HAS_AMBIQ_STIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_STIMER)) + +DT_COMPAT_AMBIQ_TIMER := ambiq,timer + +config DT_HAS_AMBIQ_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_TIMER)) + +DT_COMPAT_AMBIQ_TIMER_PWM := ambiq,timer-pwm + +config DT_HAS_AMBIQ_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_TIMER_PWM)) + +DT_COMPAT_AMBIQ_UART := ambiq,uart + +config DT_HAS_AMBIQ_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_UART)) + +DT_COMPAT_AMBIQ_USB := ambiq,usb + +config DT_HAS_AMBIQ_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_USB)) + +DT_COMPAT_AMBIQ_WATCHDOG := ambiq,watchdog + +config DT_HAS_AMBIQ_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_WATCHDOG)) + +DT_COMPAT_AMBIQ_HEADER := ambiq-header + +config DT_HAS_AMBIQ_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_HEADER)) + +DT_COMPAT_AMD_SB_TSI := amd,sb-tsi + +config DT_HAS_AMD_SB_TSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMD_SB_TSI)) + +DT_COMPAT_AMS_AS5600 := ams,as5600 + +config DT_HAS_AMS_AS5600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS5600)) + +DT_COMPAT_AMS_AS6212 := ams,as6212 + +config DT_HAS_AMS_AS6212_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS6212)) + +DT_COMPAT_AMS_CCS811 := ams,ccs811 + +config DT_HAS_AMS_CCS811_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_CCS811)) + +DT_COMPAT_AMS_ENS210 := ams,ens210 + +config DT_HAS_AMS_ENS210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_ENS210)) + +DT_COMPAT_AMS_IAQCORE := ams,iaqcore + +config DT_HAS_AMS_IAQCORE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_IAQCORE)) + +DT_COMPAT_AMS_TCS3400 := ams,tcs3400 + +config DT_HAS_AMS_TCS3400_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TCS3400)) + +DT_COMPAT_AMS_TMD2620 := ams,tmd2620 + +config DT_HAS_AMS_TMD2620_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TMD2620)) + +DT_COMPAT_AMS_TSL2540 := ams,tsl2540 + +config DT_HAS_AMS_TSL2540_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2540)) + +DT_COMPAT_AMS_TSL2561 := ams,tsl2561 + +config DT_HAS_AMS_TSL2561_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2561)) + +DT_COMPAT_AMS_TSL2591 := ams,tsl2591 + +config DT_HAS_AMS_TSL2591_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2591)) + +DT_COMPAT_ANALOG_AXIS := analog-axis + +config DT_HAS_ANALOG_AXIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANALOG_AXIS)) + +DT_COMPAT_ANDESTECH_ANDESCORE_V5 := andestech,andescore-v5 + +config DT_HAS_ANDESTECH_ANDESCORE_V5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ANDESCORE_V5)) + +DT_COMPAT_ANDESTECH_ATCDMACX00 := andestech,atcdmacx00 + +config DT_HAS_ANDESTECH_ATCDMACX00_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCDMACX00)) + +DT_COMPAT_ANDESTECH_ATCGPIO100 := andestech,atcgpio100 + +config DT_HAS_ANDESTECH_ATCGPIO100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCGPIO100)) + +DT_COMPAT_ANDESTECH_ATCIIC100 := andestech,atciic100 + +config DT_HAS_ANDESTECH_ATCIIC100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCIIC100)) + +DT_COMPAT_ANDESTECH_ATCPIT100 := andestech,atcpit100 + +config DT_HAS_ANDESTECH_ATCPIT100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCPIT100)) + +DT_COMPAT_ANDESTECH_ATCSPI200 := andestech,atcspi200 + +config DT_HAS_ANDESTECH_ATCSPI200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCSPI200)) + +DT_COMPAT_ANDESTECH_ATCWDT200 := andestech,atcwdt200 + +config DT_HAS_ANDESTECH_ATCWDT200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCWDT200)) + +DT_COMPAT_ANDESTECH_L2C := andestech,l2c + +config DT_HAS_ANDESTECH_L2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_L2C)) + +DT_COMPAT_ANDESTECH_MBOX_PLIC_SW := andestech,mbox-plic-sw + +config DT_HAS_ANDESTECH_MBOX_PLIC_SW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_MBOX_PLIC_SW)) + +DT_COMPAT_ANDESTECH_NCEPLIC100 := andestech,nceplic100 + +config DT_HAS_ANDESTECH_NCEPLIC100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_NCEPLIC100)) + +DT_COMPAT_ANDESTECH_QSPI_NOR := andestech,qspi-nor + +config DT_HAS_ANDESTECH_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_QSPI_NOR)) + +DT_COMPAT_ANDESTECH_QSPI_NOR_XIP := andestech,qspi-nor-xip + +config DT_HAS_ANDESTECH_QSPI_NOR_XIP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_QSPI_NOR_XIP)) + +DT_COMPAT_AOSONG_AGS10 := aosong,ags10 + +config DT_HAS_AOSONG_AGS10_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AGS10)) + +DT_COMPAT_AOSONG_AHT20 := aosong,aht20 + +config DT_HAS_AOSONG_AHT20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AHT20)) + +DT_COMPAT_AOSONG_AM2301B := aosong,am2301b + +config DT_HAS_AOSONG_AM2301B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AM2301B)) + +DT_COMPAT_AOSONG_DHT := aosong,dht + +config DT_HAS_AOSONG_DHT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_DHT)) + +DT_COMPAT_AOSONG_DHT20 := aosong,dht20 + +config DT_HAS_AOSONG_DHT20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_DHT20)) + +DT_COMPAT_AP_FCX_MLDX5 := ap,fcx-mldx5 + +config DT_HAS_AP_FCX_MLDX5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AP_FCX_MLDX5)) + +DT_COMPAT_APA_APA102 := apa,apa102 + +config DT_HAS_APA_APA102_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_APA_APA102)) + +DT_COMPAT_APTINA_MT9M114 := aptina,mt9m114 + +config DT_HAS_APTINA_MT9M114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_APTINA_MT9M114)) + +DT_COMPAT_ARC_DCCM := arc,dccm + +config DT_HAS_ARC_DCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_DCCM)) + +DT_COMPAT_ARC_ICCM := arc,iccm + +config DT_HAS_ARC_ICCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_ICCM)) + +DT_COMPAT_ARC_XCCM := arc,xccm + +config DT_HAS_ARC_XCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_XCCM)) + +DT_COMPAT_ARC_YCCM := arc,yccm + +config DT_HAS_ARC_YCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_YCCM)) + +DT_COMPAT_ARDUCAM_DVP_20PIN_CONNECTOR := arducam,dvp-20pin-connector + +config DT_HAS_ARDUCAM_DVP_20PIN_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUCAM_DVP_20PIN_CONNECTOR)) + +DT_COMPAT_ARDUCAM_FFC_40PIN_CONNECTOR := arducam,ffc-40pin-connector + +config DT_HAS_ARDUCAM_FFC_40PIN_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUCAM_FFC_40PIN_CONNECTOR)) + +DT_COMPAT_ARDUINO_MODULINO_BUTTONS := arduino,modulino-buttons + +config DT_HAS_ARDUINO_MODULINO_BUTTONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_BUTTONS)) + +DT_COMPAT_ARDUINO_MODULINO_BUTTONS_LEDS := arduino,modulino-buttons-leds + +config DT_HAS_ARDUINO_MODULINO_BUTTONS_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_BUTTONS_LEDS)) + +DT_COMPAT_ARDUINO_MODULINO_PIXELS := arduino,modulino-pixels + +config DT_HAS_ARDUINO_MODULINO_PIXELS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_PIXELS)) + +DT_COMPAT_ARDUINO_UNO_ADC := arduino,uno-adc + +config DT_HAS_ARDUINO_UNO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_UNO_ADC)) + +DT_COMPAT_ARDUINO_HEADER_PWM := arduino-header-pwm + +config DT_HAS_ARDUINO_HEADER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_HEADER_PWM)) + +DT_COMPAT_ARDUINO_HEADER_R3 := arduino-header-r3 + +config DT_HAS_ARDUINO_HEADER_R3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_HEADER_R3)) + +DT_COMPAT_ARDUINO_MKR_HEADER := arduino-mkr-header + +config DT_HAS_ARDUINO_MKR_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MKR_HEADER)) + +DT_COMPAT_ARDUINO_NANO_HEADER := arduino-nano-header + +config DT_HAS_ARDUINO_NANO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_NANO_HEADER)) + +DT_COMPAT_ARM_ARMV6M_MPU := arm,armv6m-mpu + +config DT_HAS_ARM_ARMV6M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV6M_MPU)) + +DT_COMPAT_ARM_ARMV6M_SYSTICK := arm,armv6m-systick + +config DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV6M_SYSTICK)) + +DT_COMPAT_ARM_ARMV7M_ITM := arm,armv7m-itm + +config DT_HAS_ARM_ARMV7M_ITM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_ITM)) + +DT_COMPAT_ARM_ARMV7M_MPU := arm,armv7m-mpu + +config DT_HAS_ARM_ARMV7M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_MPU)) + +DT_COMPAT_ARM_ARMV7M_SYSTICK := arm,armv7m-systick + +config DT_HAS_ARM_ARMV7M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_SYSTICK)) + +DT_COMPAT_ARM_ARMV8_TIMER := arm,armv8-timer + +config DT_HAS_ARM_ARMV8_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_TIMER)) + +DT_COMPAT_ARM_ARMV8_1M_MPU := arm,armv8.1m-mpu + +config DT_HAS_ARM_ARMV8_1M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_1M_MPU)) + +DT_COMPAT_ARM_ARMV8_1M_SYSTICK := arm,armv8.1m-systick + +config DT_HAS_ARM_ARMV8_1M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_1M_SYSTICK)) + +DT_COMPAT_ARM_ARMV8M_ITM := arm,armv8m-itm + +config DT_HAS_ARM_ARMV8M_ITM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_ITM)) + +DT_COMPAT_ARM_ARMV8M_MPU := arm,armv8m-mpu + +config DT_HAS_ARM_ARMV8M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_MPU)) + +DT_COMPAT_ARM_ARMV8M_SYSTICK := arm,armv8m-systick + +config DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_SYSTICK)) + +DT_COMPAT_ARM_BEETLE_SYSCON := arm,beetle-syscon + +config DT_HAS_ARM_BEETLE_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_BEETLE_SYSCON)) + +DT_COMPAT_ARM_CMSDK_DTIMER := arm,cmsdk-dtimer + +config DT_HAS_ARM_CMSDK_DTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_DTIMER)) + +DT_COMPAT_ARM_CMSDK_GPIO := arm,cmsdk-gpio + +config DT_HAS_ARM_CMSDK_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_GPIO)) + +DT_COMPAT_ARM_CMSDK_TIMER := arm,cmsdk-timer + +config DT_HAS_ARM_CMSDK_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_TIMER)) + +DT_COMPAT_ARM_CMSDK_UART := arm,cmsdk-uart + +config DT_HAS_ARM_CMSDK_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_UART)) + +DT_COMPAT_ARM_CMSDK_WATCHDOG := arm,cmsdk-watchdog + +config DT_HAS_ARM_CMSDK_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_WATCHDOG)) + +DT_COMPAT_ARM_CORTEX_A53 := arm,cortex-a53 + +config DT_HAS_ARM_CORTEX_A53_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A53)) + +DT_COMPAT_ARM_CORTEX_A55 := arm,cortex-a55 + +config DT_HAS_ARM_CORTEX_A55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A55)) + +DT_COMPAT_ARM_CORTEX_A72 := arm,cortex-a72 + +config DT_HAS_ARM_CORTEX_A72_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A72)) + +DT_COMPAT_ARM_CORTEX_A76 := arm,cortex-a76 + +config DT_HAS_ARM_CORTEX_A76_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A76)) + +DT_COMPAT_ARM_CORTEX_A78 := arm,cortex-a78 + +config DT_HAS_ARM_CORTEX_A78_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A78)) + +DT_COMPAT_ARM_CORTEX_M0 := arm,cortex-m0 + +config DT_HAS_ARM_CORTEX_M0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M0)) + +DT_COMPAT_ARM_CORTEX_M0_ := arm,cortex-m0+ + +config DT_HAS_ARM_CORTEX_M0__ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M0_)) + +DT_COMPAT_ARM_CORTEX_M1 := arm,cortex-m1 + +config DT_HAS_ARM_CORTEX_M1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M1)) + +DT_COMPAT_ARM_CORTEX_M23 := arm,cortex-m23 + +config DT_HAS_ARM_CORTEX_M23_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M23)) + +DT_COMPAT_ARM_CORTEX_M3 := arm,cortex-m3 + +config DT_HAS_ARM_CORTEX_M3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M3)) + +DT_COMPAT_ARM_CORTEX_M33 := arm,cortex-m33 + +config DT_HAS_ARM_CORTEX_M33_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M33)) + +DT_COMPAT_ARM_CORTEX_M33F := arm,cortex-m33f + +config DT_HAS_ARM_CORTEX_M33F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M33F)) + +DT_COMPAT_ARM_CORTEX_M4 := arm,cortex-m4 + +config DT_HAS_ARM_CORTEX_M4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M4)) + +DT_COMPAT_ARM_CORTEX_M4F := arm,cortex-m4f + +config DT_HAS_ARM_CORTEX_M4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M4F)) + +DT_COMPAT_ARM_CORTEX_M52 := arm,cortex-m52 + +config DT_HAS_ARM_CORTEX_M52_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M52)) + +DT_COMPAT_ARM_CORTEX_M52F := arm,cortex-m52f + +config DT_HAS_ARM_CORTEX_M52F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M52F)) + +DT_COMPAT_ARM_CORTEX_M55 := arm,cortex-m55 + +config DT_HAS_ARM_CORTEX_M55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M55)) + +DT_COMPAT_ARM_CORTEX_M55F := arm,cortex-m55f + +config DT_HAS_ARM_CORTEX_M55F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M55F)) + +DT_COMPAT_ARM_CORTEX_M7 := arm,cortex-m7 + +config DT_HAS_ARM_CORTEX_M7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M7)) + +DT_COMPAT_ARM_CORTEX_M85 := arm,cortex-m85 + +config DT_HAS_ARM_CORTEX_M85_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M85)) + +DT_COMPAT_ARM_CORTEX_M85F := arm,cortex-m85f + +config DT_HAS_ARM_CORTEX_M85F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M85F)) + +DT_COMPAT_ARM_CORTEX_R4 := arm,cortex-r4 + +config DT_HAS_ARM_CORTEX_R4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R4)) + +DT_COMPAT_ARM_CORTEX_R4F := arm,cortex-r4f + +config DT_HAS_ARM_CORTEX_R4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R4F)) + +DT_COMPAT_ARM_CORTEX_R5 := arm,cortex-r5 + +config DT_HAS_ARM_CORTEX_R5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R5)) + +DT_COMPAT_ARM_CORTEX_R52 := arm,cortex-r52 + +config DT_HAS_ARM_CORTEX_R52_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R52)) + +DT_COMPAT_ARM_CORTEX_R5F := arm,cortex-r5f + +config DT_HAS_ARM_CORTEX_R5F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R5F)) + +DT_COMPAT_ARM_CORTEX_R7 := arm,cortex-r7 + +config DT_HAS_ARM_CORTEX_R7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R7)) + +DT_COMPAT_ARM_CORTEX_R8 := arm,cortex-r8 + +config DT_HAS_ARM_CORTEX_R8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R8)) + +DT_COMPAT_ARM_CORTEX_R82 := arm,cortex-r82 + +config DT_HAS_ARM_CORTEX_R82_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R82)) + +DT_COMPAT_ARM_CRYPTOCELL_310 := arm,cryptocell-310 + +config DT_HAS_ARM_CRYPTOCELL_310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CRYPTOCELL_310)) + +DT_COMPAT_ARM_CRYPTOCELL_312 := arm,cryptocell-312 + +config DT_HAS_ARM_CRYPTOCELL_312_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CRYPTOCELL_312)) + +DT_COMPAT_ARM_DMA_PL330 := arm,dma-pl330 + +config DT_HAS_ARM_DMA_PL330_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_DMA_PL330)) + +DT_COMPAT_ARM_DTCM := arm,dtcm + +config DT_HAS_ARM_DTCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_DTCM)) + +DT_COMPAT_ARM_ETHOS_U := arm,ethos-u + +config DT_HAS_ARM_ETHOS_U_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ETHOS_U)) + +DT_COMPAT_ARM_GIC := arm,gic + +config DT_HAS_ARM_GIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC)) + +DT_COMPAT_ARM_GIC_V1 := arm,gic-v1 + +config DT_HAS_ARM_GIC_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V1)) + +DT_COMPAT_ARM_GIC_V2 := arm,gic-v2 + +config DT_HAS_ARM_GIC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V2)) + +DT_COMPAT_ARM_GIC_V3 := arm,gic-v3 + +config DT_HAS_ARM_GIC_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V3)) + +DT_COMPAT_ARM_GIC_V3_ITS := arm,gic-v3-its + +config DT_HAS_ARM_GIC_V3_ITS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V3_ITS)) + +DT_COMPAT_ARM_ITCM := arm,itcm + +config DT_HAS_ARM_ITCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ITCM)) + +DT_COMPAT_ARM_MHU := arm,mhu + +config DT_HAS_ARM_MHU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MHU)) + +DT_COMPAT_ARM_MHUV3 := arm,mhuv3 + +config DT_HAS_ARM_MHUV3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MHUV3)) + +DT_COMPAT_ARM_MMIO32_GPIO := arm,mmio32-gpio + +config DT_HAS_ARM_MMIO32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MMIO32_GPIO)) + +DT_COMPAT_ARM_MPS2_PINCTRL := arm,mps2-pinctrl + +config DT_HAS_ARM_MPS2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS2_PINCTRL)) + +DT_COMPAT_ARM_MPS3_PINCTRL := arm,mps3-pinctrl + +config DT_HAS_ARM_MPS3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS3_PINCTRL)) + +DT_COMPAT_ARM_MPS4_PINCTRL := arm,mps4-pinctrl + +config DT_HAS_ARM_MPS4_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS4_PINCTRL)) + +DT_COMPAT_ARM_PL011 := arm,pl011 + +config DT_HAS_ARM_PL011_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PL011)) + +DT_COMPAT_ARM_PL022 := arm,pl022 + +config DT_HAS_ARM_PL022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PL022)) + +DT_COMPAT_ARM_PSCI_0_2 := arm,psci-0.2 + +config DT_HAS_ARM_PSCI_0_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PSCI_0_2)) + +DT_COMPAT_ARM_PSCI_1_1 := arm,psci-1.1 + +config DT_HAS_ARM_PSCI_1_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PSCI_1_1)) + +DT_COMPAT_ARM_SBSA_UART := arm,sbsa-uart + +config DT_HAS_ARM_SBSA_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SBSA_UART)) + +DT_COMPAT_ARM_SCC := arm,scc + +config DT_HAS_ARM_SCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCC)) + +DT_COMPAT_ARM_SCMI := arm,scmi + +config DT_HAS_ARM_SCMI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI)) + +DT_COMPAT_ARM_SCMI_CLOCK := arm,scmi-clock + +config DT_HAS_ARM_SCMI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_CLOCK)) + +DT_COMPAT_ARM_SCMI_PINCTRL := arm,scmi-pinctrl + +config DT_HAS_ARM_SCMI_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_PINCTRL)) + +DT_COMPAT_ARM_SCMI_POWER := arm,scmi-power + +config DT_HAS_ARM_SCMI_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_POWER)) + +DT_COMPAT_ARM_SCMI_SHMEM := arm,scmi-shmem + +config DT_HAS_ARM_SCMI_SHMEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_SHMEM)) + +DT_COMPAT_ARM_V2M_BEETLE_PINCTRL := arm,v2m_beetle-pinctrl + +config DT_HAS_ARM_V2M_BEETLE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V2M_BEETLE_PINCTRL)) + +DT_COMPAT_ARM_V6M_NVIC := arm,v6m-nvic + +config DT_HAS_ARM_V6M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V6M_NVIC)) + +DT_COMPAT_ARM_V7M_NVIC := arm,v7m-nvic + +config DT_HAS_ARM_V7M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V7M_NVIC)) + +DT_COMPAT_ARM_V8_1M_NVIC := arm,v8.1m-nvic + +config DT_HAS_ARM_V8_1M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V8_1M_NVIC)) + +DT_COMPAT_ARM_V8M_NVIC := arm,v8m-nvic + +config DT_HAS_ARM_V8M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V8M_NVIC)) + +DT_COMPAT_ARM_VERSATILE_I2C := arm,versatile-i2c + +config DT_HAS_ARM_VERSATILE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_VERSATILE_I2C)) + +DT_COMPAT_ASAHI_KASEI_AK8975 := asahi-kasei,ak8975 + +config DT_HAS_ASAHI_KASEI_AK8975_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASAHI_KASEI_AK8975)) + +DT_COMPAT_ASAHI_KASEI_AKM09918C := asahi-kasei,akm09918c + +config DT_HAS_ASAHI_KASEI_AKM09918C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASAHI_KASEI_AKM09918C)) + +DT_COMPAT_ASMEDIA_ASM2364 := asmedia,asm2364 + +config DT_HAS_ASMEDIA_ASM2364_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASMEDIA_ASM2364)) + +DT_COMPAT_ASPEED_AST10X0_CLOCK := aspeed,ast10x0-clock + +config DT_HAS_ASPEED_AST10X0_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASPEED_AST10X0_CLOCK)) + +DT_COMPAT_ASPEED_AST10X0_RESET := aspeed,ast10x0-reset + +config DT_HAS_ASPEED_AST10X0_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASPEED_AST10X0_RESET)) + +DT_COMPAT_ATMEL_AT24 := atmel,at24 + +config DT_HAS_ATMEL_AT24_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT24)) + +DT_COMPAT_ATMEL_AT24MAC402 := atmel,at24mac402 + +config DT_HAS_ATMEL_AT24MAC402_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT24MAC402)) + +DT_COMPAT_ATMEL_AT25 := atmel,at25 + +config DT_HAS_ATMEL_AT25_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT25)) + +DT_COMPAT_ATMEL_AT25XV021A := atmel,at25xv021a + +config DT_HAS_ATMEL_AT25XV021A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT25XV021A)) + +DT_COMPAT_ATMEL_AT45 := atmel,at45 + +config DT_HAS_ATMEL_AT45_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT45)) + +DT_COMPAT_ATMEL_ATAES132A := atmel,ataes132a + +config DT_HAS_ATMEL_ATAES132A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_ATAES132A)) + +DT_COMPAT_ATMEL_RF2XX := atmel,rf2xx + +config DT_HAS_ATMEL_RF2XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_RF2XX)) + +DT_COMPAT_ATMEL_SAM_ADC := atmel,sam-adc + +config DT_HAS_ATMEL_SAM_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_ADC)) + +DT_COMPAT_ATMEL_SAM_AFEC := atmel,sam-afec + +config DT_HAS_ATMEL_SAM_AFEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_AFEC)) + +DT_COMPAT_ATMEL_SAM_CAN := atmel,sam-can + +config DT_HAS_ATMEL_SAM_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_CAN)) + +DT_COMPAT_ATMEL_SAM_DAC := atmel,sam-dac + +config DT_HAS_ATMEL_SAM_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_DAC)) + +DT_COMPAT_ATMEL_SAM_FLASH := atmel,sam-flash + +config DT_HAS_ATMEL_SAM_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_FLASH)) + +DT_COMPAT_ATMEL_SAM_FLASH_CONTROLLER := atmel,sam-flash-controller + +config DT_HAS_ATMEL_SAM_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_FLASH_CONTROLLER)) + +DT_COMPAT_ATMEL_SAM_GMAC := atmel,sam-gmac + +config DT_HAS_ATMEL_SAM_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_GMAC)) + +DT_COMPAT_ATMEL_SAM_GPIO := atmel,sam-gpio + +config DT_HAS_ATMEL_SAM_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_GPIO)) + +DT_COMPAT_ATMEL_SAM_HSMCI := atmel,sam-hsmci + +config DT_HAS_ATMEL_SAM_HSMCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_HSMCI)) + +DT_COMPAT_ATMEL_SAM_I2C_TWI := atmel,sam-i2c-twi + +config DT_HAS_ATMEL_SAM_I2C_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWI)) + +DT_COMPAT_ATMEL_SAM_I2C_TWIHS := atmel,sam-i2c-twihs + +config DT_HAS_ATMEL_SAM_I2C_TWIHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWIHS)) + +DT_COMPAT_ATMEL_SAM_I2C_TWIM := atmel,sam-i2c-twim + +config DT_HAS_ATMEL_SAM_I2C_TWIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWIM)) + +DT_COMPAT_ATMEL_SAM_MDIO := atmel,sam-mdio + +config DT_HAS_ATMEL_SAM_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_MDIO)) + +DT_COMPAT_ATMEL_SAM_PINCTRL := atmel,sam-pinctrl + +config DT_HAS_ATMEL_SAM_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PINCTRL)) + +DT_COMPAT_ATMEL_SAM_PMC := atmel,sam-pmc + +config DT_HAS_ATMEL_SAM_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PMC)) + +DT_COMPAT_ATMEL_SAM_PWM := atmel,sam-pwm + +config DT_HAS_ATMEL_SAM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PWM)) + +DT_COMPAT_ATMEL_SAM_RSTC := atmel,sam-rstc + +config DT_HAS_ATMEL_SAM_RSTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_RSTC)) + +DT_COMPAT_ATMEL_SAM_RTC := atmel,sam-rtc + +config DT_HAS_ATMEL_SAM_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_RTC)) + +DT_COMPAT_ATMEL_SAM_SMC := atmel,sam-smc + +config DT_HAS_ATMEL_SAM_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SMC)) + +DT_COMPAT_ATMEL_SAM_SPI := atmel,sam-spi + +config DT_HAS_ATMEL_SAM_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SPI)) + +DT_COMPAT_ATMEL_SAM_SSC := atmel,sam-ssc + +config DT_HAS_ATMEL_SAM_SSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SSC)) + +DT_COMPAT_ATMEL_SAM_SUPC := atmel,sam-supc + +config DT_HAS_ATMEL_SAM_SUPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SUPC)) + +DT_COMPAT_ATMEL_SAM_TC := atmel,sam-tc + +config DT_HAS_ATMEL_SAM_TC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC)) + +DT_COMPAT_ATMEL_SAM_TC_QDEC := atmel,sam-tc-qdec + +config DT_HAS_ATMEL_SAM_TC_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC_QDEC)) + +DT_COMPAT_ATMEL_SAM_TRNG := atmel,sam-trng + +config DT_HAS_ATMEL_SAM_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TRNG)) + +DT_COMPAT_ATMEL_SAM_UART := atmel,sam-uart + +config DT_HAS_ATMEL_SAM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_UART)) + +DT_COMPAT_ATMEL_SAM_USART := atmel,sam-usart + +config DT_HAS_ATMEL_SAM_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USART)) + +DT_COMPAT_ATMEL_SAM_USBC := atmel,sam-usbc + +config DT_HAS_ATMEL_SAM_USBC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USBC)) + +DT_COMPAT_ATMEL_SAM_USBHS := atmel,sam-usbhs + +config DT_HAS_ATMEL_SAM_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USBHS)) + +DT_COMPAT_ATMEL_SAM_WATCHDOG := atmel,sam-watchdog + +config DT_HAS_ATMEL_SAM_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_WATCHDOG)) + +DT_COMPAT_ATMEL_SAM_XDMAC := atmel,sam-xdmac + +config DT_HAS_ATMEL_SAM_XDMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_XDMAC)) + +DT_COMPAT_ATMEL_SAM0_ADC := atmel,sam0-adc + +config DT_HAS_ATMEL_SAM0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_ADC)) + +DT_COMPAT_ATMEL_SAM0_CAN := atmel,sam0-can + +config DT_HAS_ATMEL_SAM0_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_CAN)) + +DT_COMPAT_ATMEL_SAM0_DAC := atmel,sam0-dac + +config DT_HAS_ATMEL_SAM0_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_DAC)) + +DT_COMPAT_ATMEL_SAM0_DMAC := atmel,sam0-dmac + +config DT_HAS_ATMEL_SAM0_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_DMAC)) + +DT_COMPAT_ATMEL_SAM0_EIC := atmel,sam0-eic + +config DT_HAS_ATMEL_SAM0_EIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_EIC)) + +DT_COMPAT_ATMEL_SAM0_GCLK := atmel,sam0-gclk + +config DT_HAS_ATMEL_SAM0_GCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GCLK)) + +DT_COMPAT_ATMEL_SAM0_GMAC := atmel,sam0-gmac + +config DT_HAS_ATMEL_SAM0_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GMAC)) + +DT_COMPAT_ATMEL_SAM0_GPIO := atmel,sam0-gpio + +config DT_HAS_ATMEL_SAM0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GPIO)) + +DT_COMPAT_ATMEL_SAM0_I2C := atmel,sam0-i2c + +config DT_HAS_ATMEL_SAM0_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_I2C)) + +DT_COMPAT_ATMEL_SAM0_ID := atmel,sam0-id + +config DT_HAS_ATMEL_SAM0_ID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_ID)) + +DT_COMPAT_ATMEL_SAM0_MCLK := atmel,sam0-mclk + +config DT_HAS_ATMEL_SAM0_MCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_MCLK)) + +DT_COMPAT_ATMEL_SAM0_NVMCTRL := atmel,sam0-nvmctrl + +config DT_HAS_ATMEL_SAM0_NVMCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_NVMCTRL)) + +DT_COMPAT_ATMEL_SAM0_OSC32KCTRL := atmel,sam0-osc32kctrl + +config DT_HAS_ATMEL_SAM0_OSC32KCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_OSC32KCTRL)) + +DT_COMPAT_ATMEL_SAM0_PINCTRL := atmel,sam0-pinctrl + +config DT_HAS_ATMEL_SAM0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_PINCTRL)) + +DT_COMPAT_ATMEL_SAM0_PINMUX := atmel,sam0-pinmux + +config DT_HAS_ATMEL_SAM0_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_PINMUX)) + +DT_COMPAT_ATMEL_SAM0_RTC := atmel,sam0-rtc + +config DT_HAS_ATMEL_SAM0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_RTC)) + +DT_COMPAT_ATMEL_SAM0_SERCOM := atmel,sam0-sercom + +config DT_HAS_ATMEL_SAM0_SERCOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_SERCOM)) + +DT_COMPAT_ATMEL_SAM0_SPI := atmel,sam0-spi + +config DT_HAS_ATMEL_SAM0_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_SPI)) + +DT_COMPAT_ATMEL_SAM0_TC_PWM := atmel,sam0-tc-pwm + +config DT_HAS_ATMEL_SAM0_TC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TC_PWM)) + +DT_COMPAT_ATMEL_SAM0_TC32 := atmel,sam0-tc32 + +config DT_HAS_ATMEL_SAM0_TC32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TC32)) + +DT_COMPAT_ATMEL_SAM0_TCC_PWM := atmel,sam0-tcc-pwm + +config DT_HAS_ATMEL_SAM0_TCC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TCC_PWM)) + +DT_COMPAT_ATMEL_SAM0_UART := atmel,sam0-uart + +config DT_HAS_ATMEL_SAM0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_UART)) + +DT_COMPAT_ATMEL_SAM0_USB := atmel,sam0-usb + +config DT_HAS_ATMEL_SAM0_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_USB)) + +DT_COMPAT_ATMEL_SAM0_WATCHDOG := atmel,sam0-watchdog + +config DT_HAS_ATMEL_SAM0_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_WATCHDOG)) + +DT_COMPAT_ATMEL_SAM4L_FLASHCALW_CONTROLLER := atmel,sam4l-flashcalw-controller + +config DT_HAS_ATMEL_SAM4L_FLASHCALW_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_FLASHCALW_CONTROLLER)) + +DT_COMPAT_ATMEL_SAM4L_GPIO := atmel,sam4l-gpio + +config DT_HAS_ATMEL_SAM4L_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_GPIO)) + +DT_COMPAT_ATMEL_SAM4L_UID := atmel,sam4l-uid + +config DT_HAS_ATMEL_SAM4L_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_UID)) + +DT_COMPAT_ATMEL_SAM4L_WATCHDOG := atmel,sam4l-watchdog + +config DT_HAS_ATMEL_SAM4L_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_WATCHDOG)) + +DT_COMPAT_ATMEL_SAMD5X_DAC := atmel,samd5x-dac + +config DT_HAS_ATMEL_SAMD5X_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMD5X_DAC)) + +DT_COMPAT_ATMEL_WINC1500 := atmel,winc1500 + +config DT_HAS_ATMEL_WINC1500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_WINC1500)) + +DT_COMPAT_ATMEL_XPLAINED_HEADER := atmel-xplained-header + +config DT_HAS_ATMEL_XPLAINED_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_XPLAINED_HEADER)) + +DT_COMPAT_ATMEL_XPLAINED_PRO_HEADER := atmel-xplained-pro-header + +config DT_HAS_ATMEL_XPLAINED_PRO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_XPLAINED_PRO_HEADER)) + +DT_COMPAT_AVAGO_APDS9253 := avago,apds9253 + +config DT_HAS_AVAGO_APDS9253_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9253)) + +DT_COMPAT_AVAGO_APDS9306 := avago,apds9306 + +config DT_HAS_AVAGO_APDS9306_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9306)) + +DT_COMPAT_AVAGO_APDS9960 := avago,apds9960 + +config DT_HAS_AVAGO_APDS9960_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9960)) + +DT_COMPAT_AWINIC_AW9523B := awinic,aw9523b + +config DT_HAS_AWINIC_AW9523B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW9523B)) + +DT_COMPAT_AWINIC_AW9523B_GPIO := awinic,aw9523b-gpio + +config DT_HAS_AWINIC_AW9523B_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW9523B_GPIO)) + +DT_COMPAT_BFLB_BCLK := bflb,bclk + +config DT_HAS_BFLB_BCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BCLK)) + +DT_COMPAT_BFLB_BL60X_CLOCK_CONTROLLER := bflb,bl60x-clock-controller + +config DT_HAS_BFLB_BL60X_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL60X_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL60X_PLL := bflb,bl60x-pll + +config DT_HAS_BFLB_BL60X_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL60X_PLL)) + +DT_COMPAT_BFLB_BL60X_ROOT_CLK := bflb,bl60x-root-clk + +config DT_HAS_BFLB_BL60X_ROOT_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL60X_ROOT_CLK)) + +DT_COMPAT_BFLB_BL60X_70X_GPIO := bflb,bl60x_70x-gpio + +config DT_HAS_BFLB_BL60X_70X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL60X_70X_GPIO)) + +DT_COMPAT_BFLB_BL61X_AUPLL := bflb,bl61x-aupll + +config DT_HAS_BFLB_BL61X_AUPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_AUPLL)) + +DT_COMPAT_BFLB_BL61X_CLOCK_CONTROLLER := bflb,bl61x-clock-controller + +config DT_HAS_BFLB_BL61X_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL61X_FLASH_CLK := bflb,bl61x-flash-clk + +config DT_HAS_BFLB_BL61X_FLASH_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_FLASH_CLK)) + +DT_COMPAT_BFLB_BL61X_GPIO := bflb,bl61x-gpio + +config DT_HAS_BFLB_BL61X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_GPIO)) + +DT_COMPAT_BFLB_BL61X_PSRAM := bflb,bl61x-psram + +config DT_HAS_BFLB_BL61X_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_PSRAM)) + +DT_COMPAT_BFLB_BL61X_ROOT_CLK := bflb,bl61x-root-clk + +config DT_HAS_BFLB_BL61X_ROOT_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_ROOT_CLK)) + +DT_COMPAT_BFLB_BL61X_WIFIPLL := bflb,bl61x-wifipll + +config DT_HAS_BFLB_BL61X_WIFIPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_WIFIPLL)) + +DT_COMPAT_BFLB_BL70X_CLOCK_CONTROLLER := bflb,bl70x-clock-controller + +config DT_HAS_BFLB_BL70X_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL70X_DLL := bflb,bl70x-dll + +config DT_HAS_BFLB_BL70X_DLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_DLL)) + +DT_COMPAT_BFLB_BL70X_ROOT_CLK := bflb,bl70x-root-clk + +config DT_HAS_BFLB_BL70X_ROOT_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_ROOT_CLK)) + +DT_COMPAT_BFLB_CLOCK_CONTROLLER := bflb,clock-controller + +config DT_HAS_BFLB_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_DMA := bflb,dma + +config DT_HAS_BFLB_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_DMA)) + +DT_COMPAT_BFLB_EFUSE := bflb,efuse + +config DT_HAS_BFLB_EFUSE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_EFUSE)) + +DT_COMPAT_BFLB_FLASH_CONTROLLER := bflb,flash-controller + +config DT_HAS_BFLB_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_FLASH_CONTROLLER)) + +DT_COMPAT_BFLB_L1C := bflb,l1c + +config DT_HAS_BFLB_L1C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_L1C)) + +DT_COMPAT_BFLB_PINCTRL := bflb,pinctrl + +config DT_HAS_BFLB_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_PINCTRL)) + +DT_COMPAT_BFLB_UART := bflb,uart + +config DT_HAS_BFLB_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_UART)) + +DT_COMPAT_BOSCH_BMA280 := bosch,bma280 + +config DT_HAS_BOSCH_BMA280_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMA280)) + +DT_COMPAT_BOSCH_BMA4XX := bosch,bma4xx + +config DT_HAS_BOSCH_BMA4XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMA4XX)) + +DT_COMPAT_BOSCH_BMC150_MAGN := bosch,bmc150_magn + +config DT_HAS_BOSCH_BMC150_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMC150_MAGN)) + +DT_COMPAT_BOSCH_BME280 := bosch,bme280 + +config DT_HAS_BOSCH_BME280_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BME280)) + +DT_COMPAT_BOSCH_BME680 := bosch,bme680 + +config DT_HAS_BOSCH_BME680_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BME680)) + +DT_COMPAT_BOSCH_BMG160 := bosch,bmg160 + +config DT_HAS_BOSCH_BMG160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMG160)) + +DT_COMPAT_BOSCH_BMI08X_ACCEL := bosch,bmi08x-accel + +config DT_HAS_BOSCH_BMI08X_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI08X_ACCEL)) + +DT_COMPAT_BOSCH_BMI08X_GYRO := bosch,bmi08x-gyro + +config DT_HAS_BOSCH_BMI08X_GYRO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI08X_GYRO)) + +DT_COMPAT_BOSCH_BMI160 := bosch,bmi160 + +config DT_HAS_BOSCH_BMI160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI160)) + +DT_COMPAT_BOSCH_BMI270 := bosch,bmi270 + +config DT_HAS_BOSCH_BMI270_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI270)) + +DT_COMPAT_BOSCH_BMI323 := bosch,bmi323 + +config DT_HAS_BOSCH_BMI323_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI323)) + +DT_COMPAT_BOSCH_BMM150 := bosch,bmm150 + +config DT_HAS_BOSCH_BMM150_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMM150)) + +DT_COMPAT_BOSCH_BMM350 := bosch,bmm350 + +config DT_HAS_BOSCH_BMM350_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMM350)) + +DT_COMPAT_BOSCH_BMP180 := bosch,bmp180 + +config DT_HAS_BOSCH_BMP180_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP180)) + +DT_COMPAT_BOSCH_BMP388 := bosch,bmp388 + +config DT_HAS_BOSCH_BMP388_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP388)) + +DT_COMPAT_BOSCH_BMP390 := bosch,bmp390 + +config DT_HAS_BOSCH_BMP390_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP390)) + +DT_COMPAT_BOSCH_BMP581 := bosch,bmp581 + +config DT_HAS_BOSCH_BMP581_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP581)) + +DT_COMPAT_BRCM_AFBR_S50 := brcm,afbr-s50 + +config DT_HAS_BRCM_AFBR_S50_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_AFBR_S50)) + +DT_COMPAT_BRCM_BCM2711_AUX_UART := brcm,bcm2711-aux-uart + +config DT_HAS_BRCM_BCM2711_AUX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_AUX_UART)) + +DT_COMPAT_BRCM_BCM2711_GPIO := brcm,bcm2711-gpio + +config DT_HAS_BRCM_BCM2711_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_GPIO)) + +DT_COMPAT_BRCM_BRCMSTB_GPIO := brcm,brcmstb-gpio + +config DT_HAS_BRCM_BRCMSTB_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BRCMSTB_GPIO)) + +DT_COMPAT_BRCM_BRCMSTB_PCIE := brcm,brcmstb-pcie + +config DT_HAS_BRCM_BRCMSTB_PCIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BRCMSTB_PCIE)) + +DT_COMPAT_BRCM_IPROC_GPIO := brcm,iproc-gpio + +config DT_HAS_BRCM_IPROC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_GPIO)) + +DT_COMPAT_BRCM_IPROC_I2C := brcm,iproc-i2c + +config DT_HAS_BRCM_IPROC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_I2C)) + +DT_COMPAT_BRCM_IPROC_PAX_DMA_V1 := brcm,iproc-pax-dma-v1 + +config DT_HAS_BRCM_IPROC_PAX_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PAX_DMA_V1)) + +DT_COMPAT_BRCM_IPROC_PAX_DMA_V2 := brcm,iproc-pax-dma-v2 + +config DT_HAS_BRCM_IPROC_PAX_DMA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PAX_DMA_V2)) + +DT_COMPAT_BRCM_IPROC_PCIE_EP := brcm,iproc-pcie-ep + +config DT_HAS_BRCM_IPROC_PCIE_EP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PCIE_EP)) + +DT_COMPAT_BRCM_IPROC_RNG200 := brcm,iproc-rng200 + +config DT_HAS_BRCM_IPROC_RNG200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_RNG200)) + +DT_COMPAT_CAN_TRANSCEIVER_GPIO := can-transceiver-gpio + +config DT_HAS_CAN_TRANSCEIVER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CAN_TRANSCEIVER_GPIO)) + +DT_COMPAT_CDNS_I2C := cdns,i2c + +config DT_HAS_CDNS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_I2C)) + +DT_COMPAT_CDNS_I3C := cdns,i3c + +config DT_HAS_CDNS_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_I3C)) + +DT_COMPAT_CDNS_NAND := cdns,nand + +config DT_HAS_CDNS_NAND_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_NAND)) + +DT_COMPAT_CDNS_QSPI_NOR := cdns,qspi-nor + +config DT_HAS_CDNS_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_QSPI_NOR)) + +DT_COMPAT_CDNS_SDHC := cdns,sdhc + +config DT_HAS_CDNS_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SDHC)) + +DT_COMPAT_CDNS_SPI := cdns,spi + +config DT_HAS_CDNS_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SPI)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX3 := cdns,tensilica-xtensa-lx3 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX3)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX4 := cdns,tensilica-xtensa-lx4 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX4)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX6 := cdns,tensilica-xtensa-lx6 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX6)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX7 := cdns,tensilica-xtensa-lx7 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX7)) + +DT_COMPAT_CDNS_UART := cdns,uart + +config DT_HAS_CDNS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_UART)) + +DT_COMPAT_CDNS_XTENSA_CORE_INTC := cdns,xtensa-core-intc + +config DT_HAS_CDNS_XTENSA_CORE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_XTENSA_CORE_INTC)) + +DT_COMPAT_CHIPONE_CO5300 := chipone,co5300 + +config DT_HAS_CHIPONE_CO5300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPONE_CO5300)) + +DT_COMPAT_CHIPSEMI_CHSC5X := chipsemi,chsc5x + +config DT_HAS_CHIPSEMI_CHSC5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPSEMI_CHSC5X)) + +DT_COMPAT_CHIPSEMI_CHSC6X := chipsemi,chsc6x + +config DT_HAS_CHIPSEMI_CHSC6X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPSEMI_CHSC6X)) + +DT_COMPAT_CIRQUE_PINNACLE := cirque,pinnacle + +config DT_HAS_CIRQUE_PINNACLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRQUE_PINNACLE)) + +DT_COMPAT_CIRRUS_CP9314 := cirrus,cp9314 + +config DT_HAS_CIRRUS_CP9314_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CP9314)) + +DT_COMPAT_CIRRUS_CS43L22 := cirrus,cs43l22 + +config DT_HAS_CIRRUS_CS43L22_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CS43L22)) + +DT_COMPAT_CIRRUS_CS47L63 := cirrus,cs47l63 + +config DT_HAS_CIRRUS_CS47L63_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CS47L63)) + +DT_COMPAT_CURRENT_SENSE_AMPLIFIER := current-sense-amplifier + +config DT_HAS_CURRENT_SENSE_AMPLIFIER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CURRENT_SENSE_AMPLIFIER)) + +DT_COMPAT_CURRENT_SENSE_SHUNT := current-sense-shunt + +config DT_HAS_CURRENT_SENSE_SHUNT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CURRENT_SENSE_SHUNT)) + +DT_COMPAT_CYPRESS_CY8C95XX_GPIO := cypress,cy8c95xx-gpio + +config DT_HAS_CYPRESS_CY8C95XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8C95XX_GPIO)) + +DT_COMPAT_CYPRESS_CY8C95XX_GPIO_PORT := cypress,cy8c95xx-gpio-port + +config DT_HAS_CYPRESS_CY8C95XX_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8C95XX_GPIO_PORT)) + +DT_COMPAT_CYPRESS_CY8CMBR3XXX := cypress,cy8cmbr3xxx + +config DT_HAS_CYPRESS_CY8CMBR3XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8CMBR3XXX)) + +DT_COMPAT_CYPRESS_PSOC6_FLASH_CONTROLLER := cypress,psoc6-flash-controller + +config DT_HAS_CYPRESS_PSOC6_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_FLASH_CONTROLLER)) + +DT_COMPAT_CYPRESS_PSOC6_GPIO := cypress,psoc6-gpio + +config DT_HAS_CYPRESS_PSOC6_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_GPIO)) + +DT_COMPAT_CYPRESS_PSOC6_HSIOM := cypress,psoc6-hsiom + +config DT_HAS_CYPRESS_PSOC6_HSIOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_HSIOM)) + +DT_COMPAT_CYPRESS_PSOC6_INTMUX := cypress,psoc6-intmux + +config DT_HAS_CYPRESS_PSOC6_INTMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_INTMUX)) + +DT_COMPAT_CYPRESS_PSOC6_INTMUX_CH := cypress,psoc6-intmux-ch + +config DT_HAS_CYPRESS_PSOC6_INTMUX_CH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_INTMUX_CH)) + +DT_COMPAT_CYPRESS_PSOC6_SPI := cypress,psoc6-spi + +config DT_HAS_CYPRESS_PSOC6_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_SPI)) + +DT_COMPAT_CYPRESS_PSOC6_UART := cypress,psoc6-uart + +config DT_HAS_CYPRESS_PSOC6_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_UART)) + +DT_COMPAT_CYPRESS_PSOC6_UID := cypress,psoc6-uid + +config DT_HAS_CYPRESS_PSOC6_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_UID)) + +DT_COMPAT_DAC_LEDS := dac-leds + +config DT_HAS_DAC_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DAC_LEDS)) + +DT_COMPAT_DAVICOM_DM8806_PHY := davicom,dm8806-phy + +config DT_HAS_DAVICOM_DM8806_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DAVICOM_DM8806_PHY)) + +DT_COMPAT_DECAWAVE_DW1000 := decawave,dw1000 + +config DT_HAS_DECAWAVE_DW1000_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DECAWAVE_DW1000)) + +DT_COMPAT_DFROBOT_A01NYUB := dfrobot,a01nyub + +config DT_HAS_DFROBOT_A01NYUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DFROBOT_A01NYUB)) + +DT_COMPAT_DIGILENT_PMOD := digilent,pmod + +config DT_HAS_DIGILENT_PMOD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DIGILENT_PMOD)) + +DT_COMPAT_DIODES_PI3USB9201 := diodes,pi3usb9201 + +config DT_HAS_DIODES_PI3USB9201_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DIODES_PI3USB9201)) + +DT_COMPAT_DLG_DA7212 := dlg,da7212 + +config DT_HAS_DLG_DA7212_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DLG_DA7212)) + +DT_COMPAT_EFINIX_SAPPHIRE_GPIO := efinix,sapphire-gpio + +config DT_HAS_EFINIX_SAPPHIRE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_GPIO)) + +DT_COMPAT_EFINIX_SAPPHIRE_TIMER0 := efinix,sapphire-timer0 + +config DT_HAS_EFINIX_SAPPHIRE_TIMER0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_TIMER0)) + +DT_COMPAT_EFINIX_SAPPHIRE_UART0 := efinix,sapphire-uart0 + +config DT_HAS_EFINIX_SAPPHIRE_UART0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_UART0)) + +DT_COMPAT_EFINIX_VEXRISCV_SAPPHIRE := efinix,vexriscv-sapphire + +config DT_HAS_EFINIX_VEXRISCV_SAPPHIRE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_VEXRISCV_SAPPHIRE)) + +DT_COMPAT_EGIS_ET171_SPI := egis,et171-spi + +config DT_HAS_EGIS_ET171_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EGIS_ET171_SPI)) + +DT_COMPAT_ENE_KB106X_ADC := ene,kb106x-adc + +config DT_HAS_ENE_KB106X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_ADC)) + +DT_COMPAT_ENE_KB106X_GCFG := ene,kb106x-gcfg + +config DT_HAS_ENE_KB106X_GCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_GCFG)) + +DT_COMPAT_ENE_KB106X_GPIO := ene,kb106x-gpio + +config DT_HAS_ENE_KB106X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_GPIO)) + +DT_COMPAT_ENE_KB106X_PINCTRL := ene,kb106x-pinctrl + +config DT_HAS_ENE_KB106X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_PINCTRL)) + +DT_COMPAT_ENE_KB106X_PWM := ene,kb106x-pwm + +config DT_HAS_ENE_KB106X_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_PWM)) + +DT_COMPAT_ENE_KB106X_UART := ene,kb106x-uart + +config DT_HAS_ENE_KB106X_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_UART)) + +DT_COMPAT_ENE_KB106X_WATCHDOG := ene,kb106x-watchdog + +config DT_HAS_ENE_KB106X_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_WATCHDOG)) + +DT_COMPAT_ENE_KB1200_ADC := ene,kb1200-adc + +config DT_HAS_ENE_KB1200_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_ADC)) + +DT_COMPAT_ENE_KB1200_GCFG := ene,kb1200-gcfg + +config DT_HAS_ENE_KB1200_GCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_GCFG)) + +DT_COMPAT_ENE_KB1200_GPIO := ene,kb1200-gpio + +config DT_HAS_ENE_KB1200_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_GPIO)) + +DT_COMPAT_ENE_KB1200_I2C := ene,kb1200-i2c + +config DT_HAS_ENE_KB1200_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_I2C)) + +DT_COMPAT_ENE_KB1200_PINCTRL := ene,kb1200-pinctrl + +config DT_HAS_ENE_KB1200_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PINCTRL)) + +DT_COMPAT_ENE_KB1200_PMU := ene,kb1200-pmu + +config DT_HAS_ENE_KB1200_PMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PMU)) + +DT_COMPAT_ENE_KB1200_PWM := ene,kb1200-pwm + +config DT_HAS_ENE_KB1200_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PWM)) + +DT_COMPAT_ENE_KB1200_TACH := ene,kb1200-tach + +config DT_HAS_ENE_KB1200_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_TACH)) + +DT_COMPAT_ENE_KB1200_UART := ene,kb1200-uart + +config DT_HAS_ENE_KB1200_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_UART)) + +DT_COMPAT_ENE_KB1200_WATCHDOG := ene,kb1200-watchdog + +config DT_HAS_ENE_KB1200_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_WATCHDOG)) + +DT_COMPAT_EPCOS_B57861S0103A039 := epcos,b57861s0103a039 + +config DT_HAS_EPCOS_B57861S0103A039_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EPCOS_B57861S0103A039)) + +DT_COMPAT_EPSON_RX8130CE_RTC := epson,rx8130ce-rtc + +config DT_HAS_EPSON_RX8130CE_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EPSON_RX8130CE_RTC)) + +DT_COMPAT_ESPRESSIF_ESP_AT := espressif,esp-at + +config DT_HAS_ESPRESSIF_ESP_AT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP_AT)) + +DT_COMPAT_ESPRESSIF_ESP_HOSTED := espressif,esp-hosted + +config DT_HAS_ESPRESSIF_ESP_HOSTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP_HOSTED)) + +DT_COMPAT_ESPRESSIF_ESP32_ADC := espressif,esp32-adc + +config DT_HAS_ESPRESSIF_ESP32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_ADC)) + +DT_COMPAT_ESPRESSIF_ESP32_AES := espressif,esp32-aes + +config DT_HAS_ESPRESSIF_ESP32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_AES)) + +DT_COMPAT_ESPRESSIF_ESP32_BT_HCI := espressif,esp32-bt-hci + +config DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_BT_HCI)) + +DT_COMPAT_ESPRESSIF_ESP32_CLOCK := espressif,esp32-clock + +config DT_HAS_ESPRESSIF_ESP32_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_CLOCK)) + +DT_COMPAT_ESPRESSIF_ESP32_COUNTER := espressif,esp32-counter + +config DT_HAS_ESPRESSIF_ESP32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_COUNTER)) + +DT_COMPAT_ESPRESSIF_ESP32_DAC := espressif,esp32-dac + +config DT_HAS_ESPRESSIF_ESP32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_DAC)) + +DT_COMPAT_ESPRESSIF_ESP32_ETH := espressif,esp32-eth + +config DT_HAS_ESPRESSIF_ESP32_ETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_ETH)) + +DT_COMPAT_ESPRESSIF_ESP32_FLASH_CONTROLLER := espressif,esp32-flash-controller + +config DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_FLASH_CONTROLLER)) + +DT_COMPAT_ESPRESSIF_ESP32_GDMA := espressif,esp32-gdma + +config DT_HAS_ESPRESSIF_ESP32_GDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_GDMA)) + +DT_COMPAT_ESPRESSIF_ESP32_GPIO := espressif,esp32-gpio + +config DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_GPIO)) + +DT_COMPAT_ESPRESSIF_ESP32_I2C := espressif,esp32-i2c + +config DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_I2C)) + +DT_COMPAT_ESPRESSIF_ESP32_I2S := espressif,esp32-i2s + +config DT_HAS_ESPRESSIF_ESP32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_I2S)) + +DT_COMPAT_ESPRESSIF_ESP32_IEEE802154 := espressif,esp32-ieee802154 + +config DT_HAS_ESPRESSIF_ESP32_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_IEEE802154)) + +DT_COMPAT_ESPRESSIF_ESP32_INTC := espressif,esp32-intc + +config DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_INTC)) + +DT_COMPAT_ESPRESSIF_ESP32_IPM := espressif,esp32-ipm + +config DT_HAS_ESPRESSIF_ESP32_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_IPM)) + +DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM := espressif,esp32-lcd-cam + +config DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM)) + +DT_COMPAT_ESPRESSIF_ESP32_LEDC := espressif,esp32-ledc + +config DT_HAS_ESPRESSIF_ESP32_LEDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LEDC)) + +DT_COMPAT_ESPRESSIF_ESP32_LPGPIO := espressif,esp32-lpgpio + +config DT_HAS_ESPRESSIF_ESP32_LPGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LPGPIO)) + +DT_COMPAT_ESPRESSIF_ESP32_LPUART := espressif,esp32-lpuart + +config DT_HAS_ESPRESSIF_ESP32_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LPUART)) + +DT_COMPAT_ESPRESSIF_ESP32_MCPWM := espressif,esp32-mcpwm + +config DT_HAS_ESPRESSIF_ESP32_MCPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_MCPWM)) + +DT_COMPAT_ESPRESSIF_ESP32_MDIO := espressif,esp32-mdio + +config DT_HAS_ESPRESSIF_ESP32_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_MDIO)) + +DT_COMPAT_ESPRESSIF_ESP32_PCNT := espressif,esp32-pcnt + +config DT_HAS_ESPRESSIF_ESP32_PCNT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PCNT)) + +DT_COMPAT_ESPRESSIF_ESP32_PINCTRL := espressif,esp32-pinctrl + +config DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PINCTRL)) + +DT_COMPAT_ESPRESSIF_ESP32_PSRAM := espressif,esp32-psram + +config DT_HAS_ESPRESSIF_ESP32_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PSRAM)) + +DT_COMPAT_ESPRESSIF_ESP32_RTC_TIMER := espressif,esp32-rtc-timer + +config DT_HAS_ESPRESSIF_ESP32_RTC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_RTC_TIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_SDHC := espressif,esp32-sdhc + +config DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SDHC)) + +DT_COMPAT_ESPRESSIF_ESP32_SDHC_SLOT := espressif,esp32-sdhc-slot + +config DT_HAS_ESPRESSIF_ESP32_SDHC_SLOT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SDHC_SLOT)) + +DT_COMPAT_ESPRESSIF_ESP32_SHA := espressif,esp32-sha + +config DT_HAS_ESPRESSIF_ESP32_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SHA)) + +DT_COMPAT_ESPRESSIF_ESP32_SPI := espressif,esp32-spi + +config DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SPI)) + +DT_COMPAT_ESPRESSIF_ESP32_SYSTIMER := espressif,esp32-systimer + +config DT_HAS_ESPRESSIF_ESP32_SYSTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SYSTIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_TEMP := espressif,esp32-temp + +config DT_HAS_ESPRESSIF_ESP32_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TEMP)) + +DT_COMPAT_ESPRESSIF_ESP32_TIMER := espressif,esp32-timer + +config DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_TOUCH := espressif,esp32-touch + +config DT_HAS_ESPRESSIF_ESP32_TOUCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TOUCH)) + +DT_COMPAT_ESPRESSIF_ESP32_TRNG := espressif,esp32-trng + +config DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TRNG)) + +DT_COMPAT_ESPRESSIF_ESP32_TWAI := espressif,esp32-twai + +config DT_HAS_ESPRESSIF_ESP32_TWAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TWAI)) + +DT_COMPAT_ESPRESSIF_ESP32_UART := espressif,esp32-uart + +config DT_HAS_ESPRESSIF_ESP32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_UART)) + +DT_COMPAT_ESPRESSIF_ESP32_USB_OTG := espressif,esp32-usb-otg + +config DT_HAS_ESPRESSIF_ESP32_USB_OTG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_USB_OTG)) + +DT_COMPAT_ESPRESSIF_ESP32_USB_SERIAL := espressif,esp32-usb-serial + +config DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_USB_SERIAL)) + +DT_COMPAT_ESPRESSIF_ESP32_WATCHDOG := espressif,esp32-watchdog + +config DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_WATCHDOG)) + +DT_COMPAT_ESPRESSIF_ESP32_WIFI := espressif,esp32-wifi + +config DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_WIFI)) + +DT_COMPAT_ESPRESSIF_ESP32_XT_WDT := espressif,esp32-xt-wdt + +config DT_HAS_ESPRESSIF_ESP32_XT_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_XT_WDT)) + +DT_COMPAT_ESPRESSIF_MBOX_ESP32 := espressif,mbox-esp32 + +config DT_HAS_ESPRESSIF_MBOX_ESP32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_MBOX_ESP32)) + +DT_COMPAT_ESPRESSIF_RISCV := espressif,riscv + +config DT_HAS_ESPRESSIF_RISCV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_RISCV)) + +DT_COMPAT_ESPRESSIF_XTENSA_LX6 := espressif,xtensa-lx6 + +config DT_HAS_ESPRESSIF_XTENSA_LX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_XTENSA_LX6)) + +DT_COMPAT_ESPRESSIF_XTENSA_LX7 := espressif,xtensa-lx7 + +config DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_XTENSA_LX7)) + +DT_COMPAT_ETHERNET_PHY := ethernet-phy + +config DT_HAS_ETHERNET_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ETHERNET_PHY)) + +DT_COMPAT_EVERLIGHT_ALS_PT19 := everlight,als-pt19 + +config DT_HAS_EVERLIGHT_ALS_PT19_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EVERLIGHT_ALS_PT19)) + +DT_COMPAT_FCS_FXL6408 := fcs,fxl6408 + +config DT_HAS_FCS_FXL6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FCS_FXL6408)) + +DT_COMPAT_FESTO_VEAA_X_3 := festo,veaa-x-3 + +config DT_HAS_FESTO_VEAA_X_3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FESTO_VEAA_X_3)) + +DT_COMPAT_FINTEK_F75303 := fintek,f75303 + +config DT_HAS_FINTEK_F75303_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FINTEK_F75303)) + +DT_COMPAT_FIXED_CLOCK := fixed-clock + +config DT_HAS_FIXED_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_CLOCK)) + +DT_COMPAT_FIXED_FACTOR_CLOCK := fixed-factor-clock + +config DT_HAS_FIXED_FACTOR_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_FACTOR_CLOCK)) + +DT_COMPAT_FIXED_LAYOUT := fixed-layout + +config DT_HAS_FIXED_LAYOUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_LAYOUT)) + +DT_COMPAT_FIXED_PARTITIONS := fixed-partitions + +config DT_HAS_FIXED_PARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_PARTITIONS)) + +DT_COMPAT_FIXED_SUBPARTITIONS := fixed-subpartitions + +config DT_HAS_FIXED_SUBPARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_SUBPARTITIONS)) + +DT_COMPAT_FOBE_QUILL_HEADER := fobe,quill-header + +config DT_HAS_FOBE_QUILL_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOBE_QUILL_HEADER)) + +DT_COMPAT_FOCALTECH_FT5336 := focaltech,ft5336 + +config DT_HAS_FOCALTECH_FT5336_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT5336)) + +DT_COMPAT_FRIDA_NT35510 := frida,nt35510 + +config DT_HAS_FRIDA_NT35510_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FRIDA_NT35510)) + +DT_COMPAT_FSL_IMX21_I2C := fsl,imx21-i2c + +config DT_HAS_FSL_IMX21_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FSL_IMX21_I2C)) + +DT_COMPAT_FSL_IMX27_PWM := fsl,imx27-pwm + +config DT_HAS_FSL_IMX27_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FSL_IMX27_PWM)) + +DT_COMPAT_FTDI_FT800 := ftdi,ft800 + +config DT_HAS_FTDI_FT800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FTDI_FT800)) + +DT_COMPAT_FUJITSU_MB85RCXX := fujitsu,mb85rcxx + +config DT_HAS_FUJITSU_MB85RCXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUJITSU_MB85RCXX)) + +DT_COMPAT_FUJITSU_MB85RSXX := fujitsu,mb85rsxx + +config DT_HAS_FUJITSU_MB85RSXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUJITSU_MB85RSXX)) + +DT_COMPAT_FUTABA_SBUS := futaba,sbus + +config DT_HAS_FUTABA_SBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUTABA_SBUS)) + +DT_COMPAT_GAISLER_APBUART := gaisler,apbuart + +config DT_HAS_GAISLER_APBUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_APBUART)) + +DT_COMPAT_GAISLER_GPTIMER := gaisler,gptimer + +config DT_HAS_GAISLER_GPTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_GPTIMER)) + +DT_COMPAT_GAISLER_GRGPIO := gaisler,grgpio + +config DT_HAS_GAISLER_GRGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_GRGPIO)) + +DT_COMPAT_GAISLER_IRQMP := gaisler,irqmp + +config DT_HAS_GAISLER_IRQMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_IRQMP)) + +DT_COMPAT_GAISLER_LEON3 := gaisler,leon3 + +config DT_HAS_GAISLER_LEON3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_LEON3)) + +DT_COMPAT_GAISLER_SPIMCTRL := gaisler,spimctrl + +config DT_HAS_GAISLER_SPIMCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_SPIMCTRL)) + +DT_COMPAT_GALAXYCORE_GC2145 := galaxycore,gc2145 + +config DT_HAS_GALAXYCORE_GC2145_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GALAXYCORE_GC2145)) + +DT_COMPAT_GALAXYCORE_GC9X01X := galaxycore,gc9x01x + +config DT_HAS_GALAXYCORE_GC9X01X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GALAXYCORE_GC9X01X)) + +DT_COMPAT_GD_GD32_ADC := gd,gd32-adc + +config DT_HAS_GD_GD32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_ADC)) + +DT_COMPAT_GD_GD32_AFIO := gd,gd32-afio + +config DT_HAS_GD_GD32_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_AFIO)) + +DT_COMPAT_GD_GD32_CCTL := gd,gd32-cctl + +config DT_HAS_GD_GD32_CCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_CCTL)) + +DT_COMPAT_GD_GD32_DAC := gd,gd32-dac + +config DT_HAS_GD_GD32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DAC)) + +DT_COMPAT_GD_GD32_DMA := gd,gd32-dma + +config DT_HAS_GD_GD32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DMA)) + +DT_COMPAT_GD_GD32_DMA_V1 := gd,gd32-dma-v1 + +config DT_HAS_GD_GD32_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DMA_V1)) + +DT_COMPAT_GD_GD32_EXTI := gd,gd32-exti + +config DT_HAS_GD_GD32_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_EXTI)) + +DT_COMPAT_GD_GD32_FLASH_CONTROLLER := gd,gd32-flash-controller + +config DT_HAS_GD_GD32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_FLASH_CONTROLLER)) + +DT_COMPAT_GD_GD32_FWDGT := gd,gd32-fwdgt + +config DT_HAS_GD_GD32_FWDGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_FWDGT)) + +DT_COMPAT_GD_GD32_GPIO := gd,gd32-gpio + +config DT_HAS_GD_GD32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_GPIO)) + +DT_COMPAT_GD_GD32_I2C := gd,gd32-i2c + +config DT_HAS_GD_GD32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_I2C)) + +DT_COMPAT_GD_GD32_NV_FLASH_V1 := gd,gd32-nv-flash-v1 + +config DT_HAS_GD_GD32_NV_FLASH_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V1)) + +DT_COMPAT_GD_GD32_NV_FLASH_V2 := gd,gd32-nv-flash-v2 + +config DT_HAS_GD_GD32_NV_FLASH_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V2)) + +DT_COMPAT_GD_GD32_NV_FLASH_V3 := gd,gd32-nv-flash-v3 + +config DT_HAS_GD_GD32_NV_FLASH_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V3)) + +DT_COMPAT_GD_GD32_PINCTRL_AF := gd,gd32-pinctrl-af + +config DT_HAS_GD_GD32_PINCTRL_AF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PINCTRL_AF)) + +DT_COMPAT_GD_GD32_PINCTRL_AFIO := gd,gd32-pinctrl-afio + +config DT_HAS_GD_GD32_PINCTRL_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PINCTRL_AFIO)) + +DT_COMPAT_GD_GD32_PWM := gd,gd32-pwm + +config DT_HAS_GD_GD32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PWM)) + +DT_COMPAT_GD_GD32_RCTL := gd,gd32-rctl + +config DT_HAS_GD_GD32_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_RCTL)) + +DT_COMPAT_GD_GD32_RCU := gd,gd32-rcu + +config DT_HAS_GD_GD32_RCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_RCU)) + +DT_COMPAT_GD_GD32_SPI := gd,gd32-spi + +config DT_HAS_GD_GD32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_SPI)) + +DT_COMPAT_GD_GD32_SYSCFG := gd,gd32-syscfg + +config DT_HAS_GD_GD32_SYSCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_SYSCFG)) + +DT_COMPAT_GD_GD32_TIMER := gd,gd32-timer + +config DT_HAS_GD_GD32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_TIMER)) + +DT_COMPAT_GD_GD32_USART := gd,gd32-usart + +config DT_HAS_GD_GD32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_USART)) + +DT_COMPAT_GD_GD32_WWDGT := gd,gd32-wwdgt + +config DT_HAS_GD_GD32_WWDGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_WWDGT)) + +DT_COMPAT_GENERIC_FEM_TWO_CTRL_PINS := generic-fem-two-ctrl-pins + +config DT_HAS_GENERIC_FEM_TWO_CTRL_PINS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GENERIC_FEM_TWO_CTRL_PINS)) + +DT_COMPAT_GNSS_NMEA_GENERIC := gnss-nmea-generic + +config DT_HAS_GNSS_NMEA_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GNSS_NMEA_GENERIC)) + +DT_COMPAT_GOODIX_GT911 := goodix,gt911 + +config DT_HAS_GOODIX_GT911_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GOODIX_GT911)) + +DT_COMPAT_GPIO_7_SEGMENT := gpio-7-segment + +config DT_HAS_GPIO_7_SEGMENT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_7_SEGMENT)) + +DT_COMPAT_GPIO_I2C := gpio-i2c + +config DT_HAS_GPIO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_I2C)) + +DT_COMPAT_GPIO_I2C_SWITCH := gpio-i2c-switch + +config DT_HAS_GPIO_I2C_SWITCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_I2C_SWITCH)) + +DT_COMPAT_GPIO_KBD_MATRIX := gpio-kbd-matrix + +config DT_HAS_GPIO_KBD_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_KBD_MATRIX)) + +DT_COMPAT_GPIO_KEYS := gpio-keys + +config DT_HAS_GPIO_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_KEYS)) + +DT_COMPAT_GPIO_LEDS := gpio-leds + +config DT_HAS_GPIO_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_LEDS)) + +DT_COMPAT_GPIO_QDEC := gpio-qdec + +config DT_HAS_GPIO_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_QDEC)) + +DT_COMPAT_GPIO_RADIO_COEX := gpio-radio-coex + +config DT_HAS_GPIO_RADIO_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_RADIO_COEX)) + +DT_COMPAT_GREELED_LPD8803 := greeled,lpd8803 + +config DT_HAS_GREELED_LPD8803_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GREELED_LPD8803)) + +DT_COMPAT_GREELED_LPD8806 := greeled,lpd8806 + +config DT_HAS_GREELED_LPD8806_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GREELED_LPD8806)) + +DT_COMPAT_GROVE_HEADER := grove-header + +config DT_HAS_GROVE_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GROVE_HEADER)) + +DT_COMPAT_GSS_EXPLORIR_M := gss,explorir-m + +config DT_HAS_GSS_EXPLORIR_M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GSS_EXPLORIR_M)) + +DT_COMPAT_HAMAMATSU_S11059 := hamamatsu,s11059 + +config DT_HAS_HAMAMATSU_S11059_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HAMAMATSU_S11059)) + +DT_COMPAT_HAZARD3_HAZARD3_INTC := hazard3,hazard3-intc + +config DT_HAS_HAZARD3_HAZARD3_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HAZARD3_HAZARD3_INTC)) + +DT_COMPAT_HC_SR04 := hc-sr04 + +config DT_HAS_HC_SR04_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HC_SR04)) + +DT_COMPAT_HIMAX_HM01B0 := himax,hm01b0 + +config DT_HAS_HIMAX_HM01B0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HM01B0)) + +DT_COMPAT_HIMAX_HX8379C := himax,hx8379c + +config DT_HAS_HIMAX_HX8379C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HX8379C)) + +DT_COMPAT_HIMAX_HX8394 := himax,hx8394 + +config DT_HAS_HIMAX_HX8394_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HX8394)) + +DT_COMPAT_HIT_HD44780 := hit,hd44780 + +config DT_HAS_HIT_HD44780_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIT_HD44780)) + +DT_COMPAT_HOLTEK_HT16K33 := holtek,ht16k33 + +config DT_HAS_HOLTEK_HT16K33_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOLTEK_HT16K33)) + +DT_COMPAT_HONEYWELL_HMC5883L := honeywell,hmc5883l + +config DT_HAS_HONEYWELL_HMC5883L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_HMC5883L)) + +DT_COMPAT_HONEYWELL_MPR := honeywell,mpr + +config DT_HAS_HONEYWELL_MPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_MPR)) + +DT_COMPAT_HONEYWELL_SM351LT := honeywell,sm351lt + +config DT_HAS_HONEYWELL_SM351LT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_SM351LT)) + +DT_COMPAT_HOPERF_HP206C := hoperf,hp206c + +config DT_HAS_HOPERF_HP206C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOPERF_HP206C)) + +DT_COMPAT_HOPERF_TH02 := hoperf,th02 + +config DT_HAS_HOPERF_TH02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOPERF_TH02)) + +DT_COMPAT_HYNITRON_CST816S := hynitron,cst816s + +config DT_HAS_HYNITRON_CST816S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HYNITRON_CST816S)) + +DT_COMPAT_HZGROW_R502A := hzgrow,r502a + +config DT_HAS_HZGROW_R502A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HZGROW_R502A)) + +DT_COMPAT_ILITEK_ILI2132A := ilitek,ili2132a + +config DT_HAS_ILITEK_ILI2132A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI2132A)) + +DT_COMPAT_ILITEK_ILI9340 := ilitek,ili9340 + +config DT_HAS_ILITEK_ILI9340_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9340)) + +DT_COMPAT_ILITEK_ILI9341 := ilitek,ili9341 + +config DT_HAS_ILITEK_ILI9341_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9341)) + +DT_COMPAT_ILITEK_ILI9342C := ilitek,ili9342c + +config DT_HAS_ILITEK_ILI9342C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9342C)) + +DT_COMPAT_ILITEK_ILI9488 := ilitek,ili9488 + +config DT_HAS_ILITEK_ILI9488_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9488)) + +DT_COMPAT_ILITEK_ILI9806E_DSI := ilitek,ili9806e-dsi + +config DT_HAS_ILITEK_ILI9806E_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9806E_DSI)) + +DT_COMPAT_INFINEON_AIROC_WIFI := infineon,airoc-wifi + +config DT_HAS_INFINEON_AIROC_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_AIROC_WIFI)) + +DT_COMPAT_INFINEON_AUTANALOG_SAR_ADC := infineon,autanalog-sar-adc + +config DT_HAS_INFINEON_AUTANALOG_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_AUTANALOG_SAR_ADC)) + +DT_COMPAT_INFINEON_CAT1_ADC := infineon,cat1-adc + +config DT_HAS_INFINEON_CAT1_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_ADC)) + +DT_COMPAT_INFINEON_CAT1_BLESS_HCI := infineon,cat1-bless-hci + +config DT_HAS_INFINEON_CAT1_BLESS_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_BLESS_HCI)) + +DT_COMPAT_INFINEON_CAT1_COUNTER := infineon,cat1-counter + +config DT_HAS_INFINEON_CAT1_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_COUNTER)) + +DT_COMPAT_INFINEON_CAT1_DMA := infineon,cat1-dma + +config DT_HAS_INFINEON_CAT1_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_DMA)) + +DT_COMPAT_INFINEON_CAT1_FLASH_CONTROLLER := infineon,cat1-flash-controller + +config DT_HAS_INFINEON_CAT1_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_FLASH_CONTROLLER)) + +DT_COMPAT_INFINEON_CAT1_GPIO := infineon,cat1-gpio + +config DT_HAS_INFINEON_CAT1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_GPIO)) + +DT_COMPAT_INFINEON_CAT1_I2C := infineon,cat1-i2c + +config DT_HAS_INFINEON_CAT1_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_I2C)) + +DT_COMPAT_INFINEON_CAT1_I2C_PDL := infineon,cat1-i2c-pdl + +config DT_HAS_INFINEON_CAT1_I2C_PDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_I2C_PDL)) + +DT_COMPAT_INFINEON_CAT1_LP_TIMER := infineon,cat1-lp-timer + +config DT_HAS_INFINEON_CAT1_LP_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_LP_TIMER)) + +DT_COMPAT_INFINEON_CAT1_PINCTRL := infineon,cat1-pinctrl + +config DT_HAS_INFINEON_CAT1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_PINCTRL)) + +DT_COMPAT_INFINEON_CAT1_QSPI_FLASH := infineon,cat1-qspi-flash + +config DT_HAS_INFINEON_CAT1_QSPI_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_QSPI_FLASH)) + +DT_COMPAT_INFINEON_CAT1_RTC := infineon,cat1-rtc + +config DT_HAS_INFINEON_CAT1_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_RTC)) + +DT_COMPAT_INFINEON_CAT1_SCB := infineon,cat1-scb + +config DT_HAS_INFINEON_CAT1_SCB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SCB)) + +DT_COMPAT_INFINEON_CAT1_SDHC_SDIO := infineon,cat1-sdhc-sdio + +config DT_HAS_INFINEON_CAT1_SDHC_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SDHC_SDIO)) + +DT_COMPAT_INFINEON_CAT1_SPI := infineon,cat1-spi + +config DT_HAS_INFINEON_CAT1_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SPI)) + +DT_COMPAT_INFINEON_CAT1_SPI_PDL := infineon,cat1-spi-pdl + +config DT_HAS_INFINEON_CAT1_SPI_PDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_SPI_PDL)) + +DT_COMPAT_INFINEON_CAT1_UART := infineon,cat1-uart + +config DT_HAS_INFINEON_CAT1_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_UART)) + +DT_COMPAT_INFINEON_CAT1_UART_PDL := infineon,cat1-uart-pdl + +config DT_HAS_INFINEON_CAT1_UART_PDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_UART_PDL)) + +DT_COMPAT_INFINEON_CAT1_WATCHDOG := infineon,cat1-watchdog + +config DT_HAS_INFINEON_CAT1_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_WATCHDOG)) + +DT_COMPAT_INFINEON_CAT1B_POWER := infineon,cat1b-power + +config DT_HAS_INFINEON_CAT1B_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1B_POWER)) + +DT_COMPAT_INFINEON_CYW208XX_HCI := infineon,cyw208xx-hci + +config DT_HAS_INFINEON_CYW208XX_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CYW208XX_HCI)) + +DT_COMPAT_INFINEON_CYW43XXX_BT_HCI := infineon,cyw43xxx-bt-hci + +config DT_HAS_INFINEON_CYW43XXX_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CYW43XXX_BT_HCI)) + +DT_COMPAT_INFINEON_DPS310 := infineon,dps310 + +config DT_HAS_INFINEON_DPS310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_DPS310)) + +DT_COMPAT_INFINEON_FIXED_CLOCK := infineon,fixed-clock + +config DT_HAS_INFINEON_FIXED_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FIXED_CLOCK)) + +DT_COMPAT_INFINEON_FIXED_FACTOR_CLOCK := infineon,fixed-factor-clock + +config DT_HAS_INFINEON_FIXED_FACTOR_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FIXED_FACTOR_CLOCK)) + +DT_COMPAT_INFINEON_FM25XXX := infineon,fm25xxx + +config DT_HAS_INFINEON_FM25XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FM25XXX)) + +DT_COMPAT_INFINEON_HPPASS_SAR_ADC := infineon,hppass-sar-adc + +config DT_HAS_INFINEON_HPPASS_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_HPPASS_SAR_ADC)) + +DT_COMPAT_INFINEON_PERI_DIV := infineon,peri-div + +config DT_HAS_INFINEON_PERI_DIV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_PERI_DIV)) + +DT_COMPAT_INFINEON_TCPWM := infineon,tcpwm + +config DT_HAS_INFINEON_TCPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TCPWM)) + +DT_COMPAT_INFINEON_TCPWM_COUNTER := infineon,tcpwm-counter + +config DT_HAS_INFINEON_TCPWM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TCPWM_COUNTER)) + +DT_COMPAT_INFINEON_TCPWM_PWM := infineon,tcpwm-pwm + +config DT_HAS_INFINEON_TCPWM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TCPWM_PWM)) + +DT_COMPAT_INFINEON_TLE9104 := infineon,tle9104 + +config DT_HAS_INFINEON_TLE9104_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104)) + +DT_COMPAT_INFINEON_TLE9104_DIAGNOSTICS := infineon,tle9104-diagnostics + +config DT_HAS_INFINEON_TLE9104_DIAGNOSTICS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104_DIAGNOSTICS)) + +DT_COMPAT_INFINEON_TLE9104_GPIO := infineon,tle9104-gpio + +config DT_HAS_INFINEON_TLE9104_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104_GPIO)) + +DT_COMPAT_INFINEON_XMC4XXX_ADC := infineon,xmc4xxx-adc + +config DT_HAS_INFINEON_XMC4XXX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_ADC)) + +DT_COMPAT_INFINEON_XMC4XXX_CAN := infineon,xmc4xxx-can + +config DT_HAS_INFINEON_XMC4XXX_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CAN)) + +DT_COMPAT_INFINEON_XMC4XXX_CAN_NODE := infineon,xmc4xxx-can-node + +config DT_HAS_INFINEON_XMC4XXX_CAN_NODE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CAN_NODE)) + +DT_COMPAT_INFINEON_XMC4XXX_CCU4_PWM := infineon,xmc4xxx-ccu4-pwm + +config DT_HAS_INFINEON_XMC4XXX_CCU4_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CCU4_PWM)) + +DT_COMPAT_INFINEON_XMC4XXX_CCU8_PWM := infineon,xmc4xxx-ccu8-pwm + +config DT_HAS_INFINEON_XMC4XXX_CCU8_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CCU8_PWM)) + +DT_COMPAT_INFINEON_XMC4XXX_DMA := infineon,xmc4xxx-dma + +config DT_HAS_INFINEON_XMC4XXX_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_DMA)) + +DT_COMPAT_INFINEON_XMC4XXX_ETHERNET := infineon,xmc4xxx-ethernet + +config DT_HAS_INFINEON_XMC4XXX_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_ETHERNET)) + +DT_COMPAT_INFINEON_XMC4XXX_FLASH_CONTROLLER := infineon,xmc4xxx-flash-controller + +config DT_HAS_INFINEON_XMC4XXX_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_FLASH_CONTROLLER)) + +DT_COMPAT_INFINEON_XMC4XXX_GPIO := infineon,xmc4xxx-gpio + +config DT_HAS_INFINEON_XMC4XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_GPIO)) + +DT_COMPAT_INFINEON_XMC4XXX_I2C := infineon,xmc4xxx-i2c + +config DT_HAS_INFINEON_XMC4XXX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_I2C)) + +DT_COMPAT_INFINEON_XMC4XXX_INTC := infineon,xmc4xxx-intc + +config DT_HAS_INFINEON_XMC4XXX_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_INTC)) + +DT_COMPAT_INFINEON_XMC4XXX_MDIO := infineon,xmc4xxx-mdio + +config DT_HAS_INFINEON_XMC4XXX_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_MDIO)) + +DT_COMPAT_INFINEON_XMC4XXX_NV_FLASH := infineon,xmc4xxx-nv-flash + +config DT_HAS_INFINEON_XMC4XXX_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_NV_FLASH)) + +DT_COMPAT_INFINEON_XMC4XXX_PINCTRL := infineon,xmc4xxx-pinctrl + +config DT_HAS_INFINEON_XMC4XXX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_PINCTRL)) + +DT_COMPAT_INFINEON_XMC4XXX_RTC := infineon,xmc4xxx-rtc + +config DT_HAS_INFINEON_XMC4XXX_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_RTC)) + +DT_COMPAT_INFINEON_XMC4XXX_SPI := infineon,xmc4xxx-spi + +config DT_HAS_INFINEON_XMC4XXX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_SPI)) + +DT_COMPAT_INFINEON_XMC4XXX_TEMP := infineon,xmc4xxx-temp + +config DT_HAS_INFINEON_XMC4XXX_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_TEMP)) + +DT_COMPAT_INFINEON_XMC4XXX_UART := infineon,xmc4xxx-uart + +config DT_HAS_INFINEON_XMC4XXX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_UART)) + +DT_COMPAT_INFINEON_XMC4XXX_WATCHDOG := infineon,xmc4xxx-watchdog + +config DT_HAS_INFINEON_XMC4XXX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_WATCHDOG)) + +DT_COMPAT_INPUT_KEYMAP := input-keymap + +config DT_HAS_INPUT_KEYMAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INPUT_KEYMAP)) + +DT_COMPAT_INTEL_ACE_ART_COUNTER := intel,ace-art-counter + +config DT_HAS_INTEL_ACE_ART_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_ART_COUNTER)) + +DT_COMPAT_INTEL_ACE_INTC := intel,ace-intc + +config DT_HAS_INTEL_ACE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_INTC)) + +DT_COMPAT_INTEL_ACE_RTC_COUNTER := intel,ace-rtc-counter + +config DT_HAS_INTEL_ACE_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_RTC_COUNTER)) + +DT_COMPAT_INTEL_ACE_TIMESTAMP := intel,ace-timestamp + +config DT_HAS_INTEL_ACE_TIMESTAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_TIMESTAMP)) + +DT_COMPAT_INTEL_ADSP_COMMUNICATION_WIDGET := intel,adsp-communication-widget + +config DT_HAS_INTEL_ADSP_COMMUNICATION_WIDGET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_COMMUNICATION_WIDGET)) + +DT_COMPAT_INTEL_ADSP_DFPMCCH := intel,adsp-dfpmcch + +config DT_HAS_INTEL_ADSP_DFPMCCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DFPMCCH)) + +DT_COMPAT_INTEL_ADSP_DFPMCCU := intel,adsp-dfpmccu + +config DT_HAS_INTEL_ADSP_DFPMCCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DFPMCCU)) + +DT_COMPAT_INTEL_ADSP_DMIC_VSS := intel,adsp-dmic-vss + +config DT_HAS_INTEL_ADSP_DMIC_VSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DMIC_VSS)) + +DT_COMPAT_INTEL_ADSP_GPDMA := intel,adsp-gpdma + +config DT_HAS_INTEL_ADSP_GPDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_GPDMA)) + +DT_COMPAT_INTEL_ADSP_HDA_DMIC_CAP := intel,adsp-hda-dmic-cap + +config DT_HAS_INTEL_ADSP_HDA_DMIC_CAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_DMIC_CAP)) + +DT_COMPAT_INTEL_ADSP_HDA_HOST_IN := intel,adsp-hda-host-in + +config DT_HAS_INTEL_ADSP_HDA_HOST_IN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_HOST_IN)) + +DT_COMPAT_INTEL_ADSP_HDA_HOST_OUT := intel,adsp-hda-host-out + +config DT_HAS_INTEL_ADSP_HDA_HOST_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_HOST_OUT)) + +DT_COMPAT_INTEL_ADSP_HDA_LINK_IN := intel,adsp-hda-link-in + +config DT_HAS_INTEL_ADSP_HDA_LINK_IN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_LINK_IN)) + +DT_COMPAT_INTEL_ADSP_HDA_LINK_OUT := intel,adsp-hda-link-out + +config DT_HAS_INTEL_ADSP_HDA_LINK_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_LINK_OUT)) + +DT_COMPAT_INTEL_ADSP_HDA_SSP_CAP := intel,adsp-hda-ssp-cap + +config DT_HAS_INTEL_ADSP_HDA_SSP_CAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_SSP_CAP)) + +DT_COMPAT_INTEL_ADSP_HOST_IPC := intel,adsp-host-ipc + +config DT_HAS_INTEL_ADSP_HOST_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HOST_IPC)) + +DT_COMPAT_INTEL_ADSP_IDC := intel,adsp-idc + +config DT_HAS_INTEL_ADSP_IDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_IDC)) + +DT_COMPAT_INTEL_ADSP_IMR := intel,adsp-imr + +config DT_HAS_INTEL_ADSP_IMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_IMR)) + +DT_COMPAT_INTEL_ADSP_MAILBOX := intel,adsp-mailbox + +config DT_HAS_INTEL_ADSP_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MAILBOX)) + +DT_COMPAT_INTEL_ADSP_MEM_WINDOW := intel,adsp-mem-window + +config DT_HAS_INTEL_ADSP_MEM_WINDOW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MEM_WINDOW)) + +DT_COMPAT_INTEL_ADSP_MIC_PRIVACY := intel,adsp-mic-privacy + +config DT_HAS_INTEL_ADSP_MIC_PRIVACY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MIC_PRIVACY)) + +DT_COMPAT_INTEL_ADSP_MTL_TLB := intel,adsp-mtl-tlb + +config DT_HAS_INTEL_ADSP_MTL_TLB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MTL_TLB)) + +DT_COMPAT_INTEL_ADSP_POWER_DOMAIN := intel,adsp-power-domain + +config DT_HAS_INTEL_ADSP_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_POWER_DOMAIN)) + +DT_COMPAT_INTEL_ADSP_SHA := intel,adsp-sha + +config DT_HAS_INTEL_ADSP_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_SHA)) + +DT_COMPAT_INTEL_ADSP_SHIM_CLKCTL := intel,adsp-shim-clkctl + +config DT_HAS_INTEL_ADSP_SHIM_CLKCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_SHIM_CLKCTL)) + +DT_COMPAT_INTEL_ADSP_TIMER := intel,adsp-timer + +config DT_HAS_INTEL_ADSP_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_TIMER)) + +DT_COMPAT_INTEL_ADSP_TLB := intel,adsp-tlb + +config DT_HAS_INTEL_ADSP_TLB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_TLB)) + +DT_COMPAT_INTEL_ADSP_WATCHDOG := intel,adsp-watchdog + +config DT_HAS_INTEL_ADSP_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_WATCHDOG)) + +DT_COMPAT_INTEL_AGILEX_CLOCK := intel,agilex-clock + +config DT_HAS_INTEL_AGILEX_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_AGILEX_CLOCK)) + +DT_COMPAT_INTEL_AGILEX5_CLOCK := intel,agilex5-clock + +config DT_HAS_INTEL_AGILEX5_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_AGILEX5_CLOCK)) + +DT_COMPAT_INTEL_ALDER_LAKE := intel,alder-lake + +config DT_HAS_INTEL_ALDER_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ALDER_LAKE)) + +DT_COMPAT_INTEL_ALH_DAI := intel,alh-dai + +config DT_HAS_INTEL_ALH_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ALH_DAI)) + +DT_COMPAT_INTEL_APOLLO_LAKE := intel,apollo-lake + +config DT_HAS_INTEL_APOLLO_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_APOLLO_LAKE)) + +DT_COMPAT_INTEL_BARTLETT_LAKE := intel,bartlett-lake + +config DT_HAS_INTEL_BARTLETT_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_BARTLETT_LAKE)) + +DT_COMPAT_INTEL_BLINKY_PWM := intel,blinky-pwm + +config DT_HAS_INTEL_BLINKY_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_BLINKY_PWM)) + +DT_COMPAT_INTEL_CAVS_I2S := intel,cavs-i2s + +config DT_HAS_INTEL_CAVS_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_CAVS_I2S)) + +DT_COMPAT_INTEL_CAVS_INTC := intel,cavs-intc + +config DT_HAS_INTEL_CAVS_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_CAVS_INTC)) + +DT_COMPAT_INTEL_DAI_DMIC := intel,dai-dmic + +config DT_HAS_INTEL_DAI_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_DAI_DMIC)) + +DT_COMPAT_INTEL_E1000 := intel,e1000 + +config DT_HAS_INTEL_E1000_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_E1000)) + +DT_COMPAT_INTEL_ELKHART_LAKE := intel,elkhart-lake + +config DT_HAS_INTEL_ELKHART_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ELKHART_LAKE)) + +DT_COMPAT_INTEL_EMMC_HOST := intel,emmc-host + +config DT_HAS_INTEL_EMMC_HOST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_EMMC_HOST)) + +DT_COMPAT_INTEL_ETH_PLAT := intel,eth-plat + +config DT_HAS_INTEL_ETH_PLAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ETH_PLAT)) + +DT_COMPAT_INTEL_GPIO := intel,gpio + +config DT_HAS_INTEL_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_GPIO)) + +DT_COMPAT_INTEL_HDA_DAI := intel,hda-dai + +config DT_HAS_INTEL_HDA_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_HDA_DAI)) + +DT_COMPAT_INTEL_HPET := intel,hpet + +config DT_HAS_INTEL_HPET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_HPET)) + +DT_COMPAT_INTEL_IBECC := intel,ibecc + +config DT_HAS_INTEL_IBECC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IBECC)) + +DT_COMPAT_INTEL_IGC_MAC := intel,igc-mac + +config DT_HAS_INTEL_IGC_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IGC_MAC)) + +DT_COMPAT_INTEL_IGC_MDIO := intel,igc-mdio + +config DT_HAS_INTEL_IGC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IGC_MDIO)) + +DT_COMPAT_INTEL_IOAPIC := intel,ioapic + +config DT_HAS_INTEL_IOAPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IOAPIC)) + +DT_COMPAT_INTEL_ISH := intel,ish + +config DT_HAS_INTEL_ISH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ISH)) + +DT_COMPAT_INTEL_LAKEMONT := intel,lakemont + +config DT_HAS_INTEL_LAKEMONT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LAKEMONT)) + +DT_COMPAT_INTEL_LOAPIC := intel,loapic + +config DT_HAS_INTEL_LOAPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LOAPIC)) + +DT_COMPAT_INTEL_LPSS := intel,lpss + +config DT_HAS_INTEL_LPSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LPSS)) + +DT_COMPAT_INTEL_LW_UART := intel,lw-uart + +config DT_HAS_INTEL_LW_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LW_UART)) + +DT_COMPAT_INTEL_MULTIBOOT_FRAMEBUFFER := intel,multiboot-framebuffer + +config DT_HAS_INTEL_MULTIBOOT_FRAMEBUFFER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_MULTIBOOT_FRAMEBUFFER)) + +DT_COMPAT_INTEL_NIOSV := intel,niosv + +config DT_HAS_INTEL_NIOSV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_NIOSV)) + +DT_COMPAT_INTEL_PANTHER_LAKE := intel,panther-lake + +config DT_HAS_INTEL_PANTHER_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PANTHER_LAKE)) + +DT_COMPAT_INTEL_PCH_SMBUS := intel,pch-smbus + +config DT_HAS_INTEL_PCH_SMBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PCH_SMBUS)) + +DT_COMPAT_INTEL_PENWELL_SPI := intel,penwell-spi + +config DT_HAS_INTEL_PENWELL_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PENWELL_SPI)) + +DT_COMPAT_INTEL_RAPTOR_LAKE := intel,raptor-lake + +config DT_HAS_INTEL_RAPTOR_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_RAPTOR_LAKE)) + +DT_COMPAT_INTEL_SEDI_DMA := intel,sedi-dma + +config DT_HAS_INTEL_SEDI_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_DMA)) + +DT_COMPAT_INTEL_SEDI_GPIO := intel,sedi-gpio + +config DT_HAS_INTEL_SEDI_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_GPIO)) + +DT_COMPAT_INTEL_SEDI_I2C := intel,sedi-i2c + +config DT_HAS_INTEL_SEDI_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_I2C)) + +DT_COMPAT_INTEL_SEDI_IPM := intel,sedi-ipm + +config DT_HAS_INTEL_SEDI_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_IPM)) + +DT_COMPAT_INTEL_SEDI_SPI := intel,sedi-spi + +config DT_HAS_INTEL_SEDI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_SPI)) + +DT_COMPAT_INTEL_SEDI_UART := intel,sedi-uart + +config DT_HAS_INTEL_SEDI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_UART)) + +DT_COMPAT_INTEL_SOCFPGA_AGILEX_SIP_SMC := intel,socfpga-agilex-sip-smc + +config DT_HAS_INTEL_SOCFPGA_AGILEX_SIP_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SOCFPGA_AGILEX_SIP_SMC)) + +DT_COMPAT_INTEL_SOCFPGA_RESET := intel,socfpga-reset + +config DT_HAS_INTEL_SOCFPGA_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SOCFPGA_RESET)) + +DT_COMPAT_INTEL_SSP := intel,ssp + +config DT_HAS_INTEL_SSP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP)) + +DT_COMPAT_INTEL_SSP_DAI := intel,ssp-dai + +config DT_HAS_INTEL_SSP_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP_DAI)) + +DT_COMPAT_INTEL_SSP_SSPBASE := intel,ssp-sspbase + +config DT_HAS_INTEL_SSP_SSPBASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP_SSPBASE)) + +DT_COMPAT_INTEL_TCO_WDT := intel,tco-wdt + +config DT_HAS_INTEL_TCO_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_TCO_WDT)) + +DT_COMPAT_INTEL_TIMEAWARE_GPIO := intel,timeaware-gpio + +config DT_HAS_INTEL_TIMEAWARE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_TIMEAWARE_GPIO)) + +DT_COMPAT_INTEL_VT_D := intel,vt-d + +config DT_HAS_INTEL_VT_D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_VT_D)) + +DT_COMPAT_INTEL_X86 := intel,x86 + +config DT_HAS_INTEL_X86_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_X86)) + +DT_COMPAT_INVENSENSE_ICM40627 := invensense,icm40627 + +config DT_HAS_INVENSENSE_ICM40627_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM40627)) + +DT_COMPAT_INVENSENSE_ICM42370P := invensense,icm42370p + +config DT_HAS_INVENSENSE_ICM42370P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42370P)) + +DT_COMPAT_INVENSENSE_ICM42605 := invensense,icm42605 + +config DT_HAS_INVENSENSE_ICM42605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42605)) + +DT_COMPAT_INVENSENSE_ICM42670P := invensense,icm42670p + +config DT_HAS_INVENSENSE_ICM42670P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42670P)) + +DT_COMPAT_INVENSENSE_ICM42670S := invensense,icm42670s + +config DT_HAS_INVENSENSE_ICM42670S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42670S)) + +DT_COMPAT_INVENSENSE_ICM42686 := invensense,icm42686 + +config DT_HAS_INVENSENSE_ICM42686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42686)) + +DT_COMPAT_INVENSENSE_ICM42688 := invensense,icm42688 + +config DT_HAS_INVENSENSE_ICM42688_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42688)) + +DT_COMPAT_INVENSENSE_ICM4268X := invensense,icm4268x + +config DT_HAS_INVENSENSE_ICM4268X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM4268X)) + +DT_COMPAT_INVENSENSE_ICM45686 := invensense,icm45686 + +config DT_HAS_INVENSENSE_ICM45686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM45686)) + +DT_COMPAT_INVENSENSE_ICP101XX := invensense,icp101xx + +config DT_HAS_INVENSENSE_ICP101XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICP101XX)) + +DT_COMPAT_INVENSENSE_ICP201XX := invensense,icp201xx + +config DT_HAS_INVENSENSE_ICP201XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICP201XX)) + +DT_COMPAT_INVENSENSE_MPU6050 := invensense,mpu6050 + +config DT_HAS_INVENSENSE_MPU6050_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_MPU6050)) + +DT_COMPAT_INVENSENSE_MPU9250 := invensense,mpu9250 + +config DT_HAS_INVENSENSE_MPU9250_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_MPU9250)) + +DT_COMPAT_INVENTEK_ESWIFI := inventek,eswifi + +config DT_HAS_INVENTEK_ESWIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENTEK_ESWIFI)) + +DT_COMPAT_INVENTEK_ESWIFI_UART := inventek,eswifi-uart + +config DT_HAS_INVENTEK_ESWIFI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENTEK_ESWIFI_UART)) + +DT_COMPAT_ISENTEK_IST8310 := isentek,ist8310 + +config DT_HAS_ISENTEK_IST8310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISENTEK_IST8310)) + +DT_COMPAT_ISIL_ISL29035 := isil,isl29035 + +config DT_HAS_ISIL_ISL29035_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISIL_ISL29035)) + +DT_COMPAT_ISSI_IS31FL3194 := issi,is31fl3194 + +config DT_HAS_ISSI_IS31FL3194_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3194)) + +DT_COMPAT_ISSI_IS31FL3216A := issi,is31fl3216a + +config DT_HAS_ISSI_IS31FL3216A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3216A)) + +DT_COMPAT_ISSI_IS31FL3733 := issi,is31fl3733 + +config DT_HAS_ISSI_IS31FL3733_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3733)) + +DT_COMPAT_IST_TSIC_XX6 := ist,tsic-xx6 + +config DT_HAS_IST_TSIC_XX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_IST_TSIC_XX6)) + +DT_COMPAT_ISTECH_IST3931 := istech,ist3931 + +config DT_HAS_ISTECH_IST3931_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISTECH_IST3931)) + +DT_COMPAT_ITE_ENHANCE_I2C := ite,enhance-i2c + +config DT_HAS_ITE_ENHANCE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_ENHANCE_I2C)) + +DT_COMPAT_ITE_IT51XXX_ADC := ite,it51xxx-adc + +config DT_HAS_ITE_IT51XXX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_ADC)) + +DT_COMPAT_ITE_IT51XXX_COUNTER := ite,it51xxx-counter + +config DT_HAS_ITE_IT51XXX_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_COUNTER)) + +DT_COMPAT_ITE_IT51XXX_ECPM := ite,it51xxx-ecpm + +config DT_HAS_ITE_IT51XXX_ECPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_ECPM)) + +DT_COMPAT_ITE_IT51XXX_GPIO := ite,it51xxx-gpio + +config DT_HAS_ITE_IT51XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_GPIO)) + +DT_COMPAT_ITE_IT51XXX_I2C := ite,it51xxx-i2c + +config DT_HAS_ITE_IT51XXX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_I2C)) + +DT_COMPAT_ITE_IT51XXX_I3CM := ite,it51xxx-i3cm + +config DT_HAS_ITE_IT51XXX_I3CM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_I3CM)) + +DT_COMPAT_ITE_IT51XXX_I3CS := ite,it51xxx-i3cs + +config DT_HAS_ITE_IT51XXX_I3CS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_I3CS)) + +DT_COMPAT_ITE_IT51XXX_INTC := ite,it51xxx-intc + +config DT_HAS_ITE_IT51XXX_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_INTC)) + +DT_COMPAT_ITE_IT51XXX_KBD := ite,it51xxx-kbd + +config DT_HAS_ITE_IT51XXX_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_KBD)) + +DT_COMPAT_ITE_IT51XXX_MANUAL_FLASH_1K := ite,it51xxx-manual-flash-1k + +config DT_HAS_ITE_IT51XXX_MANUAL_FLASH_1K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_MANUAL_FLASH_1K)) + +DT_COMPAT_ITE_IT51XXX_PWM := ite,it51xxx-pwm + +config DT_HAS_ITE_IT51XXX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_PWM)) + +DT_COMPAT_ITE_IT51XXX_SHA := ite,it51xxx-sha + +config DT_HAS_ITE_IT51XXX_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_SHA)) + +DT_COMPAT_ITE_IT51XXX_SPI := ite,it51xxx-spi + +config DT_HAS_ITE_IT51XXX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_SPI)) + +DT_COMPAT_ITE_IT51XXX_TACH := ite,it51xxx-tach + +config DT_HAS_ITE_IT51XXX_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_TACH)) + +DT_COMPAT_ITE_IT51XXX_TIMER := ite,it51xxx-timer + +config DT_HAS_ITE_IT51XXX_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_TIMER)) + +DT_COMPAT_ITE_IT51XXX_UART := ite,it51xxx-uart + +config DT_HAS_ITE_IT51XXX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_UART)) + +DT_COMPAT_ITE_IT51XXX_VCMP := ite,it51xxx-vcmp + +config DT_HAS_ITE_IT51XXX_VCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_VCMP)) + +DT_COMPAT_ITE_IT51XXX_WATCHDOG := ite,it51xxx-watchdog + +config DT_HAS_ITE_IT51XXX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_WATCHDOG)) + +DT_COMPAT_ITE_IT51XXX_WUC := ite,it51xxx-wuc + +config DT_HAS_ITE_IT51XXX_WUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_WUC)) + +DT_COMPAT_ITE_IT51XXX_WUC_MAP := ite,it51xxx-wuc-map + +config DT_HAS_ITE_IT51XXX_WUC_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_WUC_MAP)) + +DT_COMPAT_ITE_IT82XX2_USB := ite,it82xx2-usb + +config DT_HAS_ITE_IT82XX2_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT82XX2_USB)) + +DT_COMPAT_ITE_IT8801_ALTCTRL := ite,it8801-altctrl + +config DT_HAS_ITE_IT8801_ALTCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_ALTCTRL)) + +DT_COMPAT_ITE_IT8801_GPIO := ite,it8801-gpio + +config DT_HAS_ITE_IT8801_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_GPIO)) + +DT_COMPAT_ITE_IT8801_KBD := ite,it8801-kbd + +config DT_HAS_ITE_IT8801_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_KBD)) + +DT_COMPAT_ITE_IT8801_MFD := ite,it8801-mfd + +config DT_HAS_ITE_IT8801_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_MFD)) + +DT_COMPAT_ITE_IT8801_MFD_MAP := ite,it8801-mfd-map + +config DT_HAS_ITE_IT8801_MFD_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_MFD_MAP)) + +DT_COMPAT_ITE_IT8801_PWM := ite,it8801-pwm + +config DT_HAS_ITE_IT8801_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_PWM)) + +DT_COMPAT_ITE_IT8XXX2_ADC := ite,it8xxx2-adc + +config DT_HAS_ITE_IT8XXX2_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ADC)) + +DT_COMPAT_ITE_IT8XXX2_BBRAM := ite,it8xxx2-bbram + +config DT_HAS_ITE_IT8XXX2_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_BBRAM)) + +DT_COMPAT_ITE_IT8XXX2_COUNTER := ite,it8xxx2-counter + +config DT_HAS_ITE_IT8XXX2_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_COUNTER)) + +DT_COMPAT_ITE_IT8XXX2_ESPI := ite,it8xxx2-espi + +config DT_HAS_ITE_IT8XXX2_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ESPI)) + +DT_COMPAT_ITE_IT8XXX2_FLASH_CONTROLLER := ite,it8xxx2-flash-controller + +config DT_HAS_ITE_IT8XXX2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_FLASH_CONTROLLER)) + +DT_COMPAT_ITE_IT8XXX2_GPIO := ite,it8xxx2-gpio + +config DT_HAS_ITE_IT8XXX2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIO)) + +DT_COMPAT_ITE_IT8XXX2_GPIO_V2 := ite,it8xxx2-gpio-v2 + +config DT_HAS_ITE_IT8XXX2_GPIO_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIO_V2)) + +DT_COMPAT_ITE_IT8XXX2_GPIOKSCAN := ite,it8xxx2-gpiokscan + +config DT_HAS_ITE_IT8XXX2_GPIOKSCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIOKSCAN)) + +DT_COMPAT_ITE_IT8XXX2_I2C := ite,it8xxx2-i2c + +config DT_HAS_ITE_IT8XXX2_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_I2C)) + +DT_COMPAT_ITE_IT8XXX2_ILM := ite,it8xxx2-ilm + +config DT_HAS_ITE_IT8XXX2_ILM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ILM)) + +DT_COMPAT_ITE_IT8XXX2_INTC := ite,it8xxx2-intc + +config DT_HAS_ITE_IT8XXX2_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_INTC)) + +DT_COMPAT_ITE_IT8XXX2_INTC_V2 := ite,it8xxx2-intc-v2 + +config DT_HAS_ITE_IT8XXX2_INTC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_INTC_V2)) + +DT_COMPAT_ITE_IT8XXX2_KBD := ite,it8xxx2-kbd + +config DT_HAS_ITE_IT8XXX2_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_KBD)) + +DT_COMPAT_ITE_IT8XXX2_PECI := ite,it8xxx2-peci + +config DT_HAS_ITE_IT8XXX2_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PECI)) + +DT_COMPAT_ITE_IT8XXX2_PINCTRL := ite,it8xxx2-pinctrl + +config DT_HAS_ITE_IT8XXX2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PINCTRL)) + +DT_COMPAT_ITE_IT8XXX2_PINCTRL_FUNC := ite,it8xxx2-pinctrl-func + +config DT_HAS_ITE_IT8XXX2_PINCTRL_FUNC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PINCTRL_FUNC)) + +DT_COMPAT_ITE_IT8XXX2_POWER_ELPM := ite,it8xxx2-power-elpm + +config DT_HAS_ITE_IT8XXX2_POWER_ELPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_POWER_ELPM)) + +DT_COMPAT_ITE_IT8XXX2_PWM := ite,it8xxx2-pwm + +config DT_HAS_ITE_IT8XXX2_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PWM)) + +DT_COMPAT_ITE_IT8XXX2_PWMPRS := ite,it8xxx2-pwmprs + +config DT_HAS_ITE_IT8XXX2_PWMPRS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PWMPRS)) + +DT_COMPAT_ITE_IT8XXX2_SHA := ite,it8xxx2-sha + +config DT_HAS_ITE_IT8XXX2_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHA)) + +DT_COMPAT_ITE_IT8XXX2_SHA_V2 := ite,it8xxx2-sha-v2 + +config DT_HAS_ITE_IT8XXX2_SHA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHA_V2)) + +DT_COMPAT_ITE_IT8XXX2_SHI := ite,it8xxx2-shi + +config DT_HAS_ITE_IT8XXX2_SHI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHI)) + +DT_COMPAT_ITE_IT8XXX2_SPI := ite,it8xxx2-spi + +config DT_HAS_ITE_IT8XXX2_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SPI)) + +DT_COMPAT_ITE_IT8XXX2_TACH := ite,it8xxx2-tach + +config DT_HAS_ITE_IT8XXX2_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_TACH)) + +DT_COMPAT_ITE_IT8XXX2_TIMER := ite,it8xxx2-timer + +config DT_HAS_ITE_IT8XXX2_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_TIMER)) + +DT_COMPAT_ITE_IT8XXX2_UART := ite,it8xxx2-uart + +config DT_HAS_ITE_IT8XXX2_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_UART)) + +DT_COMPAT_ITE_IT8XXX2_USBPD := ite,it8xxx2-usbpd + +config DT_HAS_ITE_IT8XXX2_USBPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_USBPD)) + +DT_COMPAT_ITE_IT8XXX2_VCMP := ite,it8xxx2-vcmp + +config DT_HAS_ITE_IT8XXX2_VCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_VCMP)) + +DT_COMPAT_ITE_IT8XXX2_WATCHDOG := ite,it8xxx2-watchdog + +config DT_HAS_ITE_IT8XXX2_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WATCHDOG)) + +DT_COMPAT_ITE_IT8XXX2_WUC := ite,it8xxx2-wuc + +config DT_HAS_ITE_IT8XXX2_WUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WUC)) + +DT_COMPAT_ITE_IT8XXX2_WUC_MAP := ite,it8xxx2-wuc-map + +config DT_HAS_ITE_IT8XXX2_WUC_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WUC_MAP)) + +DT_COMPAT_ITE_RISCV_ITE := ite,riscv-ite + +config DT_HAS_ITE_RISCV_ITE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_RISCV_ITE)) + +DT_COMPAT_JDI_LPM013M126 := jdi,lpm013m126 + +config DT_HAS_JDI_LPM013M126_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JDI_LPM013M126)) + +DT_COMPAT_JEDEC_JC_42_4_TEMP := jedec,jc-42.4-temp + +config DT_HAS_JEDEC_JC_42_4_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_JC_42_4_TEMP)) + +DT_COMPAT_JEDEC_MSPI_NOR := jedec,mspi-nor + +config DT_HAS_JEDEC_MSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_MSPI_NOR)) + +DT_COMPAT_JEDEC_QSPI_NOR := jedec,qspi-nor + +config DT_HAS_JEDEC_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_QSPI_NOR)) + +DT_COMPAT_JEDEC_SPI_NOR := jedec,spi-nor + +config DT_HAS_JEDEC_SPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_SPI_NOR)) + +DT_COMPAT_JHD_JHD1313 := jhd,jhd1313 + +config DT_HAS_JHD_JHD1313_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JHD_JHD1313)) + +DT_COMPAT_KVASER_PCICAN := kvaser,pcican + +config DT_HAS_KVASER_PCICAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_KVASER_PCICAN)) + +DT_COMPAT_LATTICE_ICE40_FPGA := lattice,ice40-fpga + +config DT_HAS_LATTICE_ICE40_FPGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA)) + +DT_COMPAT_LATTICE_ICE40_FPGA_BASE := lattice,ice40-fpga-base + +config DT_HAS_LATTICE_ICE40_FPGA_BASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA_BASE)) + +DT_COMPAT_LATTICE_ICE40_FPGA_BITBANG := lattice,ice40-fpga-bitbang + +config DT_HAS_LATTICE_ICE40_FPGA_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA_BITBANG)) + +DT_COMPAT_LED_STRIP_MATRIX := led-strip-matrix + +config DT_HAS_LED_STRIP_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LED_STRIP_MATRIX)) + +DT_COMPAT_LEDS_GROUP_MULTICOLOR := leds-group-multicolor + +config DT_HAS_LEDS_GROUP_MULTICOLOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LEDS_GROUP_MULTICOLOR)) + +DT_COMPAT_LINARO_96B_LSCON_1V8 := linaro,96b-lscon-1v8 + +config DT_HAS_LINARO_96B_LSCON_1V8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_96B_LSCON_1V8)) + +DT_COMPAT_LINARO_96B_LSCON_3V3 := linaro,96b-lscon-3v3 + +config DT_HAS_LINARO_96B_LSCON_3V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_96B_LSCON_3V3)) + +DT_COMPAT_LINARO_IVSHMEM_IPM := linaro,ivshmem-ipm + +config DT_HAS_LINARO_IVSHMEM_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_IVSHMEM_IPM)) + +DT_COMPAT_LINARO_IVSHMEM_MBOX := linaro,ivshmem-mbox + +config DT_HAS_LINARO_IVSHMEM_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_IVSHMEM_MBOX)) + +DT_COMPAT_LINARO_OPTEE_TZ := linaro,optee-tz + +config DT_HAS_LINARO_OPTEE_TZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_OPTEE_TZ)) + +DT_COMPAT_LITEON_LTR329 := liteon,ltr329 + +config DT_HAS_LITEON_LTR329_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEON_LTR329)) + +DT_COMPAT_LITEON_LTRF216A := liteon,ltrf216a + +config DT_HAS_LITEON_LTRF216A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEON_LTRF216A)) + +DT_COMPAT_LITEX_CLK := litex,clk + +config DT_HAS_LITEX_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_CLK)) + +DT_COMPAT_LITEX_CLKOUT := litex,clkout + +config DT_HAS_LITEX_CLKOUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_CLKOUT)) + +DT_COMPAT_LITEX_DNA0 := litex,dna0 + +config DT_HAS_LITEX_DNA0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_DNA0)) + +DT_COMPAT_LITEX_GPIO := litex,gpio + +config DT_HAS_LITEX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_GPIO)) + +DT_COMPAT_LITEX_I2C := litex,i2c + +config DT_HAS_LITEX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_I2C)) + +DT_COMPAT_LITEX_I2S := litex,i2s + +config DT_HAS_LITEX_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_I2S)) + +DT_COMPAT_LITEX_LITEETH := litex,liteeth + +config DT_HAS_LITEX_LITEETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEETH)) + +DT_COMPAT_LITEX_LITEETH_MDIO := litex,liteeth-mdio + +config DT_HAS_LITEX_LITEETH_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEETH_MDIO)) + +DT_COMPAT_LITEX_LITEI2C := litex,litei2c + +config DT_HAS_LITEX_LITEI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEI2C)) + +DT_COMPAT_LITEX_PRBS := litex,prbs + +config DT_HAS_LITEX_PRBS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_PRBS)) + +DT_COMPAT_LITEX_PWM := litex,pwm + +config DT_HAS_LITEX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_PWM)) + +DT_COMPAT_LITEX_SOC_CONTROLLER := litex,soc-controller + +config DT_HAS_LITEX_SOC_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SOC_CONTROLLER)) + +DT_COMPAT_LITEX_SPI := litex,spi + +config DT_HAS_LITEX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SPI)) + +DT_COMPAT_LITEX_SPI_LITESPI := litex,spi-litespi + +config DT_HAS_LITEX_SPI_LITESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SPI_LITESPI)) + +DT_COMPAT_LITEX_TIMER0 := litex,timer0 + +config DT_HAS_LITEX_TIMER0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_TIMER0)) + +DT_COMPAT_LITEX_UART := litex,uart + +config DT_HAS_LITEX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_UART)) + +DT_COMPAT_LITEX_VEXRISCV_INTC0 := litex,vexriscv-intc0 + +config DT_HAS_LITEX_VEXRISCV_INTC0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_VEXRISCV_INTC0)) + +DT_COMPAT_LITEX_VEXRISCV_STANDARD := litex,vexriscv-standard + +config DT_HAS_LITEX_VEXRISCV_STANDARD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_VEXRISCV_STANDARD)) + +DT_COMPAT_LITEX_WATCHDOG := litex,watchdog + +config DT_HAS_LITEX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_WATCHDOG)) + +DT_COMPAT_LLTC_LTC1660 := lltc,ltc1660 + +config DT_HAS_LLTC_LTC1660_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC1660)) + +DT_COMPAT_LLTC_LTC1665 := lltc,ltc1665 + +config DT_HAS_LLTC_LTC1665_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC1665)) + +DT_COMPAT_LLTC_LTC2451 := lltc,ltc2451 + +config DT_HAS_LLTC_LTC2451_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC2451)) + +DT_COMPAT_LM35 := lm35 + +config DT_HAS_LM35_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM35)) + +DT_COMPAT_LM75 := lm75 + +config DT_HAS_LM75_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM75)) + +DT_COMPAT_LM77 := lm77 + +config DT_HAS_LM77_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM77)) + +DT_COMPAT_LOWRISC_IBEX := lowrisc,ibex + +config DT_HAS_LOWRISC_IBEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_IBEX)) + +DT_COMPAT_LOWRISC_OPENTITAN_AONTIMER := lowrisc,opentitan-aontimer + +config DT_HAS_LOWRISC_OPENTITAN_AONTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_AONTIMER)) + +DT_COMPAT_LOWRISC_OPENTITAN_PWRMGR := lowrisc,opentitan-pwrmgr + +config DT_HAS_LOWRISC_OPENTITAN_PWRMGR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_PWRMGR)) + +DT_COMPAT_LOWRISC_OPENTITAN_SPI := lowrisc,opentitan-spi + +config DT_HAS_LOWRISC_OPENTITAN_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_SPI)) + +DT_COMPAT_LOWRISC_OPENTITAN_UART := lowrisc,opentitan-uart + +config DT_HAS_LOWRISC_OPENTITAN_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_UART)) + +DT_COMPAT_LUATOS_AIR530Z := luatos,air530z + +config DT_HAS_LUATOS_AIR530Z_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LUATOS_AIR530Z)) + +DT_COMPAT_M5STACK_ATOM_HEADER := m5stack,atom-header + +config DT_HAS_M5STACK_ATOM_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_ATOM_HEADER)) + +DT_COMPAT_M5STACK_MBUS_HEADER := m5stack,mbus-header + +config DT_HAS_M5STACK_MBUS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_MBUS_HEADER)) + +DT_COMPAT_M5STACK_STAMPS3_HEADER := m5stack,stamps3-header + +config DT_HAS_M5STACK_STAMPS3_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_STAMPS3_HEADER)) + +DT_COMPAT_MAXBOTIX_MB7040 := maxbotix,mb7040 + +config DT_HAS_MAXBOTIX_MB7040_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXBOTIX_MB7040)) + +DT_COMPAT_MAXIM_DS1307 := maxim,ds1307 + +config DT_HAS_MAXIM_DS1307_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS1307)) + +DT_COMPAT_MAXIM_DS1337 := maxim,ds1337 + +config DT_HAS_MAXIM_DS1337_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS1337)) + +DT_COMPAT_MAXIM_DS18B20 := maxim,ds18b20 + +config DT_HAS_MAXIM_DS18B20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS18B20)) + +DT_COMPAT_MAXIM_DS18S20 := maxim,ds18s20 + +config DT_HAS_MAXIM_DS18S20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS18S20)) + +DT_COMPAT_MAXIM_DS2482_800 := maxim,ds2482-800 + +config DT_HAS_MAXIM_DS2482_800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2482_800)) + +DT_COMPAT_MAXIM_DS2482_800_CHANNEL := maxim,ds2482-800-channel + +config DT_HAS_MAXIM_DS2482_800_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2482_800_CHANNEL)) + +DT_COMPAT_MAXIM_DS2484 := maxim,ds2484 + +config DT_HAS_MAXIM_DS2484_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2484)) + +DT_COMPAT_MAXIM_DS2485 := maxim,ds2485 + +config DT_HAS_MAXIM_DS2485_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2485)) + +DT_COMPAT_MAXIM_DS3231 := maxim,ds3231 + +config DT_HAS_MAXIM_DS3231_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231)) + +DT_COMPAT_MAXIM_DS3231_MFD := maxim,ds3231-mfd + +config DT_HAS_MAXIM_DS3231_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_MFD)) + +DT_COMPAT_MAXIM_DS3231_RTC := maxim,ds3231-rtc + +config DT_HAS_MAXIM_DS3231_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_RTC)) + +DT_COMPAT_MAXIM_DS3231_SENSOR := maxim,ds3231-sensor + +config DT_HAS_MAXIM_DS3231_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_SENSOR)) + +DT_COMPAT_MAXIM_MAX11102 := maxim,max11102 + +config DT_HAS_MAXIM_MAX11102_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11102)) + +DT_COMPAT_MAXIM_MAX11103 := maxim,max11103 + +config DT_HAS_MAXIM_MAX11103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11103)) + +DT_COMPAT_MAXIM_MAX11105 := maxim,max11105 + +config DT_HAS_MAXIM_MAX11105_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11105)) + +DT_COMPAT_MAXIM_MAX11106 := maxim,max11106 + +config DT_HAS_MAXIM_MAX11106_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11106)) + +DT_COMPAT_MAXIM_MAX11110 := maxim,max11110 + +config DT_HAS_MAXIM_MAX11110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11110)) + +DT_COMPAT_MAXIM_MAX11111 := maxim,max11111 + +config DT_HAS_MAXIM_MAX11111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11111)) + +DT_COMPAT_MAXIM_MAX11115 := maxim,max11115 + +config DT_HAS_MAXIM_MAX11115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11115)) + +DT_COMPAT_MAXIM_MAX11116 := maxim,max11116 + +config DT_HAS_MAXIM_MAX11116_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11116)) + +DT_COMPAT_MAXIM_MAX11117 := maxim,max11117 + +config DT_HAS_MAXIM_MAX11117_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11117)) + +DT_COMPAT_MAXIM_MAX11253 := maxim,max11253 + +config DT_HAS_MAXIM_MAX11253_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11253)) + +DT_COMPAT_MAXIM_MAX11254 := maxim,max11254 + +config DT_HAS_MAXIM_MAX11254_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11254)) + +DT_COMPAT_MAXIM_MAX17048 := maxim,max17048 + +config DT_HAS_MAXIM_MAX17048_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17048)) + +DT_COMPAT_MAXIM_MAX17055 := maxim,max17055 + +config DT_HAS_MAXIM_MAX17055_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17055)) + +DT_COMPAT_MAXIM_MAX17262 := maxim,max17262 + +config DT_HAS_MAXIM_MAX17262_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17262)) + +DT_COMPAT_MAXIM_MAX20335 := maxim,max20335 + +config DT_HAS_MAXIM_MAX20335_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335)) + +DT_COMPAT_MAXIM_MAX20335_CHARGER := maxim,max20335-charger + +config DT_HAS_MAXIM_MAX20335_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335_CHARGER)) + +DT_COMPAT_MAXIM_MAX20335_REGULATOR := maxim,max20335-regulator + +config DT_HAS_MAXIM_MAX20335_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335_REGULATOR)) + +DT_COMPAT_MAXIM_MAX30101 := maxim,max30101 + +config DT_HAS_MAXIM_MAX30101_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX30101)) + +DT_COMPAT_MAXIM_MAX31790 := maxim,max31790 + +config DT_HAS_MAXIM_MAX31790_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790)) + +DT_COMPAT_MAXIM_MAX31790_FAN_FAULT := maxim,max31790-fan-fault + +config DT_HAS_MAXIM_MAX31790_FAN_FAULT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_FAN_FAULT)) + +DT_COMPAT_MAXIM_MAX31790_FAN_SPEED := maxim,max31790-fan-speed + +config DT_HAS_MAXIM_MAX31790_FAN_SPEED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_FAN_SPEED)) + +DT_COMPAT_MAXIM_MAX31790_PWM := maxim,max31790-pwm + +config DT_HAS_MAXIM_MAX31790_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_PWM)) + +DT_COMPAT_MAXIM_MAX31855 := maxim,max31855 + +config DT_HAS_MAXIM_MAX31855_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31855)) + +DT_COMPAT_MAXIM_MAX31865 := maxim,max31865 + +config DT_HAS_MAXIM_MAX31865_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31865)) + +DT_COMPAT_MAXIM_MAX31875 := maxim,max31875 + +config DT_HAS_MAXIM_MAX31875_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31875)) + +DT_COMPAT_MAXIM_MAX32664C := maxim,max32664c + +config DT_HAS_MAXIM_MAX32664C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX32664C)) + +DT_COMPAT_MAXIM_MAX3421E_SPI := maxim,max3421e_spi + +config DT_HAS_MAXIM_MAX3421E_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX3421E_SPI)) + +DT_COMPAT_MAXIM_MAX44009 := maxim,max44009 + +config DT_HAS_MAXIM_MAX44009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX44009)) + +DT_COMPAT_MAXIM_MAX6675 := maxim,max6675 + +config DT_HAS_MAXIM_MAX6675_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX6675)) + +DT_COMPAT_MAXIM_MAX7219 := maxim,max7219 + +config DT_HAS_MAXIM_MAX7219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX7219)) + +DT_COMPAT_MAXIM_MAX98091 := maxim,max98091 + +config DT_HAS_MAXIM_MAX98091_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX98091)) + +DT_COMPAT_MEAS_MS5607 := meas,ms5607 + +config DT_HAS_MEAS_MS5607_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5607)) + +DT_COMPAT_MEAS_MS5837_02BA := meas,ms5837-02ba + +config DT_HAS_MEAS_MS5837_02BA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5837_02BA)) + +DT_COMPAT_MEAS_MS5837_30BA := meas,ms5837-30ba + +config DT_HAS_MEAS_MS5837_30BA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5837_30BA)) + +DT_COMPAT_MEDIATEK_ADSP_INTC := mediatek,adsp_intc + +config DT_HAS_MEDIATEK_ADSP_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_ADSP_INTC)) + +DT_COMPAT_MEDIATEK_AFE := mediatek,afe + +config DT_HAS_MEDIATEK_AFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_AFE)) + +DT_COMPAT_MEDIATEK_MT818X_CPUCLK := mediatek,mt818x_cpuclk + +config DT_HAS_MEDIATEK_MT818X_CPUCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_MT818X_CPUCLK)) + +DT_COMPAT_MEDIATEK_MT8195_CPUCLK := mediatek,mt8195_cpuclk + +config DT_HAS_MEDIATEK_MT8195_CPUCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_MT8195_CPUCLK)) + +DT_COMPAT_MEDIATEK_OSTIMER64 := mediatek,ostimer64 + +config DT_HAS_MEDIATEK_OSTIMER64_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_OSTIMER64)) + +DT_COMPAT_MELEXIS_MLX90394 := melexis,mlx90394 + +config DT_HAS_MELEXIS_MLX90394_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MELEXIS_MLX90394)) + +DT_COMPAT_MEMSIC_MC3419 := memsic,mc3419 + +config DT_HAS_MEMSIC_MC3419_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEMSIC_MC3419)) + +DT_COMPAT_MEMSIC_MMC56X3 := memsic,mmc56x3 + +config DT_HAS_MEMSIC_MMC56X3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEMSIC_MMC56X3)) + +DT_COMPAT_MICROBIT_EDGE_CONNECTOR := microbit,edge-connector + +config DT_HAS_MICROBIT_EDGE_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROBIT_EDGE_CONNECTOR)) + +DT_COMPAT_MICROCHIP_CAP12XX := microchip,cap12xx + +config DT_HAS_MICROCHIP_CAP12XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_CAP12XX)) + +DT_COMPAT_MICROCHIP_COREUART := microchip,coreuart + +config DT_HAS_MICROCHIP_COREUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_COREUART)) + +DT_COMPAT_MICROCHIP_DMEC_ECIA_GIRQ := microchip,dmec-ecia-girq + +config DT_HAS_MICROCHIP_DMEC_ECIA_GIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_DMEC_ECIA_GIRQ)) + +DT_COMPAT_MICROCHIP_ENC28J60 := microchip,enc28j60 + +config DT_HAS_MICROCHIP_ENC28J60_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ENC28J60)) + +DT_COMPAT_MICROCHIP_ENC424J600 := microchip,enc424j600 + +config DT_HAS_MICROCHIP_ENC424J600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ENC424J600)) + +DT_COMPAT_MICROCHIP_KSZ8081 := microchip,ksz8081 + +config DT_HAS_MICROCHIP_KSZ8081_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8081)) + +DT_COMPAT_MICROCHIP_KSZ8463 := microchip,ksz8463 + +config DT_HAS_MICROCHIP_KSZ8463_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8463)) + +DT_COMPAT_MICROCHIP_KSZ8794 := microchip,ksz8794 + +config DT_HAS_MICROCHIP_KSZ8794_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8794)) + +DT_COMPAT_MICROCHIP_KSZ8863 := microchip,ksz8863 + +config DT_HAS_MICROCHIP_KSZ8863_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8863)) + +DT_COMPAT_MICROCHIP_KSZ9131 := microchip,ksz9131 + +config DT_HAS_MICROCHIP_KSZ9131_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ9131)) + +DT_COMPAT_MICROCHIP_LAN865X := microchip,lan865x + +config DT_HAS_MICROCHIP_LAN865X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN865X)) + +DT_COMPAT_MICROCHIP_LAN865X_MDIO := microchip,lan865x-mdio + +config DT_HAS_MICROCHIP_LAN865X_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN865X_MDIO)) + +DT_COMPAT_MICROCHIP_LAN9250 := microchip,lan9250 + +config DT_HAS_MICROCHIP_LAN9250_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN9250)) + +DT_COMPAT_MICROCHIP_MCP23008 := microchip,mcp23008 + +config DT_HAS_MICROCHIP_MCP23008_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23008)) + +DT_COMPAT_MICROCHIP_MCP23009 := microchip,mcp23009 + +config DT_HAS_MICROCHIP_MCP23009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23009)) + +DT_COMPAT_MICROCHIP_MCP23016 := microchip,mcp23016 + +config DT_HAS_MICROCHIP_MCP23016_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23016)) + +DT_COMPAT_MICROCHIP_MCP23017 := microchip,mcp23017 + +config DT_HAS_MICROCHIP_MCP23017_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23017)) + +DT_COMPAT_MICROCHIP_MCP23018 := microchip,mcp23018 + +config DT_HAS_MICROCHIP_MCP23018_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23018)) + +DT_COMPAT_MICROCHIP_MCP23S08 := microchip,mcp23s08 + +config DT_HAS_MICROCHIP_MCP23S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S08)) + +DT_COMPAT_MICROCHIP_MCP23S09 := microchip,mcp23s09 + +config DT_HAS_MICROCHIP_MCP23S09_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S09)) + +DT_COMPAT_MICROCHIP_MCP23S17 := microchip,mcp23s17 + +config DT_HAS_MICROCHIP_MCP23S17_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S17)) + +DT_COMPAT_MICROCHIP_MCP23S18 := microchip,mcp23s18 + +config DT_HAS_MICROCHIP_MCP23S18_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S18)) + +DT_COMPAT_MICROCHIP_MCP2515 := microchip,mcp2515 + +config DT_HAS_MICROCHIP_MCP2515_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP2515)) + +DT_COMPAT_MICROCHIP_MCP251XFD := microchip,mcp251xfd + +config DT_HAS_MICROCHIP_MCP251XFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP251XFD)) + +DT_COMPAT_MICROCHIP_MCP3204 := microchip,mcp3204 + +config DT_HAS_MICROCHIP_MCP3204_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3204)) + +DT_COMPAT_MICROCHIP_MCP3208 := microchip,mcp3208 + +config DT_HAS_MICROCHIP_MCP3208_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3208)) + +DT_COMPAT_MICROCHIP_MCP356XR := microchip,mcp356xr + +config DT_HAS_MICROCHIP_MCP356XR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP356XR)) + +DT_COMPAT_MICROCHIP_MCP4725 := microchip,mcp4725 + +config DT_HAS_MICROCHIP_MCP4725_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP4725)) + +DT_COMPAT_MICROCHIP_MCP4728 := microchip,mcp4728 + +config DT_HAS_MICROCHIP_MCP4728_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP4728)) + +DT_COMPAT_MICROCHIP_MCP7940N := microchip,mcp7940n + +config DT_HAS_MICROCHIP_MCP7940N_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP7940N)) + +DT_COMPAT_MICROCHIP_MCP9600 := microchip,mcp9600 + +config DT_HAS_MICROCHIP_MCP9600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP9600)) + +DT_COMPAT_MICROCHIP_MCP970X := microchip,mcp970x + +config DT_HAS_MICROCHIP_MCP970X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP970X)) + +DT_COMPAT_MICROCHIP_MEC5_GPIO := microchip,mec5-gpio + +config DT_HAS_MICROCHIP_MEC5_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_GPIO)) + +DT_COMPAT_MICROCHIP_MEC5_PINCTRL := microchip,mec5-pinctrl + +config DT_HAS_MICROCHIP_MEC5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_PINCTRL)) + +DT_COMPAT_MICROCHIP_MEC5_QSPI := microchip,mec5-qspi + +config DT_HAS_MICROCHIP_MEC5_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_QSPI)) + +DT_COMPAT_MICROCHIP_MEC5_UART := microchip,mec5-uart + +config DT_HAS_MICROCHIP_MEC5_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_UART)) + +DT_COMPAT_MICROCHIP_MPFS_GPIO := microchip,mpfs-gpio + +config DT_HAS_MICROCHIP_MPFS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_GPIO)) + +DT_COMPAT_MICROCHIP_MPFS_I2C := microchip,mpfs-i2c + +config DT_HAS_MICROCHIP_MPFS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_I2C)) + +DT_COMPAT_MICROCHIP_MPFS_QSPI := microchip,mpfs-qspi + +config DT_HAS_MICROCHIP_MPFS_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_QSPI)) + +DT_COMPAT_MICROCHIP_MPFS_RESET := microchip,mpfs-reset + +config DT_HAS_MICROCHIP_MPFS_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_RESET)) + +DT_COMPAT_MICROCHIP_MPFS_SPI := microchip,mpfs-spi + +config DT_HAS_MICROCHIP_MPFS_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_SPI)) + +DT_COMPAT_MICROCHIP_MTCH9010 := microchip,mtch9010 + +config DT_HAS_MICROCHIP_MTCH9010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MTCH9010)) + +DT_COMPAT_MICROCHIP_NVMCTRL_G1_FLASH := microchip,nvmctrl-g1-flash + +config DT_HAS_MICROCHIP_NVMCTRL_G1_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_NVMCTRL_G1_FLASH)) + +DT_COMPAT_MICROCHIP_PORT_G1_GPIO := microchip,port-g1-gpio + +config DT_HAS_MICROCHIP_PORT_G1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PORT_G1_GPIO)) + +DT_COMPAT_MICROCHIP_PORT_G1_PINCTRL := microchip,port-g1-pinctrl + +config DT_HAS_MICROCHIP_PORT_G1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PORT_G1_PINCTRL)) + +DT_COMPAT_MICROCHIP_RSTC_G1_RESET := microchip,rstc-g1-reset + +config DT_HAS_MICROCHIP_RSTC_G1_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_RSTC_G1_RESET)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_CLOCK := microchip,sam-d5x-e5x-clock + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_CLOCK)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_DFLL := microchip,sam-d5x-e5x-dfll + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_DFLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_DFLL)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_FDPLL := microchip,sam-d5x-e5x-fdpll + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_FDPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_FDPLL)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKGEN := microchip,sam-d5x-e5x-gclkgen + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_GCLKGEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKGEN)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKPERIPH := microchip,sam-d5x-e5x-gclkperiph + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_GCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKPERIPH)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKCPU := microchip,sam-d5x-e5x-mclkcpu + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_MCLKCPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKCPU)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKPERIPH := microchip,sam-d5x-e5x-mclkperiph + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_MCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKPERIPH)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_RTC := microchip,sam-d5x-e5x-rtc + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_RTC)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC := microchip,sam-d5x-e5x-xosc + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC32K := microchip,sam-d5x-e5x-xosc32k + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_XOSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC32K)) + +DT_COMPAT_MICROCHIP_SAM_ETHERNET_CONTROLLER := microchip,sam-ethernet-controller + +config DT_HAS_MICROCHIP_SAM_ETHERNET_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_ETHERNET_CONTROLLER)) + +DT_COMPAT_MICROCHIP_SAM_FLEXCOM := microchip,sam-flexcom + +config DT_HAS_MICROCHIP_SAM_FLEXCOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_FLEXCOM)) + +DT_COMPAT_MICROCHIP_SAM_PIO4 := microchip,sam-pio4 + +config DT_HAS_MICROCHIP_SAM_PIO4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PIO4)) + +DT_COMPAT_MICROCHIP_SAM_PIT64B := microchip,sam-pit64b + +config DT_HAS_MICROCHIP_SAM_PIT64B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PIT64B)) + +DT_COMPAT_MICROCHIP_SAM_PMC := microchip,sam-pmc + +config DT_HAS_MICROCHIP_SAM_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PMC)) + +DT_COMPAT_MICROCHIP_SAMA7G5_PINCTRL := microchip,sama7g5-pinctrl + +config DT_HAS_MICROCHIP_SAMA7G5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAMA7G5_PINCTRL)) + +DT_COMPAT_MICROCHIP_SAMA7G5_SCKC := microchip,sama7g5-sckc + +config DT_HAS_MICROCHIP_SAMA7G5_SCKC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAMA7G5_SCKC)) + +DT_COMPAT_MICROCHIP_SAMA7G5_SDMMC := microchip,sama7g5-sdmmc + +config DT_HAS_MICROCHIP_SAMA7G5_SDMMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAMA7G5_SDMMC)) + +DT_COMPAT_MICROCHIP_SERCOM_G1 := microchip,sercom-g1 + +config DT_HAS_MICROCHIP_SERCOM_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SERCOM_G1)) + +DT_COMPAT_MICROCHIP_SERCOM_G1_UART := microchip,sercom-g1-uart + +config DT_HAS_MICROCHIP_SERCOM_G1_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SERCOM_G1_UART)) + +DT_COMPAT_MICROCHIP_T1S_PHY := microchip,t1s-phy + +config DT_HAS_MICROCHIP_T1S_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_T1S_PHY)) + +DT_COMPAT_MICROCHIP_TCC_G1 := microchip,tcc-g1 + +config DT_HAS_MICROCHIP_TCC_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCC_G1)) + +DT_COMPAT_MICROCHIP_TCC_G1_PWM := microchip,tcc-g1-pwm + +config DT_HAS_MICROCHIP_TCC_G1_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCC_G1_PWM)) + +DT_COMPAT_MICROCHIP_TCN75A := microchip,tcn75a + +config DT_HAS_MICROCHIP_TCN75A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCN75A)) + +DT_COMPAT_MICROCHIP_VSC8541 := microchip,vsc8541 + +config DT_HAS_MICROCHIP_VSC8541_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_VSC8541)) + +DT_COMPAT_MICROCHIP_XEC_ADC := microchip,xec-adc + +config DT_HAS_MICROCHIP_XEC_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ADC)) + +DT_COMPAT_MICROCHIP_XEC_BASIC_TIMER := microchip,xec-basic-timer + +config DT_HAS_MICROCHIP_XEC_BASIC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BASIC_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_BBLED := microchip,xec-bbled + +config DT_HAS_MICROCHIP_XEC_BBLED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BBLED)) + +DT_COMPAT_MICROCHIP_XEC_BBRAM := microchip,xec-bbram + +config DT_HAS_MICROCHIP_XEC_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BBRAM)) + +DT_COMPAT_MICROCHIP_XEC_DMAC := microchip,xec-dmac + +config DT_HAS_MICROCHIP_XEC_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_DMAC)) + +DT_COMPAT_MICROCHIP_XEC_ECIA := microchip,xec-ecia + +config DT_HAS_MICROCHIP_XEC_ECIA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECIA)) + +DT_COMPAT_MICROCHIP_XEC_ECIA_GIRQ := microchip,xec-ecia-girq + +config DT_HAS_MICROCHIP_XEC_ECIA_GIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECIA_GIRQ)) + +DT_COMPAT_MICROCHIP_XEC_ECS := microchip,xec-ecs + +config DT_HAS_MICROCHIP_XEC_ECS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECS)) + +DT_COMPAT_MICROCHIP_XEC_EEPROM := microchip,xec-eeprom + +config DT_HAS_MICROCHIP_XEC_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_EEPROM)) + +DT_COMPAT_MICROCHIP_XEC_ESPI := microchip,xec-espi + +config DT_HAS_MICROCHIP_XEC_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_HOST_DEV := microchip,xec-espi-host-dev + +config DT_HAS_MICROCHIP_XEC_ESPI_HOST_DEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_HOST_DEV)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_SAF := microchip,xec-espi-saf + +config DT_HAS_MICROCHIP_XEC_ESPI_SAF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_SAF)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_SAF_V2 := microchip,xec-espi-saf-v2 + +config DT_HAS_MICROCHIP_XEC_ESPI_SAF_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_SAF_V2)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_V2 := microchip,xec-espi-v2 + +config DT_HAS_MICROCHIP_XEC_ESPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_V2)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_VW_ROUTING := microchip,xec-espi-vw-routing + +config DT_HAS_MICROCHIP_XEC_ESPI_VW_ROUTING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_VW_ROUTING)) + +DT_COMPAT_MICROCHIP_XEC_GPIO := microchip,xec-gpio + +config DT_HAS_MICROCHIP_XEC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_GPIO)) + +DT_COMPAT_MICROCHIP_XEC_GPIO_V2 := microchip,xec-gpio-v2 + +config DT_HAS_MICROCHIP_XEC_GPIO_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_GPIO_V2)) + +DT_COMPAT_MICROCHIP_XEC_I2C := microchip,xec-i2c + +config DT_HAS_MICROCHIP_XEC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_I2C)) + +DT_COMPAT_MICROCHIP_XEC_I2C_V2 := microchip,xec-i2c-v2 + +config DT_HAS_MICROCHIP_XEC_I2C_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_I2C_V2)) + +DT_COMPAT_MICROCHIP_XEC_KBD := microchip,xec-kbd + +config DT_HAS_MICROCHIP_XEC_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_KBD)) + +DT_COMPAT_MICROCHIP_XEC_PCR := microchip,xec-pcr + +config DT_HAS_MICROCHIP_XEC_PCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PCR)) + +DT_COMPAT_MICROCHIP_XEC_PECI := microchip,xec-peci + +config DT_HAS_MICROCHIP_XEC_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PECI)) + +DT_COMPAT_MICROCHIP_XEC_PINCTRL := microchip,xec-pinctrl + +config DT_HAS_MICROCHIP_XEC_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PINCTRL)) + +DT_COMPAT_MICROCHIP_XEC_PS2 := microchip,xec-ps2 + +config DT_HAS_MICROCHIP_XEC_PS2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PS2)) + +DT_COMPAT_MICROCHIP_XEC_PWM := microchip,xec-pwm + +config DT_HAS_MICROCHIP_XEC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PWM)) + +DT_COMPAT_MICROCHIP_XEC_PWMBBLED := microchip,xec-pwmbbled + +config DT_HAS_MICROCHIP_XEC_PWMBBLED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PWMBBLED)) + +DT_COMPAT_MICROCHIP_XEC_QMSPI := microchip,xec-qmspi + +config DT_HAS_MICROCHIP_XEC_QMSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_QMSPI)) + +DT_COMPAT_MICROCHIP_XEC_QMSPI_LDMA := microchip,xec-qmspi-ldma + +config DT_HAS_MICROCHIP_XEC_QMSPI_LDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_QMSPI_LDMA)) + +DT_COMPAT_MICROCHIP_XEC_RTOS_TIMER := microchip,xec-rtos-timer + +config DT_HAS_MICROCHIP_XEC_RTOS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_RTOS_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_SYMCR := microchip,xec-symcr + +config DT_HAS_MICROCHIP_XEC_SYMCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_SYMCR)) + +DT_COMPAT_MICROCHIP_XEC_TACH := microchip,xec-tach + +config DT_HAS_MICROCHIP_XEC_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_TACH)) + +DT_COMPAT_MICROCHIP_XEC_TIMER := microchip,xec-timer + +config DT_HAS_MICROCHIP_XEC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_UART := microchip,xec-uart + +config DT_HAS_MICROCHIP_XEC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_UART)) + +DT_COMPAT_MICROCHIP_XEC_WATCHDOG := microchip,xec-watchdog + +config DT_HAS_MICROCHIP_XEC_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_WATCHDOG)) + +DT_COMPAT_MICROCRYSTAL_RV_8263_C8 := microcrystal,rv-8263-c8 + +config DT_HAS_MICROCRYSTAL_RV_8263_C8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV_8263_C8)) + +DT_COMPAT_MICROCRYSTAL_RV3028 := microcrystal,rv3028 + +config DT_HAS_MICROCRYSTAL_RV3028_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3028)) + +DT_COMPAT_MICROCRYSTAL_RV3032 := microcrystal,rv3032 + +config DT_HAS_MICROCRYSTAL_RV3032_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3032)) + +DT_COMPAT_MICROCRYSTAL_RV8803 := microcrystal,rv8803 + +config DT_HAS_MICROCRYSTAL_RV8803_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV8803)) + +DT_COMPAT_MICRON_MT25QU02G := micron,mt25qu02g + +config DT_HAS_MICRON_MT25QU02G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICRON_MT25QU02G)) + +DT_COMPAT_MIKRO_BUS := mikro-bus + +config DT_HAS_MIKRO_BUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MIKRO_BUS)) + +DT_COMPAT_MMIO_SRAM := mmio-sram + +config DT_HAS_MMIO_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MMIO_SRAM)) + +DT_COMPAT_MOTOROLA_MC146818 := motorola,mc146818 + +config DT_HAS_MOTOROLA_MC146818_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818)) + +DT_COMPAT_MOTOROLA_MC146818_BBRAM := motorola,mc146818-bbram + +config DT_HAS_MOTOROLA_MC146818_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818_BBRAM)) + +DT_COMPAT_MOTOROLA_MC146818_MFD := motorola,mc146818-mfd + +config DT_HAS_MOTOROLA_MC146818_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818_MFD)) + +DT_COMPAT_MPS_MPM54304 := mps,mpm54304 + +config DT_HAS_MPS_MPM54304_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MPS_MPM54304)) + +DT_COMPAT_MSPI_APS_Z8 := mspi-aps-z8 + +config DT_HAS_MSPI_APS_Z8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_APS_Z8)) + +DT_COMPAT_MSPI_APS6404L := mspi-aps6404l + +config DT_HAS_MSPI_APS6404L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_APS6404L)) + +DT_COMPAT_MSPI_ATXP032 := mspi-atxp032 + +config DT_HAS_MSPI_ATXP032_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_ATXP032)) + +DT_COMPAT_MSPI_IS25XX0XX := mspi-is25xX0xx + +config DT_HAS_MSPI_IS25XX0XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_IS25XX0XX)) + +DT_COMPAT_MTI_CPU_INTC := mti,cpu-intc + +config DT_HAS_MTI_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MTI_CPU_INTC)) + +DT_COMPAT_MURATA_NCP15WB473 := murata,ncp15wb473 + +config DT_HAS_MURATA_NCP15WB473_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MURATA_NCP15WB473)) + +DT_COMPAT_MURATA_NCP15XH103 := murata,ncp15xh103 + +config DT_HAS_MURATA_NCP15XH103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MURATA_NCP15XH103)) + +DT_COMPAT_NATIONAL_LM95234 := national,lm95234 + +config DT_HAS_NATIONAL_LM95234_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NATIONAL_LM95234)) + +DT_COMPAT_NEORV32_CPU := neorv32,cpu + +config DT_HAS_NEORV32_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_CPU)) + +DT_COMPAT_NEORV32_GPIO := neorv32,gpio + +config DT_HAS_NEORV32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_GPIO)) + +DT_COMPAT_NEORV32_GPTMR := neorv32,gptmr + +config DT_HAS_NEORV32_GPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_GPTMR)) + +DT_COMPAT_NEORV32_PWM := neorv32,pwm + +config DT_HAS_NEORV32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_PWM)) + +DT_COMPAT_NEORV32_TRNG := neorv32,trng + +config DT_HAS_NEORV32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_TRNG)) + +DT_COMPAT_NEORV32_UART := neorv32,uart + +config DT_HAS_NEORV32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_UART)) + +DT_COMPAT_NINTENDO_NUNCHUK := nintendo,nunchuk + +config DT_HAS_NINTENDO_NUNCHUK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NINTENDO_NUNCHUK)) + +DT_COMPAT_NORDIC_CORESIGHT_NRF := nordic,coresight-nrf + +config DT_HAS_NORDIC_CORESIGHT_NRF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_CORESIGHT_NRF)) + +DT_COMPAT_NORDIC_IRONSIDE_CALL := nordic,ironside-call + +config DT_HAS_NORDIC_IRONSIDE_CALL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_IRONSIDE_CALL)) + +DT_COMPAT_NORDIC_MBOX_NRF_IPC := nordic,mbox-nrf-ipc + +config DT_HAS_NORDIC_MBOX_NRF_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_MBOX_NRF_IPC)) + +DT_COMPAT_NORDIC_MRAM := nordic,mram + +config DT_HAS_NORDIC_MRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_MRAM)) + +DT_COMPAT_NORDIC_NPM1100 := nordic,npm1100 + +config DT_HAS_NORDIC_NPM1100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1100)) + +DT_COMPAT_NORDIC_NPM1300 := nordic,npm1300 + +config DT_HAS_NORDIC_NPM1300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300)) + +DT_COMPAT_NORDIC_NPM1300_CHARGER := nordic,npm1300-charger + +config DT_HAS_NORDIC_NPM1300_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_CHARGER)) + +DT_COMPAT_NORDIC_NPM1300_GPIO := nordic,npm1300-gpio + +config DT_HAS_NORDIC_NPM1300_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_GPIO)) + +DT_COMPAT_NORDIC_NPM1300_LED := nordic,npm1300-led + +config DT_HAS_NORDIC_NPM1300_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_LED)) + +DT_COMPAT_NORDIC_NPM1300_REGULATOR := nordic,npm1300-regulator + +config DT_HAS_NORDIC_NPM1300_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_REGULATOR)) + +DT_COMPAT_NORDIC_NPM1300_WDT := nordic,npm1300-wdt + +config DT_HAS_NORDIC_NPM1300_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_WDT)) + +DT_COMPAT_NORDIC_NPM1304 := nordic,npm1304 + +config DT_HAS_NORDIC_NPM1304_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304)) + +DT_COMPAT_NORDIC_NPM1304_CHARGER := nordic,npm1304-charger + +config DT_HAS_NORDIC_NPM1304_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_CHARGER)) + +DT_COMPAT_NORDIC_NPM1304_GPIO := nordic,npm1304-gpio + +config DT_HAS_NORDIC_NPM1304_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_GPIO)) + +DT_COMPAT_NORDIC_NPM1304_LED := nordic,npm1304-led + +config DT_HAS_NORDIC_NPM1304_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_LED)) + +DT_COMPAT_NORDIC_NPM1304_REGULATOR := nordic,npm1304-regulator + +config DT_HAS_NORDIC_NPM1304_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_REGULATOR)) + +DT_COMPAT_NORDIC_NPM1304_WDT := nordic,npm1304-wdt + +config DT_HAS_NORDIC_NPM1304_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_WDT)) + +DT_COMPAT_NORDIC_NPM2100 := nordic,npm2100 + +config DT_HAS_NORDIC_NPM2100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100)) + +DT_COMPAT_NORDIC_NPM2100_GPIO := nordic,npm2100-gpio + +config DT_HAS_NORDIC_NPM2100_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_GPIO)) + +DT_COMPAT_NORDIC_NPM2100_REGULATOR := nordic,npm2100-regulator + +config DT_HAS_NORDIC_NPM2100_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_REGULATOR)) + +DT_COMPAT_NORDIC_NPM2100_VBAT := nordic,npm2100-vbat + +config DT_HAS_NORDIC_NPM2100_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_VBAT)) + +DT_COMPAT_NORDIC_NPM2100_WDT := nordic,npm2100-wdt + +config DT_HAS_NORDIC_NPM2100_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_WDT)) + +DT_COMPAT_NORDIC_NPM6001 := nordic,npm6001 + +config DT_HAS_NORDIC_NPM6001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001)) + +DT_COMPAT_NORDIC_NPM6001_GPIO := nordic,npm6001-gpio + +config DT_HAS_NORDIC_NPM6001_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_GPIO)) + +DT_COMPAT_NORDIC_NPM6001_REGULATOR := nordic,npm6001-regulator + +config DT_HAS_NORDIC_NPM6001_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_REGULATOR)) + +DT_COMPAT_NORDIC_NPM6001_WDT := nordic,npm6001-wdt + +config DT_HAS_NORDIC_NPM6001_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_WDT)) + +DT_COMPAT_NORDIC_NRF_ACL := nordic,nrf-acl + +config DT_HAS_NORDIC_NRF_ACL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ACL)) + +DT_COMPAT_NORDIC_NRF_ADC := nordic,nrf-adc + +config DT_HAS_NORDIC_NRF_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ADC)) + +DT_COMPAT_NORDIC_NRF_AUXPLL := nordic,nrf-auxpll + +config DT_HAS_NORDIC_NRF_AUXPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_AUXPLL)) + +DT_COMPAT_NORDIC_NRF_BELLBOARD_RX := nordic,nrf-bellboard-rx + +config DT_HAS_NORDIC_NRF_BELLBOARD_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BELLBOARD_RX)) + +DT_COMPAT_NORDIC_NRF_BELLBOARD_TX := nordic,nrf-bellboard-tx + +config DT_HAS_NORDIC_NRF_BELLBOARD_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BELLBOARD_TX)) + +DT_COMPAT_NORDIC_NRF_BICR := nordic,nrf-bicr + +config DT_HAS_NORDIC_NRF_BICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BICR)) + +DT_COMPAT_NORDIC_NRF_BPROT := nordic,nrf-bprot + +config DT_HAS_NORDIC_NRF_BPROT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BPROT)) + +DT_COMPAT_NORDIC_NRF_CAN := nordic,nrf-can + +config DT_HAS_NORDIC_NRF_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CAN)) + +DT_COMPAT_NORDIC_NRF_CCM := nordic,nrf-ccm + +config DT_HAS_NORDIC_NRF_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CCM)) + +DT_COMPAT_NORDIC_NRF_CLIC := nordic,nrf-clic + +config DT_HAS_NORDIC_NRF_CLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CLIC)) + +DT_COMPAT_NORDIC_NRF_CLOCK := nordic,nrf-clock + +config DT_HAS_NORDIC_NRF_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CLOCK)) + +DT_COMPAT_NORDIC_NRF_COMP := nordic,nrf-comp + +config DT_HAS_NORDIC_NRF_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_COMP)) + +DT_COMPAT_NORDIC_NRF_CRACEN_CTRDRBG := nordic,nrf-cracen-ctrdrbg + +config DT_HAS_NORDIC_NRF_CRACEN_CTRDRBG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CRACEN_CTRDRBG)) + +DT_COMPAT_NORDIC_NRF_CTRLAPPERI := nordic,nrf-ctrlapperi + +config DT_HAS_NORDIC_NRF_CTRLAPPERI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CTRLAPPERI)) + +DT_COMPAT_NORDIC_NRF_DCNF := nordic,nrf-dcnf + +config DT_HAS_NORDIC_NRF_DCNF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DCNF)) + +DT_COMPAT_NORDIC_NRF_DPPIC := nordic,nrf-dppic + +config DT_HAS_NORDIC_NRF_DPPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC)) + +DT_COMPAT_NORDIC_NRF_DPPIC_GLOBAL := nordic,nrf-dppic-global + +config DT_HAS_NORDIC_NRF_DPPIC_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_DPPIC_LOCAL := nordic,nrf-dppic-local + +config DT_HAS_NORDIC_NRF_DPPIC_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC_LOCAL)) + +DT_COMPAT_NORDIC_NRF_ECB := nordic,nrf-ecb + +config DT_HAS_NORDIC_NRF_ECB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ECB)) + +DT_COMPAT_NORDIC_NRF_EGU := nordic,nrf-egu + +config DT_HAS_NORDIC_NRF_EGU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EGU)) + +DT_COMPAT_NORDIC_NRF_EXMIF := nordic,nrf-exmif + +config DT_HAS_NORDIC_NRF_EXMIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EXMIF)) + +DT_COMPAT_NORDIC_NRF_FICR := nordic,nrf-ficr + +config DT_HAS_NORDIC_NRF_FICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_FICR)) + +DT_COMPAT_NORDIC_NRF_FLL16M := nordic,nrf-fll16m + +config DT_HAS_NORDIC_NRF_FLL16M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_FLL16M)) + +DT_COMPAT_NORDIC_NRF_GPIO := nordic,nrf-gpio + +config DT_HAS_NORDIC_NRF_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIO)) + +DT_COMPAT_NORDIC_NRF_GPIO_FORWARDER := nordic,nrf-gpio-forwarder + +config DT_HAS_NORDIC_NRF_GPIO_FORWARDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIO_FORWARDER)) + +DT_COMPAT_NORDIC_NRF_GPIOTE := nordic,nrf-gpiote + +config DT_HAS_NORDIC_NRF_GPIOTE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIOTE)) + +DT_COMPAT_NORDIC_NRF_GPREGRET := nordic,nrf-gpregret + +config DT_HAS_NORDIC_NRF_GPREGRET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPREGRET)) + +DT_COMPAT_NORDIC_NRF_GRTC := nordic,nrf-grtc + +config DT_HAS_NORDIC_NRF_GRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GRTC)) + +DT_COMPAT_NORDIC_NRF_HSFLL_GLOBAL := nordic,nrf-hsfll-global + +config DT_HAS_NORDIC_NRF_HSFLL_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HSFLL_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_HSFLL_LOCAL := nordic,nrf-hsfll-local + +config DT_HAS_NORDIC_NRF_HSFLL_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HSFLL_LOCAL)) + +DT_COMPAT_NORDIC_NRF_I2S := nordic,nrf-i2s + +config DT_HAS_NORDIC_NRF_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_I2S)) + +DT_COMPAT_NORDIC_NRF_IEEE802154 := nordic,nrf-ieee802154 + +config DT_HAS_NORDIC_NRF_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IEEE802154)) + +DT_COMPAT_NORDIC_NRF_IPC := nordic,nrf-ipc + +config DT_HAS_NORDIC_NRF_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPC)) + +DT_COMPAT_NORDIC_NRF_IPCT_GLOBAL := nordic,nrf-ipct-global + +config DT_HAS_NORDIC_NRF_IPCT_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPCT_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_IPCT_LOCAL := nordic,nrf-ipct-local + +config DT_HAS_NORDIC_NRF_IPCT_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPCT_LOCAL)) + +DT_COMPAT_NORDIC_NRF_IRON_HSFLL_LOCAL := nordic,nrf-iron-hsfll-local + +config DT_HAS_NORDIC_NRF_IRON_HSFLL_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IRON_HSFLL_LOCAL)) + +DT_COMPAT_NORDIC_NRF_KMU := nordic,nrf-kmu + +config DT_HAS_NORDIC_NRF_KMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_KMU)) + +DT_COMPAT_NORDIC_NRF_LED_MATRIX := nordic,nrf-led-matrix + +config DT_HAS_NORDIC_NRF_LED_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LED_MATRIX)) + +DT_COMPAT_NORDIC_NRF_LFCLK := nordic,nrf-lfclk + +config DT_HAS_NORDIC_NRF_LFCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LFCLK)) + +DT_COMPAT_NORDIC_NRF_LPCOMP := nordic,nrf-lpcomp + +config DT_HAS_NORDIC_NRF_LPCOMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LPCOMP)) + +DT_COMPAT_NORDIC_NRF_MPC := nordic,nrf-mpc + +config DT_HAS_NORDIC_NRF_MPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MPC)) + +DT_COMPAT_NORDIC_NRF_MPU := nordic,nrf-mpu + +config DT_HAS_NORDIC_NRF_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MPU)) + +DT_COMPAT_NORDIC_NRF_MRAMC := nordic,nrf-mramc + +config DT_HAS_NORDIC_NRF_MRAMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MRAMC)) + +DT_COMPAT_NORDIC_NRF_MUTEX := nordic,nrf-mutex + +config DT_HAS_NORDIC_NRF_MUTEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MUTEX)) + +DT_COMPAT_NORDIC_NRF_MWU := nordic,nrf-mwu + +config DT_HAS_NORDIC_NRF_MWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MWU)) + +DT_COMPAT_NORDIC_NRF_NFCT := nordic,nrf-nfct + +config DT_HAS_NORDIC_NRF_NFCT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_NFCT)) + +DT_COMPAT_NORDIC_NRF_NFCT_V2 := nordic,nrf-nfct-v2 + +config DT_HAS_NORDIC_NRF_NFCT_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_NFCT_V2)) + +DT_COMPAT_NORDIC_NRF_PDM := nordic,nrf-pdm + +config DT_HAS_NORDIC_NRF_PDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PDM)) + +DT_COMPAT_NORDIC_NRF_PINCTRL := nordic,nrf-pinctrl + +config DT_HAS_NORDIC_NRF_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PINCTRL)) + +DT_COMPAT_NORDIC_NRF_POWER := nordic,nrf-power + +config DT_HAS_NORDIC_NRF_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_POWER)) + +DT_COMPAT_NORDIC_NRF_PPI := nordic,nrf-ppi + +config DT_HAS_NORDIC_NRF_PPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PPI)) + +DT_COMPAT_NORDIC_NRF_PPIB := nordic,nrf-ppib + +config DT_HAS_NORDIC_NRF_PPIB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PPIB)) + +DT_COMPAT_NORDIC_NRF_PWM := nordic,nrf-pwm + +config DT_HAS_NORDIC_NRF_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PWM)) + +DT_COMPAT_NORDIC_NRF_QDEC := nordic,nrf-qdec + +config DT_HAS_NORDIC_NRF_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QDEC)) + +DT_COMPAT_NORDIC_NRF_QSPI := nordic,nrf-qspi + +config DT_HAS_NORDIC_NRF_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QSPI)) + +DT_COMPAT_NORDIC_NRF_QSPI_V2 := nordic,nrf-qspi-v2 + +config DT_HAS_NORDIC_NRF_QSPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QSPI_V2)) + +DT_COMPAT_NORDIC_NRF_RADIO := nordic,nrf-radio + +config DT_HAS_NORDIC_NRF_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RADIO)) + +DT_COMPAT_NORDIC_NRF_RESET := nordic,nrf-reset + +config DT_HAS_NORDIC_NRF_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RESET)) + +DT_COMPAT_NORDIC_NRF_RESETINFO := nordic,nrf-resetinfo + +config DT_HAS_NORDIC_NRF_RESETINFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RESETINFO)) + +DT_COMPAT_NORDIC_NRF_RNG := nordic,nrf-rng + +config DT_HAS_NORDIC_NRF_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RNG)) + +DT_COMPAT_NORDIC_NRF_RTC := nordic,nrf-rtc + +config DT_HAS_NORDIC_NRF_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RTC)) + +DT_COMPAT_NORDIC_NRF_SAADC := nordic,nrf-saadc + +config DT_HAS_NORDIC_NRF_SAADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SAADC)) + +DT_COMPAT_NORDIC_NRF_SPI := nordic,nrf-spi + +config DT_HAS_NORDIC_NRF_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPI)) + +DT_COMPAT_NORDIC_NRF_SPIM := nordic,nrf-spim + +config DT_HAS_NORDIC_NRF_SPIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPIM)) + +DT_COMPAT_NORDIC_NRF_SPIS := nordic,nrf-spis + +config DT_HAS_NORDIC_NRF_SPIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPIS)) + +DT_COMPAT_NORDIC_NRF_SPU := nordic,nrf-spu + +config DT_HAS_NORDIC_NRF_SPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPU)) + +DT_COMPAT_NORDIC_NRF_SW_PWM := nordic,nrf-sw-pwm + +config DT_HAS_NORDIC_NRF_SW_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SW_PWM)) + +DT_COMPAT_NORDIC_NRF_SWI := nordic,nrf-swi + +config DT_HAS_NORDIC_NRF_SWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SWI)) + +DT_COMPAT_NORDIC_NRF_TBM := nordic,nrf-tbm + +config DT_HAS_NORDIC_NRF_TBM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TBM)) + +DT_COMPAT_NORDIC_NRF_TDM := nordic,nrf-tdm + +config DT_HAS_NORDIC_NRF_TDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TDM)) + +DT_COMPAT_NORDIC_NRF_TEMP := nordic,nrf-temp + +config DT_HAS_NORDIC_NRF_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TEMP)) + +DT_COMPAT_NORDIC_NRF_TEMP_NRFS := nordic,nrf-temp-nrfs + +config DT_HAS_NORDIC_NRF_TEMP_NRFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TEMP_NRFS)) + +DT_COMPAT_NORDIC_NRF_TIMER := nordic,nrf-timer + +config DT_HAS_NORDIC_NRF_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TIMER)) + +DT_COMPAT_NORDIC_NRF_TWI := nordic,nrf-twi + +config DT_HAS_NORDIC_NRF_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWI)) + +DT_COMPAT_NORDIC_NRF_TWIM := nordic,nrf-twim + +config DT_HAS_NORDIC_NRF_TWIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWIM)) + +DT_COMPAT_NORDIC_NRF_TWIS := nordic,nrf-twis + +config DT_HAS_NORDIC_NRF_TWIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWIS)) + +DT_COMPAT_NORDIC_NRF_UART := nordic,nrf-uart + +config DT_HAS_NORDIC_NRF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UART)) + +DT_COMPAT_NORDIC_NRF_UARTE := nordic,nrf-uarte + +config DT_HAS_NORDIC_NRF_UARTE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UARTE)) + +DT_COMPAT_NORDIC_NRF_UICR := nordic,nrf-uicr + +config DT_HAS_NORDIC_NRF_UICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UICR)) + +DT_COMPAT_NORDIC_NRF_UICR_V2 := nordic,nrf-uicr-v2 + +config DT_HAS_NORDIC_NRF_UICR_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UICR_V2)) + +DT_COMPAT_NORDIC_NRF_USBD := nordic,nrf-usbd + +config DT_HAS_NORDIC_NRF_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBD)) + +DT_COMPAT_NORDIC_NRF_USBREG := nordic,nrf-usbreg + +config DT_HAS_NORDIC_NRF_USBREG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBREG)) + +DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_RX := nordic,nrf-vevif-event-rx + +config DT_HAS_NORDIC_NRF_VEVIF_EVENT_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_RX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_TX := nordic,nrf-vevif-event-tx + +config DT_HAS_NORDIC_NRF_VEVIF_EVENT_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_TX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_TASK_RX := nordic,nrf-vevif-task-rx + +config DT_HAS_NORDIC_NRF_VEVIF_TASK_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_TASK_RX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_TASK_TX := nordic,nrf-vevif-task-tx + +config DT_HAS_NORDIC_NRF_VEVIF_TASK_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_TASK_TX)) + +DT_COMPAT_NORDIC_NRF_VMC := nordic,nrf-vmc + +config DT_HAS_NORDIC_NRF_VMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VMC)) + +DT_COMPAT_NORDIC_NRF_VPR_COPROCESSOR := nordic,nrf-vpr-coprocessor + +config DT_HAS_NORDIC_NRF_VPR_COPROCESSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VPR_COPROCESSOR)) + +DT_COMPAT_NORDIC_NRF_WDT := nordic,nrf-wdt + +config DT_HAS_NORDIC_NRF_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_WDT)) + +DT_COMPAT_NORDIC_NRF21540_FEM := nordic,nrf21540-fem + +config DT_HAS_NORDIC_NRF21540_FEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF21540_FEM)) + +DT_COMPAT_NORDIC_NRF21540_FEM_SPI := nordic,nrf21540-fem-spi + +config DT_HAS_NORDIC_NRF21540_FEM_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF21540_FEM_SPI)) + +DT_COMPAT_NORDIC_NRF51_FLASH_CONTROLLER := nordic,nrf51-flash-controller + +config DT_HAS_NORDIC_NRF51_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF51_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF51_HFXO := nordic,nrf51-hfxo + +config DT_HAS_NORDIC_NRF51_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF51_HFXO)) + +DT_COMPAT_NORDIC_NRF52_FLASH_CONTROLLER := nordic,nrf52-flash-controller + +config DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF52_HFXO := nordic,nrf52-hfxo + +config DT_HAS_NORDIC_NRF52_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52_HFXO)) + +DT_COMPAT_NORDIC_NRF52X_REGULATOR_HV := nordic,nrf52x-regulator-hv + +config DT_HAS_NORDIC_NRF52X_REGULATOR_HV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52X_REGULATOR_HV)) + +DT_COMPAT_NORDIC_NRF53_FLASH_CONTROLLER := nordic,nrf53-flash-controller + +config DT_HAS_NORDIC_NRF53_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF53_HFXO := nordic,nrf53-hfxo + +config DT_HAS_NORDIC_NRF53_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_HFXO)) + +DT_COMPAT_NORDIC_NRF53_LFXO := nordic,nrf53-lfxo + +config DT_HAS_NORDIC_NRF53_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_LFXO)) + +DT_COMPAT_NORDIC_NRF53_OSCILLATORS := nordic,nrf53-oscillators + +config DT_HAS_NORDIC_NRF53_OSCILLATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_OSCILLATORS)) + +DT_COMPAT_NORDIC_NRF53X_REGULATOR_HV := nordic,nrf53x-regulator-hv + +config DT_HAS_NORDIC_NRF53X_REGULATOR_HV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53X_REGULATOR_HV)) + +DT_COMPAT_NORDIC_NRF53X_REGULATORS := nordic,nrf53x-regulators + +config DT_HAS_NORDIC_NRF53X_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53X_REGULATORS)) + +DT_COMPAT_NORDIC_NRF54H_HFXO := nordic,nrf54h-hfxo + +config DT_HAS_NORDIC_NRF54H_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54H_HFXO)) + +DT_COMPAT_NORDIC_NRF54H_LFXO := nordic,nrf54h-lfxo + +config DT_HAS_NORDIC_NRF54H_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54H_LFXO)) + +DT_COMPAT_NORDIC_NRF54L_HFXO := nordic,nrf54l-hfxo + +config DT_HAS_NORDIC_NRF54L_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_HFXO)) + +DT_COMPAT_NORDIC_NRF54L_LFXO := nordic,nrf54l-lfxo + +config DT_HAS_NORDIC_NRF54L_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_LFXO)) + +DT_COMPAT_NORDIC_NRF54L_REGULATORS := nordic,nrf54l-regulators + +config DT_HAS_NORDIC_NRF54L_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_REGULATORS)) + +DT_COMPAT_NORDIC_NRF5X_REGULATOR := nordic,nrf5x-regulator + +config DT_HAS_NORDIC_NRF5X_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF5X_REGULATOR)) + +DT_COMPAT_NORDIC_NRF7000_COEX := nordic,nrf7000-coex + +config DT_HAS_NORDIC_NRF7000_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_COEX)) + +DT_COMPAT_NORDIC_NRF7000_QSPI := nordic,nrf7000-qspi + +config DT_HAS_NORDIC_NRF7000_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_QSPI)) + +DT_COMPAT_NORDIC_NRF7000_SPI := nordic,nrf7000-spi + +config DT_HAS_NORDIC_NRF7000_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_SPI)) + +DT_COMPAT_NORDIC_NRF7001_COEX := nordic,nrf7001-coex + +config DT_HAS_NORDIC_NRF7001_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_COEX)) + +DT_COMPAT_NORDIC_NRF7001_QSPI := nordic,nrf7001-qspi + +config DT_HAS_NORDIC_NRF7001_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_QSPI)) + +DT_COMPAT_NORDIC_NRF7001_SPI := nordic,nrf7001-spi + +config DT_HAS_NORDIC_NRF7001_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_SPI)) + +DT_COMPAT_NORDIC_NRF7002_COEX := nordic,nrf7002-coex + +config DT_HAS_NORDIC_NRF7002_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_COEX)) + +DT_COMPAT_NORDIC_NRF7002_QSPI := nordic,nrf7002-qspi + +config DT_HAS_NORDIC_NRF7002_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_QSPI)) + +DT_COMPAT_NORDIC_NRF7002_SPI := nordic,nrf7002-spi + +config DT_HAS_NORDIC_NRF7002_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_SPI)) + +DT_COMPAT_NORDIC_NRF91_FLASH_CONTROLLER := nordic,nrf91-flash-controller + +config DT_HAS_NORDIC_NRF91_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF91_SLM := nordic,nrf91-slm + +config DT_HAS_NORDIC_NRF91_SLM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91_SLM)) + +DT_COMPAT_NORDIC_NRF91X_REGULATORS := nordic,nrf91x-regulators + +config DT_HAS_NORDIC_NRF91X_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91X_REGULATORS)) + +DT_COMPAT_NORDIC_NRFS_AUDIOPLL := nordic,nrfs-audiopll + +config DT_HAS_NORDIC_NRFS_AUDIOPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_AUDIOPLL)) + +DT_COMPAT_NORDIC_NRFS_GDPWR := nordic,nrfs-gdpwr + +config DT_HAS_NORDIC_NRFS_GDPWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_GDPWR)) + +DT_COMPAT_NORDIC_NRFS_SWEXT := nordic,nrfs-swext + +config DT_HAS_NORDIC_NRFS_SWEXT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_SWEXT)) + +DT_COMPAT_NORDIC_OWNED_MEMORY := nordic,owned-memory + +config DT_HAS_NORDIC_OWNED_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_OWNED_MEMORY)) + +DT_COMPAT_NORDIC_OWNED_PARTITIONS := nordic,owned-partitions + +config DT_HAS_NORDIC_OWNED_PARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_OWNED_PARTITIONS)) + +DT_COMPAT_NORDIC_QSPI_NOR := nordic,qspi-nor + +config DT_HAS_NORDIC_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_QSPI_NOR)) + +DT_COMPAT_NORDIC_RRAM_CONTROLLER := nordic,rram-controller + +config DT_HAS_NORDIC_RRAM_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_RRAM_CONTROLLER)) + +DT_COMPAT_NORDIC_VPR := nordic,vpr + +config DT_HAS_NORDIC_VPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_VPR)) + +DT_COMPAT_NORDIC_WLAN := nordic,wlan + +config DT_HAS_NORDIC_WLAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_WLAN)) + +DT_COMPAT_NORDIC_THINGY53_EDGE_CONNECTOR := nordic-thingy53-edge-connector + +config DT_HAS_NORDIC_THINGY53_EDGE_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_THINGY53_EDGE_CONNECTOR)) + +DT_COMPAT_NORITAKE_ITRON := noritake,itron + +config DT_HAS_NORITAKE_ITRON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORITAKE_ITRON)) + +DT_COMPAT_NS16550 := ns16550 + +config DT_HAS_NS16550_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NS16550)) + +DT_COMPAT_NTC_THERMISTOR_GENERIC := ntc-thermistor-generic + +config DT_HAS_NTC_THERMISTOR_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NTC_THERMISTOR_GENERIC)) + +DT_COMPAT_NUCLEI_BUMBLEBEE := nuclei,bumblebee + +config DT_HAS_NUCLEI_BUMBLEBEE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_BUMBLEBEE)) + +DT_COMPAT_NUCLEI_ECLIC := nuclei,eclic + +config DT_HAS_NUCLEI_ECLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_ECLIC)) + +DT_COMPAT_NUCLEI_SYSTIMER := nuclei,systimer + +config DT_HAS_NUCLEI_SYSTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_SYSTIMER)) + +DT_COMPAT_NUVOTON_ADC_CMP := nuvoton,adc-cmp + +config DT_HAS_NUVOTON_ADC_CMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_ADC_CMP)) + +DT_COMPAT_NUVOTON_NCT38XX := nuvoton,nct38xx + +config DT_HAS_NUVOTON_NCT38XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO := nuvoton,nct38xx-gpio + +config DT_HAS_NUVOTON_NCT38XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO_ALERT := nuvoton,nct38xx-gpio-alert + +config DT_HAS_NUVOTON_NCT38XX_GPIO_ALERT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO_ALERT)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO_PORT := nuvoton,nct38xx-gpio-port + +config DT_HAS_NUVOTON_NCT38XX_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO_PORT)) + +DT_COMPAT_NUVOTON_NPCM_PCC := nuvoton,npcm-pcc + +config DT_HAS_NUVOTON_NPCM_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCM_PCC)) + +DT_COMPAT_NUVOTON_NPCX_ADC := nuvoton,npcx-adc + +config DT_HAS_NUVOTON_NPCX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ADC)) + +DT_COMPAT_NUVOTON_NPCX_BBRAM := nuvoton,npcx-bbram + +config DT_HAS_NUVOTON_NPCX_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_BBRAM)) + +DT_COMPAT_NUVOTON_NPCX_BOOTER_VARIANT := nuvoton,npcx-booter-variant + +config DT_HAS_NUVOTON_NPCX_BOOTER_VARIANT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_BOOTER_VARIANT)) + +DT_COMPAT_NUVOTON_NPCX_DRBG := nuvoton,npcx-drbg + +config DT_HAS_NUVOTON_NPCX_DRBG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_DRBG)) + +DT_COMPAT_NUVOTON_NPCX_ESPI := nuvoton,npcx-espi + +config DT_HAS_NUVOTON_NPCX_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI)) + +DT_COMPAT_NUVOTON_NPCX_ESPI_TAF := nuvoton,npcx-espi-taf + +config DT_HAS_NUVOTON_NPCX_ESPI_TAF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI_TAF)) + +DT_COMPAT_NUVOTON_NPCX_ESPI_VW_CONF := nuvoton,npcx-espi-vw-conf + +config DT_HAS_NUVOTON_NPCX_ESPI_VW_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI_VW_CONF)) + +DT_COMPAT_NUVOTON_NPCX_FIU_NOR := nuvoton,npcx-fiu-nor + +config DT_HAS_NUVOTON_NPCX_FIU_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_FIU_NOR)) + +DT_COMPAT_NUVOTON_NPCX_FIU_QSPI := nuvoton,npcx-fiu-qspi + +config DT_HAS_NUVOTON_NPCX_FIU_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_FIU_QSPI)) + +DT_COMPAT_NUVOTON_NPCX_GDMA := nuvoton,npcx-gdma + +config DT_HAS_NUVOTON_NPCX_GDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_GDMA)) + +DT_COMPAT_NUVOTON_NPCX_GPIO := nuvoton,npcx-gpio + +config DT_HAS_NUVOTON_NPCX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_GPIO)) + +DT_COMPAT_NUVOTON_NPCX_HOST_SUB := nuvoton,npcx-host-sub + +config DT_HAS_NUVOTON_NPCX_HOST_SUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_HOST_SUB)) + +DT_COMPAT_NUVOTON_NPCX_HOST_UART := nuvoton,npcx-host-uart + +config DT_HAS_NUVOTON_NPCX_HOST_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_HOST_UART)) + +DT_COMPAT_NUVOTON_NPCX_I2C_CTRL := nuvoton,npcx-i2c-ctrl + +config DT_HAS_NUVOTON_NPCX_I2C_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I2C_CTRL)) + +DT_COMPAT_NUVOTON_NPCX_I2C_PORT := nuvoton,npcx-i2c-port + +config DT_HAS_NUVOTON_NPCX_I2C_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I2C_PORT)) + +DT_COMPAT_NUVOTON_NPCX_I3C := nuvoton,npcx-i3c + +config DT_HAS_NUVOTON_NPCX_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I3C)) + +DT_COMPAT_NUVOTON_NPCX_ITIM_TIMER := nuvoton,npcx-itim-timer + +config DT_HAS_NUVOTON_NPCX_ITIM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ITIM_TIMER)) + +DT_COMPAT_NUVOTON_NPCX_KBD := nuvoton,npcx-kbd + +config DT_HAS_NUVOTON_NPCX_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_KBD)) + +DT_COMPAT_NUVOTON_NPCX_LEAKAGE_IO := nuvoton,npcx-leakage-io + +config DT_HAS_NUVOTON_NPCX_LEAKAGE_IO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LEAKAGE_IO)) + +DT_COMPAT_NUVOTON_NPCX_LVOLCTRL_CONF := nuvoton,npcx-lvolctrl-conf + +config DT_HAS_NUVOTON_NPCX_LVOLCTRL_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LVOLCTRL_CONF)) + +DT_COMPAT_NUVOTON_NPCX_MIWU := nuvoton,npcx-miwu + +config DT_HAS_NUVOTON_NPCX_MIWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU)) + +DT_COMPAT_NUVOTON_NPCX_MIWU_INT_MAP := nuvoton,npcx-miwu-int-map + +config DT_HAS_NUVOTON_NPCX_MIWU_INT_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU_INT_MAP)) + +DT_COMPAT_NUVOTON_NPCX_MIWU_WUI_MAP := nuvoton,npcx-miwu-wui-map + +config DT_HAS_NUVOTON_NPCX_MIWU_WUI_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU_WUI_MAP)) + +DT_COMPAT_NUVOTON_NPCX_PCC := nuvoton,npcx-pcc + +config DT_HAS_NUVOTON_NPCX_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PCC)) + +DT_COMPAT_NUVOTON_NPCX_PECI := nuvoton,npcx-peci + +config DT_HAS_NUVOTON_NPCX_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PECI)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL := nuvoton,npcx-pinctrl + +config DT_HAS_NUVOTON_NPCX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_CONF := nuvoton,npcx-pinctrl-conf + +config DT_HAS_NUVOTON_NPCX_PINCTRL_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_CONF)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_DEF := nuvoton,npcx-pinctrl-def + +config DT_HAS_NUVOTON_NPCX_PINCTRL_DEF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_DEF)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_NPCKN := nuvoton,npcx-pinctrl-npckn + +config DT_HAS_NUVOTON_NPCX_PINCTRL_NPCKN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_NPCKN)) + +DT_COMPAT_NUVOTON_NPCX_POWER_PSL := nuvoton,npcx-power-psl + +config DT_HAS_NUVOTON_NPCX_POWER_PSL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_POWER_PSL)) + +DT_COMPAT_NUVOTON_NPCX_PS2_CHANNEL := nuvoton,npcx-ps2-channel + +config DT_HAS_NUVOTON_NPCX_PS2_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PS2_CHANNEL)) + +DT_COMPAT_NUVOTON_NPCX_PS2_CTRL := nuvoton,npcx-ps2-ctrl + +config DT_HAS_NUVOTON_NPCX_PS2_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PS2_CTRL)) + +DT_COMPAT_NUVOTON_NPCX_PWM := nuvoton,npcx-pwm + +config DT_HAS_NUVOTON_NPCX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PWM)) + +DT_COMPAT_NUVOTON_NPCX_RST := nuvoton,npcx-rst + +config DT_HAS_NUVOTON_NPCX_RST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_RST)) + +DT_COMPAT_NUVOTON_NPCX_SCFG := nuvoton,npcx-scfg + +config DT_HAS_NUVOTON_NPCX_SCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SCFG)) + +DT_COMPAT_NUVOTON_NPCX_SHA := nuvoton,npcx-sha + +config DT_HAS_NUVOTON_NPCX_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHA)) + +DT_COMPAT_NUVOTON_NPCX_SHI := nuvoton,npcx-shi + +config DT_HAS_NUVOTON_NPCX_SHI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHI)) + +DT_COMPAT_NUVOTON_NPCX_SHI_ENHANCED := nuvoton,npcx-shi-enhanced + +config DT_HAS_NUVOTON_NPCX_SHI_ENHANCED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHI_ENHANCED)) + +DT_COMPAT_NUVOTON_NPCX_SOC_ID := nuvoton,npcx-soc-id + +config DT_HAS_NUVOTON_NPCX_SOC_ID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SOC_ID)) + +DT_COMPAT_NUVOTON_NPCX_SPIP := nuvoton,npcx-spip + +config DT_HAS_NUVOTON_NPCX_SPIP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SPIP)) + +DT_COMPAT_NUVOTON_NPCX_TACH := nuvoton,npcx-tach + +config DT_HAS_NUVOTON_NPCX_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_TACH)) + +DT_COMPAT_NUVOTON_NPCX_UART := nuvoton,npcx-uart + +config DT_HAS_NUVOTON_NPCX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_UART)) + +DT_COMPAT_NUVOTON_NPCX_UART_NPCKN := nuvoton,npcx-uart-npckn + +config DT_HAS_NUVOTON_NPCX_UART_NPCKN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_UART_NPCKN)) + +DT_COMPAT_NUVOTON_NPCX_WATCHDOG := nuvoton,npcx-watchdog + +config DT_HAS_NUVOTON_NPCX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_WATCHDOG)) + +DT_COMPAT_NUVOTON_NUMAKER_ADC := nuvoton,numaker-adc + +config DT_HAS_NUVOTON_NUMAKER_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_ADC)) + +DT_COMPAT_NUVOTON_NUMAKER_CANFD := nuvoton,numaker-canfd + +config DT_HAS_NUVOTON_NUMAKER_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_CANFD)) + +DT_COMPAT_NUVOTON_NUMAKER_ETHERNET := nuvoton,numaker-ethernet + +config DT_HAS_NUVOTON_NUMAKER_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_ETHERNET)) + +DT_COMPAT_NUVOTON_NUMAKER_FMC := nuvoton,numaker-fmc + +config DT_HAS_NUVOTON_NUMAKER_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_FMC)) + +DT_COMPAT_NUVOTON_NUMAKER_GPIO := nuvoton,numaker-gpio + +config DT_HAS_NUVOTON_NUMAKER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_GPIO)) + +DT_COMPAT_NUVOTON_NUMAKER_I2C := nuvoton,numaker-i2c + +config DT_HAS_NUVOTON_NUMAKER_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_I2C)) + +DT_COMPAT_NUVOTON_NUMAKER_NPU := nuvoton,numaker-npu + +config DT_HAS_NUVOTON_NUMAKER_NPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_NPU)) + +DT_COMPAT_NUVOTON_NUMAKER_PCC := nuvoton,numaker-pcc + +config DT_HAS_NUVOTON_NUMAKER_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PCC)) + +DT_COMPAT_NUVOTON_NUMAKER_PINCTRL := nuvoton,numaker-pinctrl + +config DT_HAS_NUVOTON_NUMAKER_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PINCTRL)) + +DT_COMPAT_NUVOTON_NUMAKER_PPC := nuvoton,numaker-ppc + +config DT_HAS_NUVOTON_NUMAKER_PPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PPC)) + +DT_COMPAT_NUVOTON_NUMAKER_PWM := nuvoton,numaker-pwm + +config DT_HAS_NUVOTON_NUMAKER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PWM)) + +DT_COMPAT_NUVOTON_NUMAKER_RMC := nuvoton,numaker-rmc + +config DT_HAS_NUVOTON_NUMAKER_RMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RMC)) + +DT_COMPAT_NUVOTON_NUMAKER_RST := nuvoton,numaker-rst + +config DT_HAS_NUVOTON_NUMAKER_RST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RST)) + +DT_COMPAT_NUVOTON_NUMAKER_RTC := nuvoton,numaker-rtc + +config DT_HAS_NUVOTON_NUMAKER_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RTC)) + +DT_COMPAT_NUVOTON_NUMAKER_SCC := nuvoton,numaker-scc + +config DT_HAS_NUVOTON_NUMAKER_SCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_SCC)) + +DT_COMPAT_NUVOTON_NUMAKER_SPI := nuvoton,numaker-spi + +config DT_HAS_NUVOTON_NUMAKER_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_SPI)) + +DT_COMPAT_NUVOTON_NUMAKER_TCPC := nuvoton,numaker-tcpc + +config DT_HAS_NUVOTON_NUMAKER_TCPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_TCPC)) + +DT_COMPAT_NUVOTON_NUMAKER_UART := nuvoton,numaker-uart + +config DT_HAS_NUVOTON_NUMAKER_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_UART)) + +DT_COMPAT_NUVOTON_NUMAKER_USBD := nuvoton,numaker-usbd + +config DT_HAS_NUVOTON_NUMAKER_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_USBD)) + +DT_COMPAT_NUVOTON_NUMAKER_VBUS := nuvoton,numaker-vbus + +config DT_HAS_NUVOTON_NUMAKER_VBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_VBUS)) + +DT_COMPAT_NUVOTON_NUMAKER_WWDT := nuvoton,numaker-wwdt + +config DT_HAS_NUVOTON_NUMAKER_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_WWDT)) + +DT_COMPAT_NUVOTON_NUMICRO_GPIO := nuvoton,numicro-gpio + +config DT_HAS_NUVOTON_NUMICRO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_GPIO)) + +DT_COMPAT_NUVOTON_NUMICRO_PINCTRL := nuvoton,numicro-pinctrl + +config DT_HAS_NUVOTON_NUMICRO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_PINCTRL)) + +DT_COMPAT_NUVOTON_NUMICRO_UART := nuvoton,numicro-uart + +config DT_HAS_NUVOTON_NUMICRO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_UART)) + +DT_COMPAT_NVME_CONTROLLER := nvme-controller + +config DT_HAS_NVME_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NVME_CONTROLLER)) + +DT_COMPAT_NXP_ADC12 := nxp,adc12 + +config DT_HAS_NXP_ADC12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ADC12)) + +DT_COMPAT_NXP_AON_WAKEUP_PIN := nxp,aon-wakeup-pin + +config DT_HAS_NXP_AON_WAKEUP_PIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_AON_WAKEUP_PIN)) + +DT_COMPAT_NXP_BT_HCI_UART := nxp,bt-hci-uart + +config DT_HAS_NXP_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_BT_HCI_UART)) + +DT_COMPAT_NXP_CAM_44PINS_CONNECTOR := nxp,cam-44pins-connector + +config DT_HAS_NXP_CAM_44PINS_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CAM_44PINS_CONNECTOR)) + +DT_COMPAT_NXP_CMC := nxp,cmc + +config DT_HAS_NXP_CMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CMC)) + +DT_COMPAT_NXP_CMC_RESET_CAUSE := nxp,cmc-reset-cause + +config DT_HAS_NXP_CMC_RESET_CAUSE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CMC_RESET_CAUSE)) + +DT_COMPAT_NXP_CMP := nxp,cmp + +config DT_HAS_NXP_CMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CMP)) + +DT_COMPAT_NXP_COP := nxp,cop + +config DT_HAS_NXP_COP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_COP)) + +DT_COMPAT_NXP_CTIMER_PWM := nxp,ctimer-pwm + +config DT_HAS_NXP_CTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CTIMER_PWM)) + +DT_COMPAT_NXP_DAC12 := nxp,dac12 + +config DT_HAS_NXP_DAC12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAC12)) + +DT_COMPAT_NXP_DAI_ESAI := nxp,dai-esai + +config DT_HAS_NXP_DAI_ESAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_ESAI)) + +DT_COMPAT_NXP_DAI_MICFIL := nxp,dai-micfil + +config DT_HAS_NXP_DAI_MICFIL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_MICFIL)) + +DT_COMPAT_NXP_DAI_SAI := nxp,dai-sai + +config DT_HAS_NXP_DAI_SAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_SAI)) + +DT_COMPAT_NXP_DCNANO_LCDIF := nxp,dcnano-lcdif + +config DT_HAS_NXP_DCNANO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DCNANO_LCDIF)) + +DT_COMPAT_NXP_DMIC := nxp,dmic + +config DT_HAS_NXP_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DMIC)) + +DT_COMPAT_NXP_DSPI := nxp,dspi + +config DT_HAS_NXP_DSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DSPI)) + +DT_COMPAT_NXP_EDMA := nxp,edma + +config DT_HAS_NXP_EDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EDMA)) + +DT_COMPAT_NXP_EHCI := nxp,ehci + +config DT_HAS_NXP_EHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EHCI)) + +DT_COMPAT_NXP_ELE_TRNG := nxp,ele-trng + +config DT_HAS_NXP_ELE_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ELE_TRNG)) + +DT_COMPAT_NXP_ELS := nxp,els + +config DT_HAS_NXP_ELS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ELS)) + +DT_COMPAT_NXP_ELS_TRNG := nxp,els-trng + +config DT_HAS_NXP_ELS_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ELS_TRNG)) + +DT_COMPAT_NXP_ENET := nxp,enet + +config DT_HAS_NXP_ENET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET)) + +DT_COMPAT_NXP_ENET_MAC := nxp,enet-mac + +config DT_HAS_NXP_ENET_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_MAC)) + +DT_COMPAT_NXP_ENET_MDIO := nxp,enet-mdio + +config DT_HAS_NXP_ENET_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_MDIO)) + +DT_COMPAT_NXP_ENET_PTP_CLOCK := nxp,enet-ptp-clock + +config DT_HAS_NXP_ENET_PTP_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_PTP_CLOCK)) + +DT_COMPAT_NXP_ENET_QOS := nxp,enet-qos + +config DT_HAS_NXP_ENET_QOS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS)) + +DT_COMPAT_NXP_ENET_QOS_MAC := nxp,enet-qos-mac + +config DT_HAS_NXP_ENET_QOS_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS_MAC)) + +DT_COMPAT_NXP_ENET_QOS_MDIO := nxp,enet-qos-mdio + +config DT_HAS_NXP_ENET_QOS_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS_MDIO)) + +DT_COMPAT_NXP_ENET1G := nxp,enet1g + +config DT_HAS_NXP_ENET1G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET1G)) + +DT_COMPAT_NXP_EWM := nxp,ewm + +config DT_HAS_NXP_EWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EWM)) + +DT_COMPAT_NXP_FIRC := nxp,firc + +config DT_HAS_NXP_FIRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FIRC)) + +DT_COMPAT_NXP_FLEXCAN := nxp,flexcan + +config DT_HAS_NXP_FLEXCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXCAN)) + +DT_COMPAT_NXP_FLEXCAN_FD := nxp,flexcan-fd + +config DT_HAS_NXP_FLEXCAN_FD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXCAN_FD)) + +DT_COMPAT_NXP_FLEXIO := nxp,flexio + +config DT_HAS_NXP_FLEXIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO)) + +DT_COMPAT_NXP_FLEXIO_PWM := nxp,flexio-pwm + +config DT_HAS_NXP_FLEXIO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO_PWM)) + +DT_COMPAT_NXP_FLEXIO_SPI := nxp,flexio-spi + +config DT_HAS_NXP_FLEXIO_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO_SPI)) + +DT_COMPAT_NXP_FLEXPWM := nxp,flexpwm + +config DT_HAS_NXP_FLEXPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXPWM)) + +DT_COMPAT_NXP_FLEXRAM := nxp,flexram + +config DT_HAS_NXP_FLEXRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXRAM)) + +DT_COMPAT_NXP_FS26_WDOG := nxp,fs26-wdog + +config DT_HAS_NXP_FS26_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FS26_WDOG)) + +DT_COMPAT_NXP_FTM := nxp,ftm + +config DT_HAS_NXP_FTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FTM)) + +DT_COMPAT_NXP_FTM_PWM := nxp,ftm-pwm + +config DT_HAS_NXP_FTM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FTM_PWM)) + +DT_COMPAT_NXP_FXAS21002 := nxp,fxas21002 + +config DT_HAS_NXP_FXAS21002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXAS21002)) + +DT_COMPAT_NXP_FXLS8974 := nxp,fxls8974 + +config DT_HAS_NXP_FXLS8974_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXLS8974)) + +DT_COMPAT_NXP_FXOS8700 := nxp,fxos8700 + +config DT_HAS_NXP_FXOS8700_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXOS8700)) + +DT_COMPAT_NXP_FXOSC := nxp,fxosc + +config DT_HAS_NXP_FXOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXOSC)) + +DT_COMPAT_NXP_GAU_ADC := nxp,gau-adc + +config DT_HAS_NXP_GAU_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GAU_ADC)) + +DT_COMPAT_NXP_GAU_DAC := nxp,gau-dac + +config DT_HAS_NXP_GAU_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GAU_DAC)) + +DT_COMPAT_NXP_GPIO_CLUSTER := nxp,gpio-cluster + +config DT_HAS_NXP_GPIO_CLUSTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GPIO_CLUSTER)) + +DT_COMPAT_NXP_GPT_HW_TIMER := nxp,gpt-hw-timer + +config DT_HAS_NXP_GPT_HW_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GPT_HW_TIMER)) + +DT_COMPAT_NXP_HCI_BLE := nxp,hci-ble + +config DT_HAS_NXP_HCI_BLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HCI_BLE)) + +DT_COMPAT_NXP_HDLC_RCP_IF := nxp,hdlc-rcp-if + +config DT_HAS_NXP_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HDLC_RCP_IF)) + +DT_COMPAT_NXP_I2C_TSC_FPC := nxp,i2c-tsc-fpc + +config DT_HAS_NXP_I2C_TSC_FPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_I2C_TSC_FPC)) + +DT_COMPAT_NXP_IAP_FMC11 := nxp,iap-fmc11 + +config DT_HAS_NXP_IAP_FMC11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC11)) + +DT_COMPAT_NXP_IAP_FMC54 := nxp,iap-fmc54 + +config DT_HAS_NXP_IAP_FMC54_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC54)) + +DT_COMPAT_NXP_IAP_FMC55 := nxp,iap-fmc55 + +config DT_HAS_NXP_IAP_FMC55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC55)) + +DT_COMPAT_NXP_IAP_FMC553 := nxp,iap-fmc553 + +config DT_HAS_NXP_IAP_FMC553_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC553)) + +DT_COMPAT_NXP_II2C := nxp,ii2c + +config DT_HAS_NXP_II2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_II2C)) + +DT_COMPAT_NXP_IMX_ANATOP := nxp,imx-anatop + +config DT_HAS_NXP_IMX_ANATOP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ANATOP)) + +DT_COMPAT_NXP_IMX_BLKCTRL_NS_AON := nxp,imx-blkctrl-ns-aon + +config DT_HAS_NXP_IMX_BLKCTRL_NS_AON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_BLKCTRL_NS_AON)) + +DT_COMPAT_NXP_IMX_BLKCTRL_WAKEUP := nxp,imx-blkctrl-wakeup + +config DT_HAS_NXP_IMX_BLKCTRL_WAKEUP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_BLKCTRL_WAKEUP)) + +DT_COMPAT_NXP_IMX_CAAM := nxp,imx-caam + +config DT_HAS_NXP_IMX_CAAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CAAM)) + +DT_COMPAT_NXP_IMX_CCM := nxp,imx-ccm + +config DT_HAS_NXP_IMX_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM)) + +DT_COMPAT_NXP_IMX_CCM_FNPLL := nxp,imx-ccm-fnpll + +config DT_HAS_NXP_IMX_CCM_FNPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM_FNPLL)) + +DT_COMPAT_NXP_IMX_CCM_REV2 := nxp,imx-ccm-rev2 + +config DT_HAS_NXP_IMX_CCM_REV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM_REV2)) + +DT_COMPAT_NXP_IMX_CSI := nxp,imx-csi + +config DT_HAS_NXP_IMX_CSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CSI)) + +DT_COMPAT_NXP_IMX_DTCM := nxp,imx-dtcm + +config DT_HAS_NXP_IMX_DTCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_DTCM)) + +DT_COMPAT_NXP_IMX_ECSPI := nxp,imx-ecspi + +config DT_HAS_NXP_IMX_ECSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ECSPI)) + +DT_COMPAT_NXP_IMX_ELCDIF := nxp,imx-elcdif + +config DT_HAS_NXP_IMX_ELCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ELCDIF)) + +DT_COMPAT_NXP_IMX_EPIT := nxp,imx-epit + +config DT_HAS_NXP_IMX_EPIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_EPIT)) + +DT_COMPAT_NXP_IMX_FLEXSPI := nxp,imx-flexspi + +config DT_HAS_NXP_IMX_FLEXSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI)) + +DT_COMPAT_NXP_IMX_FLEXSPI_APS6404L := nxp,imx-flexspi-aps6404l + +config DT_HAS_NXP_IMX_FLEXSPI_APS6404L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_APS6404L)) + +DT_COMPAT_NXP_IMX_FLEXSPI_APS6408L := nxp,imx-flexspi-aps6408l + +config DT_HAS_NXP_IMX_FLEXSPI_APS6408L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_APS6408L)) + +DT_COMPAT_NXP_IMX_FLEXSPI_HYPERFLASH := nxp,imx-flexspi-hyperflash + +config DT_HAS_NXP_IMX_FLEXSPI_HYPERFLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_HYPERFLASH)) + +DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVQ8M4 := nxp,imx-flexspi-is66wvq8m4 + +config DT_HAS_NXP_IMX_FLEXSPI_IS66WVQ8M4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVQ8M4)) + +DT_COMPAT_NXP_IMX_FLEXSPI_MX25UM51345G := nxp,imx-flexspi-mx25um51345g + +config DT_HAS_NXP_IMX_FLEXSPI_MX25UM51345G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_MX25UM51345G)) + +DT_COMPAT_NXP_IMX_FLEXSPI_NOR := nxp,imx-flexspi-nor + +config DT_HAS_NXP_IMX_FLEXSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_NOR)) + +DT_COMPAT_NXP_IMX_FLEXSPI_S27KS0641 := nxp,imx-flexspi-s27ks0641 + +config DT_HAS_NXP_IMX_FLEXSPI_S27KS0641_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_S27KS0641)) + +DT_COMPAT_NXP_IMX_FLEXSPI_W956A8MBYA := nxp,imx-flexspi-w956a8mbya + +config DT_HAS_NXP_IMX_FLEXSPI_W956A8MBYA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_W956A8MBYA)) + +DT_COMPAT_NXP_IMX_GPIO := nxp,imx-gpio + +config DT_HAS_NXP_IMX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPIO)) + +DT_COMPAT_NXP_IMX_GPR := nxp,imx-gpr + +config DT_HAS_NXP_IMX_GPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPR)) + +DT_COMPAT_NXP_IMX_GPT := nxp,imx-gpt + +config DT_HAS_NXP_IMX_GPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPT)) + +DT_COMPAT_NXP_IMX_IOMUXC := nxp,imx-iomuxc + +config DT_HAS_NXP_IMX_IOMUXC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IOMUXC)) + +DT_COMPAT_NXP_IMX_IOMUXC_SCU := nxp,imx-iomuxc-scu + +config DT_HAS_NXP_IMX_IOMUXC_SCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IOMUXC_SCU)) + +DT_COMPAT_NXP_IMX_ITCM := nxp,imx-itcm + +config DT_HAS_NXP_IMX_ITCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ITCM)) + +DT_COMPAT_NXP_IMX_IUART := nxp,imx-iuart + +config DT_HAS_NXP_IMX_IUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IUART)) + +DT_COMPAT_NXP_IMX_LCDIFV3 := nxp,imx-lcdifv3 + +config DT_HAS_NXP_IMX_LCDIFV3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_LCDIFV3)) + +DT_COMPAT_NXP_IMX_MIPI_DSI := nxp,imx-mipi-dsi + +config DT_HAS_NXP_IMX_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_MIPI_DSI)) + +DT_COMPAT_NXP_IMX_MU := nxp,imx-mu + +config DT_HAS_NXP_IMX_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_MU)) + +DT_COMPAT_NXP_IMX_NETC := nxp,imx-netc + +config DT_HAS_NXP_IMX_NETC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC)) + +DT_COMPAT_NXP_IMX_NETC_BLK_CTRL := nxp,imx-netc-blk-ctrl + +config DT_HAS_NXP_IMX_NETC_BLK_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_BLK_CTRL)) + +DT_COMPAT_NXP_IMX_NETC_EMDIO := nxp,imx-netc-emdio + +config DT_HAS_NXP_IMX_NETC_EMDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_EMDIO)) + +DT_COMPAT_NXP_IMX_NETC_PSI := nxp,imx-netc-psi + +config DT_HAS_NXP_IMX_NETC_PSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_PSI)) + +DT_COMPAT_NXP_IMX_PWM := nxp,imx-pwm + +config DT_HAS_NXP_IMX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_PWM)) + +DT_COMPAT_NXP_IMX_QTMR := nxp,imx-qtmr + +config DT_HAS_NXP_IMX_QTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_QTMR)) + +DT_COMPAT_NXP_IMX_RGPIO := nxp,imx-rgpio + +config DT_HAS_NXP_IMX_RGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_RGPIO)) + +DT_COMPAT_NXP_IMX_SEMC := nxp,imx-semc + +config DT_HAS_NXP_IMX_SEMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SEMC)) + +DT_COMPAT_NXP_IMX_SNVS_RTC := nxp,imx-snvs-rtc + +config DT_HAS_NXP_IMX_SNVS_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SNVS_RTC)) + +DT_COMPAT_NXP_IMX_SRC_REV2 := nxp,imx-src-rev2 + +config DT_HAS_NXP_IMX_SRC_REV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SRC_REV2)) + +DT_COMPAT_NXP_IMX_TMR := nxp,imx-tmr + +config DT_HAS_NXP_IMX_TMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_TMR)) + +DT_COMPAT_NXP_IMX_UART := nxp,imx-uart + +config DT_HAS_NXP_IMX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_UART)) + +DT_COMPAT_NXP_IMX_USDHC := nxp,imx-usdhc + +config DT_HAS_NXP_IMX_USDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_USDHC)) + +DT_COMPAT_NXP_IMX_WDOG := nxp,imx-wdog + +config DT_HAS_NXP_IMX_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_WDOG)) + +DT_COMPAT_NXP_IMX7D_PINCTRL := nxp,imx7d-pinctrl + +config DT_HAS_NXP_IMX7D_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX7D_PINCTRL)) + +DT_COMPAT_NXP_IMX8_PINCTRL := nxp,imx8-pinctrl + +config DT_HAS_NXP_IMX8_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8_PINCTRL)) + +DT_COMPAT_NXP_IMX8M_PINCTRL := nxp,imx8m-pinctrl + +config DT_HAS_NXP_IMX8M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8M_PINCTRL)) + +DT_COMPAT_NXP_IMX8MP_PINCTRL := nxp,imx8mp-pinctrl + +config DT_HAS_NXP_IMX8MP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8MP_PINCTRL)) + +DT_COMPAT_NXP_IMX8ULP_PINCTRL := nxp,imx8ulp-pinctrl + +config DT_HAS_NXP_IMX8ULP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8ULP_PINCTRL)) + +DT_COMPAT_NXP_IMX93_MEDIAMIX := nxp,imx93-mediamix + +config DT_HAS_NXP_IMX93_MEDIAMIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX93_MEDIAMIX)) + +DT_COMPAT_NXP_IMX93_PINCTRL := nxp,imx93-pinctrl + +config DT_HAS_NXP_IMX93_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX93_PINCTRL)) + +DT_COMPAT_NXP_IRQSTEER_INTC := nxp,irqsteer-intc + +config DT_HAS_NXP_IRQSTEER_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRQSTEER_INTC)) + +DT_COMPAT_NXP_IRQSTEER_MASTER := nxp,irqsteer-master + +config DT_HAS_NXP_IRQSTEER_MASTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRQSTEER_MASTER)) + +DT_COMPAT_NXP_IRTC := nxp,irtc + +config DT_HAS_NXP_IRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRTC)) + +DT_COMPAT_NXP_KINETIS_ACMP := nxp,kinetis-acmp + +config DT_HAS_NXP_KINETIS_ACMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ACMP)) + +DT_COMPAT_NXP_KINETIS_ADC16 := nxp,kinetis-adc16 + +config DT_HAS_NXP_KINETIS_ADC16_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ADC16)) + +DT_COMPAT_NXP_KINETIS_DAC := nxp,kinetis-dac + +config DT_HAS_NXP_KINETIS_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_DAC)) + +DT_COMPAT_NXP_KINETIS_DAC32 := nxp,kinetis-dac32 + +config DT_HAS_NXP_KINETIS_DAC32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_DAC32)) + +DT_COMPAT_NXP_KINETIS_ETHERNET := nxp,kinetis-ethernet + +config DT_HAS_NXP_KINETIS_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ETHERNET)) + +DT_COMPAT_NXP_KINETIS_FTFA := nxp,kinetis-ftfa + +config DT_HAS_NXP_KINETIS_FTFA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFA)) + +DT_COMPAT_NXP_KINETIS_FTFC := nxp,kinetis-ftfc + +config DT_HAS_NXP_KINETIS_FTFC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFC)) + +DT_COMPAT_NXP_KINETIS_FTFE := nxp,kinetis-ftfe + +config DT_HAS_NXP_KINETIS_FTFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFE)) + +DT_COMPAT_NXP_KINETIS_FTFL := nxp,kinetis-ftfl + +config DT_HAS_NXP_KINETIS_FTFL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFL)) + +DT_COMPAT_NXP_KINETIS_GPIO := nxp,kinetis-gpio + +config DT_HAS_NXP_KINETIS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_GPIO)) + +DT_COMPAT_NXP_KINETIS_I2C := nxp,kinetis-i2c + +config DT_HAS_NXP_KINETIS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_I2C)) + +DT_COMPAT_NXP_KINETIS_KE1XF_SIM := nxp,kinetis-ke1xf-sim + +config DT_HAS_NXP_KINETIS_KE1XF_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_KE1XF_SIM)) + +DT_COMPAT_NXP_KINETIS_LPSCI := nxp,kinetis-lpsci + +config DT_HAS_NXP_KINETIS_LPSCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_LPSCI)) + +DT_COMPAT_NXP_KINETIS_MCG := nxp,kinetis-mcg + +config DT_HAS_NXP_KINETIS_MCG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_MCG)) + +DT_COMPAT_NXP_KINETIS_PCC := nxp,kinetis-pcc + +config DT_HAS_NXP_KINETIS_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PCC)) + +DT_COMPAT_NXP_KINETIS_PTP := nxp,kinetis-ptp + +config DT_HAS_NXP_KINETIS_PTP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PTP)) + +DT_COMPAT_NXP_KINETIS_PWT := nxp,kinetis-pwt + +config DT_HAS_NXP_KINETIS_PWT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PWT)) + +DT_COMPAT_NXP_KINETIS_RNGA := nxp,kinetis-rnga + +config DT_HAS_NXP_KINETIS_RNGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_RNGA)) + +DT_COMPAT_NXP_KINETIS_SCG := nxp,kinetis-scg + +config DT_HAS_NXP_KINETIS_SCG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_SCG)) + +DT_COMPAT_NXP_KINETIS_SIM := nxp,kinetis-sim + +config DT_HAS_NXP_KINETIS_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_SIM)) + +DT_COMPAT_NXP_KINETIS_TEMPERATURE := nxp,kinetis-temperature + +config DT_HAS_NXP_KINETIS_TEMPERATURE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TEMPERATURE)) + +DT_COMPAT_NXP_KINETIS_TPM := nxp,kinetis-tpm + +config DT_HAS_NXP_KINETIS_TPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TPM)) + +DT_COMPAT_NXP_KINETIS_TRNG := nxp,kinetis-trng + +config DT_HAS_NXP_KINETIS_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TRNG)) + +DT_COMPAT_NXP_KINETIS_UART := nxp,kinetis-uart + +config DT_HAS_NXP_KINETIS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_UART)) + +DT_COMPAT_NXP_KINETIS_USBD := nxp,kinetis-usbd + +config DT_HAS_NXP_KINETIS_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_USBD)) + +DT_COMPAT_NXP_KINETIS_WDOG := nxp,kinetis-wdog + +config DT_HAS_NXP_KINETIS_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_WDOG)) + +DT_COMPAT_NXP_KW41Z_IEEE802154 := nxp,kw41z-ieee802154 + +config DT_HAS_NXP_KW41Z_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KW41Z_IEEE802154)) + +DT_COMPAT_NXP_LCD_8080 := nxp,lcd-8080 + +config DT_HAS_NXP_LCD_8080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCD_8080)) + +DT_COMPAT_NXP_LCD_PMOD := nxp,lcd-pmod + +config DT_HAS_NXP_LCD_PMOD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCD_PMOD)) + +DT_COMPAT_NXP_LCDIC := nxp,lcdic + +config DT_HAS_NXP_LCDIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCDIC)) + +DT_COMPAT_NXP_LP_FLEXCOMM := nxp,lp-flexcomm + +config DT_HAS_NXP_LP_FLEXCOMM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LP_FLEXCOMM)) + +DT_COMPAT_NXP_LPADC_TEMP40 := nxp,lpadc-temp40 + +config DT_HAS_NXP_LPADC_TEMP40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPADC_TEMP40)) + +DT_COMPAT_NXP_LPC_CTIMER := nxp,lpc-ctimer + +config DT_HAS_NXP_LPC_CTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_CTIMER)) + +DT_COMPAT_NXP_LPC_DMA := nxp,lpc-dma + +config DT_HAS_NXP_LPC_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_DMA)) + +DT_COMPAT_NXP_LPC_FLEXCOMM := nxp,lpc-flexcomm + +config DT_HAS_NXP_LPC_FLEXCOMM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_FLEXCOMM)) + +DT_COMPAT_NXP_LPC_GPIO := nxp,lpc-gpio + +config DT_HAS_NXP_LPC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_GPIO)) + +DT_COMPAT_NXP_LPC_GPIO_PORT := nxp,lpc-gpio-port + +config DT_HAS_NXP_LPC_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_GPIO_PORT)) + +DT_COMPAT_NXP_LPC_I2C := nxp,lpc-i2c + +config DT_HAS_NXP_LPC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_I2C)) + +DT_COMPAT_NXP_LPC_I2S := nxp,lpc-i2s + +config DT_HAS_NXP_LPC_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_I2S)) + +DT_COMPAT_NXP_LPC_IOCON := nxp,lpc-iocon + +config DT_HAS_NXP_LPC_IOCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON)) + +DT_COMPAT_NXP_LPC_IOCON_PINCTRL := nxp,lpc-iocon-pinctrl + +config DT_HAS_NXP_LPC_IOCON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON_PINCTRL)) + +DT_COMPAT_NXP_LPC_IOCON_PIO := nxp,lpc-iocon-pio + +config DT_HAS_NXP_LPC_IOCON_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON_PIO)) + +DT_COMPAT_NXP_LPC_LPADC := nxp,lpc-lpadc + +config DT_HAS_NXP_LPC_LPADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_LPADC)) + +DT_COMPAT_NXP_LPC_MAILBOX := nxp,lpc-mailbox + +config DT_HAS_NXP_LPC_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_MAILBOX)) + +DT_COMPAT_NXP_LPC_MCAN := nxp,lpc-mcan + +config DT_HAS_NXP_LPC_MCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_MCAN)) + +DT_COMPAT_NXP_LPC_RNG := nxp,lpc-rng + +config DT_HAS_NXP_LPC_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RNG)) + +DT_COMPAT_NXP_LPC_RTC := nxp,lpc-rtc + +config DT_HAS_NXP_LPC_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RTC)) + +DT_COMPAT_NXP_LPC_RTC_HIGHRES := nxp,lpc-rtc-highres + +config DT_HAS_NXP_LPC_RTC_HIGHRES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RTC_HIGHRES)) + +DT_COMPAT_NXP_LPC_SDIF := nxp,lpc-sdif + +config DT_HAS_NXP_LPC_SDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SDIF)) + +DT_COMPAT_NXP_LPC_SPI := nxp,lpc-spi + +config DT_HAS_NXP_LPC_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SPI)) + +DT_COMPAT_NXP_LPC_SYSCON := nxp,lpc-syscon + +config DT_HAS_NXP_LPC_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SYSCON)) + +DT_COMPAT_NXP_LPC_SYSCON_RESET := nxp,lpc-syscon-reset + +config DT_HAS_NXP_LPC_SYSCON_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SYSCON_RESET)) + +DT_COMPAT_NXP_LPC_UID := nxp,lpc-uid + +config DT_HAS_NXP_LPC_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_UID)) + +DT_COMPAT_NXP_LPC_USART := nxp,lpc-usart + +config DT_HAS_NXP_LPC_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_USART)) + +DT_COMPAT_NXP_LPC_WWDT := nxp,lpc-wwdt + +config DT_HAS_NXP_LPC_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_WWDT)) + +DT_COMPAT_NXP_LPC11U6X_EEPROM := nxp,lpc11u6x-eeprom + +config DT_HAS_NXP_LPC11U6X_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_EEPROM)) + +DT_COMPAT_NXP_LPC11U6X_GPIO := nxp,lpc11u6x-gpio + +config DT_HAS_NXP_LPC11U6X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_GPIO)) + +DT_COMPAT_NXP_LPC11U6X_I2C := nxp,lpc11u6x-i2c + +config DT_HAS_NXP_LPC11U6X_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_I2C)) + +DT_COMPAT_NXP_LPC11U6X_PINCTRL := nxp,lpc11u6x-pinctrl + +config DT_HAS_NXP_LPC11U6X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_PINCTRL)) + +DT_COMPAT_NXP_LPC11U6X_SYSCON := nxp,lpc11u6x-syscon + +config DT_HAS_NXP_LPC11U6X_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_SYSCON)) + +DT_COMPAT_NXP_LPC11U6X_UART := nxp,lpc11u6x-uart + +config DT_HAS_NXP_LPC11U6X_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_UART)) + +DT_COMPAT_NXP_LPCIP3511 := nxp,lpcip3511 + +config DT_HAS_NXP_LPCIP3511_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPCIP3511)) + +DT_COMPAT_NXP_LPCMP := nxp,lpcmp + +config DT_HAS_NXP_LPCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPCMP)) + +DT_COMPAT_NXP_LPDAC := nxp,lpdac + +config DT_HAS_NXP_LPDAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPDAC)) + +DT_COMPAT_NXP_LPI2C := nxp,lpi2c + +config DT_HAS_NXP_LPI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPI2C)) + +DT_COMPAT_NXP_LPIT := nxp,lpit + +config DT_HAS_NXP_LPIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPIT)) + +DT_COMPAT_NXP_LPIT_CHANNEL := nxp,lpit-channel + +config DT_HAS_NXP_LPIT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPIT_CHANNEL)) + +DT_COMPAT_NXP_LPSPI := nxp,lpspi + +config DT_HAS_NXP_LPSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPSPI)) + +DT_COMPAT_NXP_LPTMR := nxp,lptmr + +config DT_HAS_NXP_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPTMR)) + +DT_COMPAT_NXP_LPUART := nxp,lpuart + +config DT_HAS_NXP_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPUART)) + +DT_COMPAT_NXP_MBOX_IMX_MU := nxp,mbox-imx-mu + +config DT_HAS_NXP_MBOX_IMX_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MBOX_IMX_MU)) + +DT_COMPAT_NXP_MBOX_MAILBOX := nxp,mbox-mailbox + +config DT_HAS_NXP_MBOX_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MBOX_MAILBOX)) + +DT_COMPAT_NXP_MC_CGM := nxp,mc-cgm + +config DT_HAS_NXP_MC_CGM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MC_CGM)) + +DT_COMPAT_NXP_MCI_IO_MUX := nxp,mci-io-mux + +config DT_HAS_NXP_MCI_IO_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCI_IO_MUX)) + +DT_COMPAT_NXP_MCR20A := nxp,mcr20a + +config DT_HAS_NXP_MCR20A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCR20A)) + +DT_COMPAT_NXP_MCUX_12B1MSPS_SAR := nxp,mcux-12b1msps-sar + +config DT_HAS_NXP_MCUX_12B1MSPS_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_12B1MSPS_SAR)) + +DT_COMPAT_NXP_MCUX_DCP := nxp,mcux-dcp + +config DT_HAS_NXP_MCUX_DCP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_DCP)) + +DT_COMPAT_NXP_MCUX_EDMA := nxp,mcux-edma + +config DT_HAS_NXP_MCUX_EDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_EDMA)) + +DT_COMPAT_NXP_MCUX_I2S := nxp,mcux-i2s + +config DT_HAS_NXP_MCUX_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_I2S)) + +DT_COMPAT_NXP_MCUX_I3C := nxp,mcux-i3c + +config DT_HAS_NXP_MCUX_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_I3C)) + +DT_COMPAT_NXP_MCUX_KPP := nxp,mcux-kpp + +config DT_HAS_NXP_MCUX_KPP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_KPP)) + +DT_COMPAT_NXP_MCUX_QDEC := nxp,mcux-qdec + +config DT_HAS_NXP_MCUX_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_QDEC)) + +DT_COMPAT_NXP_MCUX_RT_PINCTRL := nxp,mcux-rt-pinctrl + +config DT_HAS_NXP_MCUX_RT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_RT_PINCTRL)) + +DT_COMPAT_NXP_MCUX_RT11XX_PINCTRL := nxp,mcux-rt11xx-pinctrl + +config DT_HAS_NXP_MCUX_RT11XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_RT11XX_PINCTRL)) + +DT_COMPAT_NXP_MCUX_XBAR := nxp,mcux-xbar + +config DT_HAS_NXP_MCUX_XBAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_XBAR)) + +DT_COMPAT_NXP_MCXC_OSC := nxp,mcxc-osc + +config DT_HAS_NXP_MCXC_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXC_OSC)) + +DT_COMPAT_NXP_MCXE31X_SIUL2_PINCTRL := nxp,mcxe31x-siul2-pinctrl + +config DT_HAS_NXP_MCXE31X_SIUL2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXE31X_SIUL2_PINCTRL)) + +DT_COMPAT_NXP_MCXW_IEEE802154 := nxp,mcxw-ieee802154 + +config DT_HAS_NXP_MCXW_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXW_IEEE802154)) + +DT_COMPAT_NXP_MICFIL := nxp,micfil + +config DT_HAS_NXP_MICFIL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MICFIL)) + +DT_COMPAT_NXP_MIPI_CSI2RX := nxp,mipi-csi2rx + +config DT_HAS_NXP_MIPI_CSI2RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_CSI2RX)) + +DT_COMPAT_NXP_MIPI_DBI_DCNANO_LCDIF := nxp,mipi-dbi-dcnano-lcdif + +config DT_HAS_NXP_MIPI_DBI_DCNANO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DBI_DCNANO_LCDIF)) + +DT_COMPAT_NXP_MIPI_DBI_FLEXIO_LCDIF := nxp,mipi-dbi-flexio-lcdif + +config DT_HAS_NXP_MIPI_DBI_FLEXIO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DBI_FLEXIO_LCDIF)) + +DT_COMPAT_NXP_MIPI_DSI_2L := nxp,mipi-dsi-2l + +config DT_HAS_NXP_MIPI_DSI_2L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DSI_2L)) + +DT_COMPAT_NXP_MIPI_DSI_DWC := nxp,mipi-dsi-dwc + +config DT_HAS_NXP_MIPI_DSI_DWC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DSI_DWC)) + +DT_COMPAT_NXP_MRCC_RESET := nxp,mrcc-reset + +config DT_HAS_NXP_MRCC_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRCC_RESET)) + +DT_COMPAT_NXP_MRT := nxp,mrt + +config DT_HAS_NXP_MRT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRT)) + +DT_COMPAT_NXP_MRT_CHANNEL := nxp,mrt-channel + +config DT_HAS_NXP_MRT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRT_CHANNEL)) + +DT_COMPAT_NXP_MSF1 := nxp,msf1 + +config DT_HAS_NXP_MSF1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MSF1)) + +DT_COMPAT_NXP_NBU := nxp,nbu + +config DT_HAS_NXP_NBU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NBU)) + +DT_COMPAT_NXP_NETC_PTP_CLOCK := nxp,netc-ptp-clock + +config DT_HAS_NXP_NETC_PTP_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NETC_PTP_CLOCK)) + +DT_COMPAT_NXP_NETC_SWITCH := nxp,netc-switch + +config DT_HAS_NXP_NETC_SWITCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NETC_SWITCH)) + +DT_COMPAT_NXP_NX20P3483 := nxp,nx20p3483 + +config DT_HAS_NXP_NX20P3483_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NX20P3483)) + +DT_COMPAT_NXP_OPAMP := nxp,opamp + +config DT_HAS_NXP_OPAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OPAMP)) + +DT_COMPAT_NXP_OPAMP_FAST := nxp,opamp-fast + +config DT_HAS_NXP_OPAMP_FAST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OPAMP_FAST)) + +DT_COMPAT_NXP_OS_TIMER := nxp,os-timer + +config DT_HAS_NXP_OS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OS_TIMER)) + +DT_COMPAT_NXP_P3T1755 := nxp,p3t1755 + +config DT_HAS_NXP_P3T1755_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_P3T1755)) + +DT_COMPAT_NXP_PARALLEL_LCD_CONNECTOR := nxp,parallel-lcd-connector + +config DT_HAS_NXP_PARALLEL_LCD_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PARALLEL_LCD_CONNECTOR)) + +DT_COMPAT_NXP_PCA6408 := nxp,pca6408 + +config DT_HAS_NXP_PCA6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA6408)) + +DT_COMPAT_NXP_PCA6416 := nxp,pca6416 + +config DT_HAS_NXP_PCA6416_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA6416)) + +DT_COMPAT_NXP_PCA9420 := nxp,pca9420 + +config DT_HAS_NXP_PCA9420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9420)) + +DT_COMPAT_NXP_PCA9422 := nxp,pca9422 + +config DT_HAS_NXP_PCA9422_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9422)) + +DT_COMPAT_NXP_PCA9422_CHARGER := nxp,pca9422-charger + +config DT_HAS_NXP_PCA9422_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9422_CHARGER)) + +DT_COMPAT_NXP_PCA9422_REGULATOR := nxp,pca9422-regulator + +config DT_HAS_NXP_PCA9422_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9422_REGULATOR)) + +DT_COMPAT_NXP_PCA9533 := nxp,pca9533 + +config DT_HAS_NXP_PCA9533_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9533)) + +DT_COMPAT_NXP_PCA9538 := nxp,pca9538 + +config DT_HAS_NXP_PCA9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9538)) + +DT_COMPAT_NXP_PCA9539 := nxp,pca9539 + +config DT_HAS_NXP_PCA9539_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9539)) + +DT_COMPAT_NXP_PCA9554 := nxp,pca9554 + +config DT_HAS_NXP_PCA9554_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9554)) + +DT_COMPAT_NXP_PCA9555 := nxp,pca9555 + +config DT_HAS_NXP_PCA9555_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9555)) + +DT_COMPAT_NXP_PCA95XX := nxp,pca95xx + +config DT_HAS_NXP_PCA95XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA95XX)) + +DT_COMPAT_NXP_PCA9633 := nxp,pca9633 + +config DT_HAS_NXP_PCA9633_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9633)) + +DT_COMPAT_NXP_PCA9685_PWM := nxp,pca9685-pwm + +config DT_HAS_NXP_PCA9685_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9685_PWM)) + +DT_COMPAT_NXP_PCAL6408 := nxp,pcal6408 + +config DT_HAS_NXP_PCAL6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6408)) + +DT_COMPAT_NXP_PCAL6408A := nxp,pcal6408a + +config DT_HAS_NXP_PCAL6408A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6408A)) + +DT_COMPAT_NXP_PCAL6416 := nxp,pcal6416 + +config DT_HAS_NXP_PCAL6416_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6416)) + +DT_COMPAT_NXP_PCAL6416A := nxp,pcal6416a + +config DT_HAS_NXP_PCAL6416A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6416A)) + +DT_COMPAT_NXP_PCAL6524 := nxp,pcal6524 + +config DT_HAS_NXP_PCAL6524_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6524)) + +DT_COMPAT_NXP_PCAL6534 := nxp,pcal6534 + +config DT_HAS_NXP_PCAL6534_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6534)) + +DT_COMPAT_NXP_PCAL9538 := nxp,pcal9538 + +config DT_HAS_NXP_PCAL9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL9538)) + +DT_COMPAT_NXP_PCAL9539 := nxp,pcal9539 + +config DT_HAS_NXP_PCAL9539_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL9539)) + +DT_COMPAT_NXP_PCAL9722 := nxp,pcal9722 + +config DT_HAS_NXP_PCAL9722_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL9722)) + +DT_COMPAT_NXP_PCF2123 := nxp,pcf2123 + +config DT_HAS_NXP_PCF2123_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF2123)) + +DT_COMPAT_NXP_PCF85063A := nxp,pcf85063a + +config DT_HAS_NXP_PCF85063A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF85063A)) + +DT_COMPAT_NXP_PCF8523 := nxp,pcf8523 + +config DT_HAS_NXP_PCF8523_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF8523)) + +DT_COMPAT_NXP_PCF8563 := nxp,pcf8563 + +config DT_HAS_NXP_PCF8563_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF8563)) + +DT_COMPAT_NXP_PCF857X := nxp,pcf857x + +config DT_HAS_NXP_PCF857X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF857X)) + +DT_COMPAT_NXP_PDCFG_POWER := nxp,pdcfg-power + +config DT_HAS_NXP_PDCFG_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PDCFG_POWER)) + +DT_COMPAT_NXP_PF1550 := nxp,pf1550 + +config DT_HAS_NXP_PF1550_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PF1550)) + +DT_COMPAT_NXP_PF1550_CHARGER := nxp,pf1550-charger + +config DT_HAS_NXP_PF1550_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PF1550_CHARGER)) + +DT_COMPAT_NXP_PF1550_REGULATOR := nxp,pf1550-regulator + +config DT_HAS_NXP_PF1550_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PF1550_REGULATOR)) + +DT_COMPAT_NXP_PINT := nxp,pint + +config DT_HAS_NXP_PINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PINT)) + +DT_COMPAT_NXP_PIT := nxp,pit + +config DT_HAS_NXP_PIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PIT)) + +DT_COMPAT_NXP_PIT_CHANNEL := nxp,pit-channel + +config DT_HAS_NXP_PIT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PIT_CHANNEL)) + +DT_COMPAT_NXP_PLLDIG := nxp,plldig + +config DT_HAS_NXP_PLLDIG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PLLDIG)) + +DT_COMPAT_NXP_PMC_TMPSNS := nxp,pmc-tmpsns + +config DT_HAS_NXP_PMC_TMPSNS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PMC_TMPSNS)) + +DT_COMPAT_NXP_PORT_PINCTRL := nxp,port-pinctrl + +config DT_HAS_NXP_PORT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PORT_PINCTRL)) + +DT_COMPAT_NXP_PORT_PINMUX := nxp,port-pinmux + +config DT_HAS_NXP_PORT_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PORT_PINMUX)) + +DT_COMPAT_NXP_PXP := nxp,pxp + +config DT_HAS_NXP_PXP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PXP)) + +DT_COMPAT_NXP_QDEC_S32 := nxp,qdec-s32 + +config DT_HAS_NXP_QDEC_S32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_QDEC_S32)) + +DT_COMPAT_NXP_QTMR_PWM := nxp,qtmr-pwm + +config DT_HAS_NXP_QTMR_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_QTMR_PWM)) + +DT_COMPAT_NXP_RDC := nxp,rdc + +config DT_HAS_NXP_RDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RDC)) + +DT_COMPAT_NXP_RSTCTL := nxp,rstctl + +config DT_HAS_NXP_RSTCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RSTCTL)) + +DT_COMPAT_NXP_RSTCTL_HWINFO := nxp,rstctl-hwinfo + +config DT_HAS_NXP_RSTCTL_HWINFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RSTCTL_HWINFO)) + +DT_COMPAT_NXP_RT_IOCON_PINCTRL := nxp,rt-iocon-pinctrl + +config DT_HAS_NXP_RT_IOCON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT_IOCON_PINCTRL)) + +DT_COMPAT_NXP_RT600_DSP_CTRL := nxp,rt600-dsp-ctrl + +config DT_HAS_NXP_RT600_DSP_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT600_DSP_CTRL)) + +DT_COMPAT_NXP_RT700_DSP_CTRL_HIFI4 := nxp,rt700-dsp-ctrl-hifi4 + +config DT_HAS_NXP_RT700_DSP_CTRL_HIFI4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT700_DSP_CTRL_HIFI4)) + +DT_COMPAT_NXP_RTC := nxp,rtc + +config DT_HAS_NXP_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTC)) + +DT_COMPAT_NXP_RTWDOG := nxp,rtwdog + +config DT_HAS_NXP_RTWDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTWDOG)) + +DT_COMPAT_NXP_RTXXX_DSP_CTRL := nxp,rtxxx-dsp-ctrl + +config DT_HAS_NXP_RTXXX_DSP_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTXXX_DSP_CTRL)) + +DT_COMPAT_NXP_RW_PMU := nxp,rw-pmu + +config DT_HAS_NXP_RW_PMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RW_PMU)) + +DT_COMPAT_NXP_RW_SOC_CTRL := nxp,rw-soc-ctrl + +config DT_HAS_NXP_RW_SOC_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RW_SOC_CTRL)) + +DT_COMPAT_NXP_S32_ADC_SAR := nxp,s32-adc-sar + +config DT_HAS_NXP_S32_ADC_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_ADC_SAR)) + +DT_COMPAT_NXP_S32_CANXL := nxp,s32-canxl + +config DT_HAS_NXP_S32_CANXL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CANXL)) + +DT_COMPAT_NXP_S32_CLOCK := nxp,s32-clock + +config DT_HAS_NXP_S32_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CLOCK)) + +DT_COMPAT_NXP_S32_EMIOS := nxp,s32-emios + +config DT_HAS_NXP_S32_EMIOS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_EMIOS)) + +DT_COMPAT_NXP_S32_EMIOS_PWM := nxp,s32-emios-pwm + +config DT_HAS_NXP_S32_EMIOS_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_EMIOS_PWM)) + +DT_COMPAT_NXP_S32_GMAC := nxp,s32-gmac + +config DT_HAS_NXP_S32_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GMAC)) + +DT_COMPAT_NXP_S32_GMAC_MDIO := nxp,s32-gmac-mdio + +config DT_HAS_NXP_S32_GMAC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GMAC_MDIO)) + +DT_COMPAT_NXP_S32_LCU := nxp,s32-lcu + +config DT_HAS_NXP_S32_LCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_LCU)) + +DT_COMPAT_NXP_S32_LINFLEXD := nxp,s32-linflexd + +config DT_HAS_NXP_S32_LINFLEXD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_LINFLEXD)) + +DT_COMPAT_NXP_S32_MC_ME := nxp,s32-mc-me + +config DT_HAS_NXP_S32_MC_ME_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MC_ME)) + +DT_COMPAT_NXP_S32_MC_RGM := nxp,s32-mc-rgm + +config DT_HAS_NXP_S32_MC_RGM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MC_RGM)) + +DT_COMPAT_NXP_S32_MRU := nxp,s32-mru + +config DT_HAS_NXP_S32_MRU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MRU)) + +DT_COMPAT_NXP_S32_NETC_EMDIO := nxp,s32-netc-emdio + +config DT_HAS_NXP_S32_NETC_EMDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_EMDIO)) + +DT_COMPAT_NXP_S32_NETC_PSI := nxp,s32-netc-psi + +config DT_HAS_NXP_S32_NETC_PSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_PSI)) + +DT_COMPAT_NXP_S32_NETC_VSI := nxp,s32-netc-vsi + +config DT_HAS_NXP_S32_NETC_VSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_VSI)) + +DT_COMPAT_NXP_S32_PSI5 := nxp,s32-psi5 + +config DT_HAS_NXP_S32_PSI5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_PSI5)) + +DT_COMPAT_NXP_S32_QSPI := nxp,s32-qspi + +config DT_HAS_NXP_S32_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI)) + +DT_COMPAT_NXP_S32_QSPI_DEVICE := nxp,s32-qspi-device + +config DT_HAS_NXP_S32_QSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_DEVICE)) + +DT_COMPAT_NXP_S32_QSPI_HYPERFLASH := nxp,s32-qspi-hyperflash + +config DT_HAS_NXP_S32_QSPI_HYPERFLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_HYPERFLASH)) + +DT_COMPAT_NXP_S32_QSPI_NOR := nxp,s32-qspi-nor + +config DT_HAS_NXP_S32_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_NOR)) + +DT_COMPAT_NXP_S32_QSPI_SFP_FRAD := nxp,s32-qspi-sfp-frad + +config DT_HAS_NXP_S32_QSPI_SFP_FRAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_SFP_FRAD)) + +DT_COMPAT_NXP_S32_QSPI_SFP_MDAD := nxp,s32-qspi-sfp-mdad + +config DT_HAS_NXP_S32_QSPI_SFP_MDAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_SFP_MDAD)) + +DT_COMPAT_NXP_S32_SENT := nxp,s32-sent + +config DT_HAS_NXP_S32_SENT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SENT)) + +DT_COMPAT_NXP_S32_SPI := nxp,s32-spi + +config DT_HAS_NXP_S32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SPI)) + +DT_COMPAT_NXP_S32_SWT := nxp,s32-swt + +config DT_HAS_NXP_S32_SWT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SWT)) + +DT_COMPAT_NXP_S32_SYS_TIMER := nxp,s32-sys-timer + +config DT_HAS_NXP_S32_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SYS_TIMER)) + +DT_COMPAT_NXP_S32_TRGMUX := nxp,s32-trgmux + +config DT_HAS_NXP_S32_TRGMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_TRGMUX)) + +DT_COMPAT_NXP_S32_WKPU := nxp,s32-wkpu + +config DT_HAS_NXP_S32_WKPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_WKPU)) + +DT_COMPAT_NXP_S32K3_PMC := nxp,s32k3-pmc + +config DT_HAS_NXP_S32K3_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K3_PMC)) + +DT_COMPAT_NXP_S32K3_SIUL2_PINCTRL := nxp,s32k3-siul2-pinctrl + +config DT_HAS_NXP_S32K3_SIUL2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K3_SIUL2_PINCTRL)) + +DT_COMPAT_NXP_S32ZE_SIUL2_PINCTRL := nxp,s32ze-siul2-pinctrl + +config DT_HAS_NXP_S32ZE_SIUL2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32ZE_SIUL2_PINCTRL)) + +DT_COMPAT_NXP_SAR_ADC := nxp,sar-adc + +config DT_HAS_NXP_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SAR_ADC)) + +DT_COMPAT_NXP_SC18IM704 := nxp,sc18im704 + +config DT_HAS_NXP_SC18IM704_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704)) + +DT_COMPAT_NXP_SC18IM704_GPIO := nxp,sc18im704-gpio + +config DT_HAS_NXP_SC18IM704_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704_GPIO)) + +DT_COMPAT_NXP_SC18IM704_I2C := nxp,sc18im704-i2c + +config DT_HAS_NXP_SC18IM704_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704_I2C)) + +DT_COMPAT_NXP_SC18IS606 := nxp,sc18is606 + +config DT_HAS_NXP_SC18IS606_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IS606)) + +DT_COMPAT_NXP_SC18IS606_SPI := nxp,sc18is606-spi + +config DT_HAS_NXP_SC18IS606_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IS606_SPI)) + +DT_COMPAT_NXP_SCG_K4 := nxp,scg-k4 + +config DT_HAS_NXP_SCG_K4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCG_K4)) + +DT_COMPAT_NXP_SCMI_CPU := nxp,scmi-cpu + +config DT_HAS_NXP_SCMI_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCMI_CPU)) + +DT_COMPAT_NXP_SCTIMER_PWM := nxp,sctimer-pwm + +config DT_HAS_NXP_SCTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCTIMER_PWM)) + +DT_COMPAT_NXP_SCU_PD := nxp,scu-pd + +config DT_HAS_NXP_SCU_PD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCU_PD)) + +DT_COMPAT_NXP_SDMA := nxp,sdma + +config DT_HAS_NXP_SDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SDMA)) + +DT_COMPAT_NXP_SIUL2_EIRQ := nxp,siul2-eirq + +config DT_HAS_NXP_SIUL2_EIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SIUL2_EIRQ)) + +DT_COMPAT_NXP_SIUL2_GPIO := nxp,siul2-gpio + +config DT_HAS_NXP_SIUL2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SIUL2_GPIO)) + +DT_COMPAT_NXP_SMARTDMA := nxp,smartdma + +config DT_HAS_NXP_SMARTDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SMARTDMA)) + +DT_COMPAT_NXP_SOF_HOST_DMA := nxp,sof-host-dma + +config DT_HAS_NXP_SOF_HOST_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SOF_HOST_DMA)) + +DT_COMPAT_NXP_SPC := nxp,spc + +config DT_HAS_NXP_SPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SPC)) + +DT_COMPAT_NXP_STM := nxp,stm + +config DT_HAS_NXP_STM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_STM)) + +DT_COMPAT_NXP_SYSMPU := nxp,sysmpu + +config DT_HAS_NXP_SYSMPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SYSMPU)) + +DT_COMPAT_NXP_TEMPMON := nxp,tempmon + +config DT_HAS_NXP_TEMPMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TEMPMON)) + +DT_COMPAT_NXP_TJA1103 := nxp,tja1103 + +config DT_HAS_NXP_TJA1103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TJA1103)) + +DT_COMPAT_NXP_TJA11XX := nxp,tja11xx + +config DT_HAS_NXP_TJA11XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TJA11XX)) + +DT_COMPAT_NXP_TMPSNS := nxp,tmpsns + +config DT_HAS_NXP_TMPSNS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TMPSNS)) + +DT_COMPAT_NXP_TPM_QDEC := nxp,tpm-qdec + +config DT_HAS_NXP_TPM_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TPM_QDEC)) + +DT_COMPAT_NXP_TPM_TIMER := nxp,tpm-timer + +config DT_HAS_NXP_TPM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TPM_TIMER)) + +DT_COMPAT_NXP_UHC_EHCI := nxp,uhc-ehci + +config DT_HAS_NXP_UHC_EHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_EHCI)) + +DT_COMPAT_NXP_UHC_IP3516HS := nxp,uhc-ip3516hs + +config DT_HAS_NXP_UHC_IP3516HS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_IP3516HS)) + +DT_COMPAT_NXP_UHC_KHCI := nxp,uhc-khci + +config DT_HAS_NXP_UHC_KHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_KHCI)) + +DT_COMPAT_NXP_UHC_OHCI := nxp,uhc-ohci + +config DT_HAS_NXP_UHC_OHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_OHCI)) + +DT_COMPAT_NXP_USBPHY := nxp,usbphy + +config DT_HAS_NXP_USBPHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_USBPHY)) + +DT_COMPAT_NXP_VBAT := nxp,vbat + +config DT_HAS_NXP_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VBAT)) + +DT_COMPAT_NXP_VF610_ADC := nxp,vf610-adc + +config DT_HAS_NXP_VF610_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VF610_ADC)) + +DT_COMPAT_NXP_VIDEO_SMARTDMA := nxp,video-smartdma + +config DT_HAS_NXP_VIDEO_SMARTDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VIDEO_SMARTDMA)) + +DT_COMPAT_NXP_VREF := nxp,vref + +config DT_HAS_NXP_VREF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VREF)) + +DT_COMPAT_NXP_VREFV1 := nxp,vrefv1 + +config DT_HAS_NXP_VREFV1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VREFV1)) + +DT_COMPAT_NXP_WDOG32 := nxp,wdog32 + +config DT_HAS_NXP_WDOG32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WDOG32)) + +DT_COMPAT_NXP_WIFI := nxp,wifi + +config DT_HAS_NXP_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WIFI)) + +DT_COMPAT_NXP_WUU := nxp,wuu + +config DT_HAS_NXP_WUU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WUU)) + +DT_COMPAT_NXP_XSPI := nxp,xspi + +config DT_HAS_NXP_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_XSPI)) + +DT_COMPAT_NXP_XSPI_NOR := nxp,xspi-nor + +config DT_HAS_NXP_XSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_XSPI_NOR)) + +DT_COMPAT_NXP_XSPI_PSRAM := nxp,xspi-psram + +config DT_HAS_NXP_XSPI_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_XSPI_PSRAM)) + +DT_COMPAT_OMRON_2SMPB_02E := omron,2smpb-02e + +config DT_HAS_OMRON_2SMPB_02E_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OMRON_2SMPB_02E)) + +DT_COMPAT_OMRON_D6F_P0001 := omron,d6f-p0001 + +config DT_HAS_OMRON_D6F_P0001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OMRON_D6F_P0001)) + +DT_COMPAT_OMRON_D6F_P0010 := omron,d6f-p0010 + +config DT_HAS_OMRON_D6F_P0010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OMRON_D6F_P0010)) + +DT_COMPAT_ONNN_FUSB307_TCPC := onnn,fusb307-tcpc + +config DT_HAS_ONNN_FUSB307_TCPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_FUSB307_TCPC)) + +DT_COMPAT_ONNN_LC709203F := onnn,lc709203f + +config DT_HAS_ONNN_LC709203F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_LC709203F)) + +DT_COMPAT_ONNN_NCP5623 := onnn,ncp5623 + +config DT_HAS_ONNN_NCP5623_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_NCP5623)) + +DT_COMPAT_ONNN_NCT75 := onnn,nct75 + +config DT_HAS_ONNN_NCT75_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_NCT75)) + +DT_COMPAT_OPENCORES_SPI_SIMPLE := opencores,spi-simple + +config DT_HAS_OPENCORES_SPI_SIMPLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENCORES_SPI_SIMPLE)) + +DT_COMPAT_OPENHWGROUP_CVA6 := openhwgroup,cva6 + +config DT_HAS_OPENHWGROUP_CVA6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENHWGROUP_CVA6)) + +DT_COMPAT_OPENISA_RI5CY := openisa,ri5cy + +config DT_HAS_OPENISA_RI5CY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RI5CY)) + +DT_COMPAT_OPENISA_RV32M1_EVENT_UNIT := openisa,rv32m1-event-unit + +config DT_HAS_OPENISA_RV32M1_EVENT_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_EVENT_UNIT)) + +DT_COMPAT_OPENISA_RV32M1_FTFE := openisa,rv32m1-ftfe + +config DT_HAS_OPENISA_RV32M1_FTFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_FTFE)) + +DT_COMPAT_OPENISA_RV32M1_GENFSK := openisa,rv32m1-genfsk + +config DT_HAS_OPENISA_RV32M1_GENFSK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_GENFSK)) + +DT_COMPAT_OPENISA_RV32M1_GPIO := openisa,rv32m1-gpio + +config DT_HAS_OPENISA_RV32M1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_GPIO)) + +DT_COMPAT_OPENISA_RV32M1_INTMUX := openisa,rv32m1-intmux + +config DT_HAS_OPENISA_RV32M1_INTMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_INTMUX)) + +DT_COMPAT_OPENISA_RV32M1_INTMUX_CH := openisa,rv32m1-intmux-ch + +config DT_HAS_OPENISA_RV32M1_INTMUX_CH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_INTMUX_CH)) + +DT_COMPAT_OPENISA_RV32M1_LPI2C := openisa,rv32m1-lpi2c + +config DT_HAS_OPENISA_RV32M1_LPI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPI2C)) + +DT_COMPAT_OPENISA_RV32M1_LPSPI := openisa,rv32m1-lpspi + +config DT_HAS_OPENISA_RV32M1_LPSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPSPI)) + +DT_COMPAT_OPENISA_RV32M1_LPTMR := openisa,rv32m1-lptmr + +config DT_HAS_OPENISA_RV32M1_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPTMR)) + +DT_COMPAT_OPENISA_RV32M1_LPUART := openisa,rv32m1-lpuart + +config DT_HAS_OPENISA_RV32M1_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPUART)) + +DT_COMPAT_OPENISA_RV32M1_PCC := openisa,rv32m1-pcc + +config DT_HAS_OPENISA_RV32M1_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PCC)) + +DT_COMPAT_OPENISA_RV32M1_PINCTRL := openisa,rv32m1-pinctrl + +config DT_HAS_OPENISA_RV32M1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PINCTRL)) + +DT_COMPAT_OPENISA_RV32M1_PINMUX := openisa,rv32m1-pinmux + +config DT_HAS_OPENISA_RV32M1_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PINMUX)) + +DT_COMPAT_OPENISA_RV32M1_TPM := openisa,rv32m1-tpm + +config DT_HAS_OPENISA_RV32M1_TPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_TPM)) + +DT_COMPAT_OPENISA_RV32M1_TRNG := openisa,rv32m1-trng + +config DT_HAS_OPENISA_RV32M1_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_TRNG)) + +DT_COMPAT_OPENISA_ZERO_RI5CY := openisa,zero-ri5cy + +config DT_HAS_OPENISA_ZERO_RI5CY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_ZERO_RI5CY)) + +DT_COMPAT_OPENTHREAD_CONFIG := openthread,config + +config DT_HAS_OPENTHREAD_CONFIG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENTHREAD_CONFIG)) + +DT_COMPAT_ORISETECH_OTM8009A := orisetech,otm8009a + +config DT_HAS_ORISETECH_OTM8009A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ORISETECH_OTM8009A)) + +DT_COMPAT_OVTI_OV2640 := ovti,ov2640 + +config DT_HAS_OVTI_OV2640_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV2640)) + +DT_COMPAT_OVTI_OV5640 := ovti,ov5640 + +config DT_HAS_OVTI_OV5640_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV5640)) + +DT_COMPAT_OVTI_OV7670 := ovti,ov7670 + +config DT_HAS_OVTI_OV7670_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7670)) + +DT_COMPAT_OVTI_OV7725 := ovti,ov7725 + +config DT_HAS_OVTI_OV7725_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7725)) + +DT_COMPAT_OVTI_OV9655 := ovti,ov9655 + +config DT_HAS_OVTI_OV9655_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV9655)) + +DT_COMPAT_PANASONIC_AMG88XX := panasonic,amg88xx + +config DT_HAS_PANASONIC_AMG88XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PANASONIC_AMG88XX)) + +DT_COMPAT_PANASONIC_REDUCED_ARDUINO_HEADER := panasonic,reduced-arduino-header + +config DT_HAS_PANASONIC_REDUCED_ARDUINO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PANASONIC_REDUCED_ARDUINO_HEADER)) + +DT_COMPAT_PARADE_PS8XXX := parade,ps8xxx + +config DT_HAS_PARADE_PS8XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARADE_PS8XXX)) + +DT_COMPAT_PARTICLE_GEN3_HEADER := particle-gen3-header + +config DT_HAS_PARTICLE_GEN3_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARTICLE_GEN3_HEADER)) + +DT_COMPAT_PCI_HOST_ECAM_GENERIC := pci-host-ecam-generic + +config DT_HAS_PCI_HOST_ECAM_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PCI_HOST_ECAM_GENERIC)) + +DT_COMPAT_PCIE_CONTROLLER := pcie-controller + +config DT_HAS_PCIE_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PCIE_CONTROLLER)) + +DT_COMPAT_PEACEFAIR_PZEM004T := peacefair,pzem004t + +config DT_HAS_PEACEFAIR_PZEM004T_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PEACEFAIR_PZEM004T)) + +DT_COMPAT_PHOSENSE_XBR818 := phosense,xbr818 + +config DT_HAS_PHOSENSE_XBR818_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PHOSENSE_XBR818)) + +DT_COMPAT_PIXART_PAA3905 := pixart,paa3905 + +config DT_HAS_PIXART_PAA3905_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAA3905)) + +DT_COMPAT_PIXART_PAJ7620 := pixart,paj7620 + +config DT_HAS_PIXART_PAJ7620_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAJ7620)) + +DT_COMPAT_PIXART_PAT912X := pixart,pat912x + +config DT_HAS_PIXART_PAT912X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAT912X)) + +DT_COMPAT_PIXART_PAT9136 := pixart,pat9136 + +config DT_HAS_PIXART_PAT9136_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAT9136)) + +DT_COMPAT_PIXART_PAW32XX := pixart,paw32xx + +config DT_HAS_PIXART_PAW32XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAW32XX)) + +DT_COMPAT_PIXART_PMW3610 := pixart,pmw3610 + +config DT_HAS_PIXART_PMW3610_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PMW3610)) + +DT_COMPAT_PLANTOWER_PMS7003 := plantower,pms7003 + +config DT_HAS_PLANTOWER_PMS7003_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PLANTOWER_PMS7003)) + +DT_COMPAT_PNI_RM3100 := pni,rm3100 + +config DT_HAS_PNI_RM3100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PNI_RM3100)) + +DT_COMPAT_POWER_DOMAIN := power-domain + +config DT_HAS_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN)) + +DT_COMPAT_POWER_DOMAIN_GPIO := power-domain-gpio + +config DT_HAS_POWER_DOMAIN_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_GPIO)) + +DT_COMPAT_POWER_DOMAIN_GPIO_MONITOR := power-domain-gpio-monitor + +config DT_HAS_POWER_DOMAIN_GPIO_MONITOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_GPIO_MONITOR)) + +DT_COMPAT_POWER_DOMAIN_SOC_STATE_CHANGE := power-domain-soc-state-change + +config DT_HAS_POWER_DOMAIN_SOC_STATE_CHANGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_SOC_STATE_CHANGE)) + +DT_COMPAT_PTC_PT6314 := ptc,pt6314 + +config DT_HAS_PTC_PT6314_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PTC_PT6314)) + +DT_COMPAT_PWM_CLOCK := pwm-clock + +config DT_HAS_PWM_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PWM_CLOCK)) + +DT_COMPAT_PWM_LEDS := pwm-leds + +config DT_HAS_PWM_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PWM_LEDS)) + +DT_COMPAT_QCA_AR8031 := qca,ar8031 + +config DT_HAS_QCA_AR8031_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QCA_AR8031)) + +DT_COMPAT_QEMU_IVSHMEM := qemu,ivshmem + +config DT_HAS_QEMU_IVSHMEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_IVSHMEM)) + +DT_COMPAT_QEMU_RISCV_VIRT := qemu,riscv-virt + +config DT_HAS_QEMU_RISCV_VIRT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_RISCV_VIRT)) + +DT_COMPAT_QUECTEL_BG95 := quectel,bg95 + +config DT_HAS_QUECTEL_BG95_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG95)) + +DT_COMPAT_QUECTEL_BG96 := quectel,bg96 + +config DT_HAS_QUECTEL_BG96_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG96)) + +DT_COMPAT_QUECTEL_BG9X := quectel,bg9x + +config DT_HAS_QUECTEL_BG9X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG9X)) + +DT_COMPAT_QUECTEL_EG25_G := quectel,eg25-g + +config DT_HAS_QUECTEL_EG25_G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_EG25_G)) + +DT_COMPAT_QUECTEL_EG800Q := quectel,eg800q + +config DT_HAS_QUECTEL_EG800Q_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_EG800Q)) + +DT_COMPAT_QUECTEL_LC26G := quectel,lc26g + +config DT_HAS_QUECTEL_LC26G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC26G)) + +DT_COMPAT_QUECTEL_LC76G := quectel,lc76g + +config DT_HAS_QUECTEL_LC76G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC76G)) + +DT_COMPAT_QUECTEL_LC86G := quectel,lc86g + +config DT_HAS_QUECTEL_LC86G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC86G)) + +DT_COMPAT_QUICKLOGIC_EOS_S3_GPIO := quicklogic,eos-s3-gpio + +config DT_HAS_QUICKLOGIC_EOS_S3_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_EOS_S3_GPIO)) + +DT_COMPAT_QUICKLOGIC_EOS_S3_PINCTRL := quicklogic,eos-s3-pinctrl + +config DT_HAS_QUICKLOGIC_EOS_S3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_EOS_S3_PINCTRL)) + +DT_COMPAT_QUICKLOGIC_USBSERIALPORT_S3B := quicklogic,usbserialport-s3b + +config DT_HAS_QUICKLOGIC_USBSERIALPORT_S3B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_USBSERIALPORT_S3B)) + +DT_COMPAT_RASPBERRYPI_CORE_SUPPLY_REGULATOR := raspberrypi,core-supply-regulator + +config DT_HAS_RASPBERRYPI_CORE_SUPPLY_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_CORE_SUPPLY_REGULATOR)) + +DT_COMPAT_RASPBERRYPI_CSI_CONNECTOR := raspberrypi,csi-connector + +config DT_HAS_RASPBERRYPI_CSI_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_CSI_CONNECTOR)) + +DT_COMPAT_RASPBERRYPI_PICO_ADC := raspberrypi,pico-adc + +config DT_HAS_RASPBERRYPI_PICO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_ADC)) + +DT_COMPAT_RASPBERRYPI_PICO_CLOCK := raspberrypi,pico-clock + +config DT_HAS_RASPBERRYPI_PICO_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_CLOCK)) + +DT_COMPAT_RASPBERRYPI_PICO_CLOCK_CONTROLLER := raspberrypi,pico-clock-controller + +config DT_HAS_RASPBERRYPI_PICO_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_CLOCK_CONTROLLER)) + +DT_COMPAT_RASPBERRYPI_PICO_DMA := raspberrypi,pico-dma + +config DT_HAS_RASPBERRYPI_PICO_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_DMA)) + +DT_COMPAT_RASPBERRYPI_PICO_FLASH_CONTROLLER := raspberrypi,pico-flash-controller + +config DT_HAS_RASPBERRYPI_PICO_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_FLASH_CONTROLLER)) + +DT_COMPAT_RASPBERRYPI_PICO_GPIO := raspberrypi,pico-gpio + +config DT_HAS_RASPBERRYPI_PICO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_GPIO)) + +DT_COMPAT_RASPBERRYPI_PICO_GPIO_PORT := raspberrypi,pico-gpio-port + +config DT_HAS_RASPBERRYPI_PICO_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_GPIO_PORT)) + +DT_COMPAT_RASPBERRYPI_PICO_HEADER := raspberrypi,pico-header + +config DT_HAS_RASPBERRYPI_PICO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_HEADER)) + +DT_COMPAT_RASPBERRYPI_PICO_I2C := raspberrypi,pico-i2c + +config DT_HAS_RASPBERRYPI_PICO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_I2C)) + +DT_COMPAT_RASPBERRYPI_PICO_PINCTRL := raspberrypi,pico-pinctrl + +config DT_HAS_RASPBERRYPI_PICO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PINCTRL)) + +DT_COMPAT_RASPBERRYPI_PICO_PIO := raspberrypi,pico-pio + +config DT_HAS_RASPBERRYPI_PICO_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_PIO_DEVICE := raspberrypi,pico-pio-device + +config DT_HAS_RASPBERRYPI_PICO_PIO_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIO_DEVICE)) + +DT_COMPAT_RASPBERRYPI_PICO_PLL := raspberrypi,pico-pll + +config DT_HAS_RASPBERRYPI_PICO_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PLL)) + +DT_COMPAT_RASPBERRYPI_PICO_PWM := raspberrypi,pico-pwm + +config DT_HAS_RASPBERRYPI_PICO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PWM)) + +DT_COMPAT_RASPBERRYPI_PICO_RESET := raspberrypi,pico-reset + +config DT_HAS_RASPBERRYPI_PICO_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RESET)) + +DT_COMPAT_RASPBERRYPI_PICO_ROSC := raspberrypi,pico-rosc + +config DT_HAS_RASPBERRYPI_PICO_ROSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_ROSC)) + +DT_COMPAT_RASPBERRYPI_PICO_RTC := raspberrypi,pico-rtc + +config DT_HAS_RASPBERRYPI_PICO_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RTC)) + +DT_COMPAT_RASPBERRYPI_PICO_SPI := raspberrypi,pico-spi + +config DT_HAS_RASPBERRYPI_PICO_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SPI)) + +DT_COMPAT_RASPBERRYPI_PICO_SPI_PIO := raspberrypi,pico-spi-pio + +config DT_HAS_RASPBERRYPI_PICO_SPI_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SPI_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_TEMP := raspberrypi,pico-temp + +config DT_HAS_RASPBERRYPI_PICO_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_TEMP)) + +DT_COMPAT_RASPBERRYPI_PICO_TIMER := raspberrypi,pico-timer + +config DT_HAS_RASPBERRYPI_PICO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_TIMER)) + +DT_COMPAT_RASPBERRYPI_PICO_UART := raspberrypi,pico-uart + +config DT_HAS_RASPBERRYPI_PICO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_UART)) + +DT_COMPAT_RASPBERRYPI_PICO_UART_PIO := raspberrypi,pico-uart-pio + +config DT_HAS_RASPBERRYPI_PICO_UART_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_UART_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_USBD := raspberrypi,pico-usbd + +config DT_HAS_RASPBERRYPI_PICO_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_USBD)) + +DT_COMPAT_RASPBERRYPI_PICO_WATCHDOG := raspberrypi,pico-watchdog + +config DT_HAS_RASPBERRYPI_PICO_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_WATCHDOG)) + +DT_COMPAT_RASPBERRYPI_PICO_XOSC := raspberrypi,pico-xosc + +config DT_HAS_RASPBERRYPI_PICO_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_XOSC)) + +DT_COMPAT_RASPBERRYPI_RP1_GPIO := raspberrypi,rp1-gpio + +config DT_HAS_RASPBERRYPI_RP1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_RP1_GPIO)) + +DT_COMPAT_RASPBERRYPI_40PINS_HEADER := raspberrypi-40pins-header + +config DT_HAS_RASPBERRYPI_40PINS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_40PINS_HEADER)) + +DT_COMPAT_RAYDIUM_RM67162 := raydium,rm67162 + +config DT_HAS_RAYDIUM_RM67162_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RAYDIUM_RM67162)) + +DT_COMPAT_RAYDIUM_RM68200 := raydium,rm68200 + +config DT_HAS_RAYDIUM_RM68200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RAYDIUM_RM68200)) + +DT_COMPAT_REALTEK_RTL8211F := realtek,rtl8211f + +config DT_HAS_REALTEK_RTL8211F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTL8211F)) + +DT_COMPAT_REALTEK_RTS5912_ADC := realtek,rts5912-adc + +config DT_HAS_REALTEK_RTS5912_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_ADC)) + +DT_COMPAT_REALTEK_RTS5912_BBRAM := realtek,rts5912-bbram + +config DT_HAS_REALTEK_RTS5912_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_BBRAM)) + +DT_COMPAT_REALTEK_RTS5912_ESPI := realtek,rts5912-espi + +config DT_HAS_REALTEK_RTS5912_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_ESPI)) + +DT_COMPAT_REALTEK_RTS5912_FLASH_CONTROLLER := realtek,rts5912-flash-controller + +config DT_HAS_REALTEK_RTS5912_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_FLASH_CONTROLLER)) + +DT_COMPAT_REALTEK_RTS5912_GPIO := realtek,rts5912-gpio + +config DT_HAS_REALTEK_RTS5912_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_GPIO)) + +DT_COMPAT_REALTEK_RTS5912_I2C := realtek,rts5912-i2c + +config DT_HAS_REALTEK_RTS5912_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_I2C)) + +DT_COMPAT_REALTEK_RTS5912_KBD := realtek,rts5912-kbd + +config DT_HAS_REALTEK_RTS5912_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_KBD)) + +DT_COMPAT_REALTEK_RTS5912_PINCTRL := realtek,rts5912-pinctrl + +config DT_HAS_REALTEK_RTS5912_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_PINCTRL)) + +DT_COMPAT_REALTEK_RTS5912_PWM := realtek,rts5912-pwm + +config DT_HAS_REALTEK_RTS5912_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_PWM)) + +DT_COMPAT_REALTEK_RTS5912_RTC := realtek,rts5912-rtc + +config DT_HAS_REALTEK_RTS5912_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_RTC)) + +DT_COMPAT_REALTEK_RTS5912_RTMR := realtek,rts5912-rtmr + +config DT_HAS_REALTEK_RTS5912_RTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_RTMR)) + +DT_COMPAT_REALTEK_RTS5912_SCCON := realtek,rts5912-sccon + +config DT_HAS_REALTEK_RTS5912_SCCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SCCON)) + +DT_COMPAT_REALTEK_RTS5912_SHA := realtek,rts5912-sha + +config DT_HAS_REALTEK_RTS5912_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SHA)) + +DT_COMPAT_REALTEK_RTS5912_SLWTIMER := realtek,rts5912-slwtimer + +config DT_HAS_REALTEK_RTS5912_SLWTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SLWTIMER)) + +DT_COMPAT_REALTEK_RTS5912_TACH := realtek,rts5912-tach + +config DT_HAS_REALTEK_RTS5912_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_TACH)) + +DT_COMPAT_REALTEK_RTS5912_TIMER := realtek,rts5912-timer + +config DT_HAS_REALTEK_RTS5912_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_TIMER)) + +DT_COMPAT_REALTEK_RTS5912_UART := realtek,rts5912-uart + +config DT_HAS_REALTEK_RTS5912_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_UART)) + +DT_COMPAT_REALTEK_RTS5912_ULPM := realtek,rts5912-ulpm + +config DT_HAS_REALTEK_RTS5912_ULPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_ULPM)) + +DT_COMPAT_REALTEK_RTS5912_WATCHDOG := realtek,rts5912-watchdog + +config DT_HAS_REALTEK_RTS5912_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_WATCHDOG)) + +DT_COMPAT_REGULATOR_FIXED := regulator-fixed + +config DT_HAS_REGULATOR_FIXED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_FIXED)) + +DT_COMPAT_REGULATOR_GPIO := regulator-gpio + +config DT_HAS_REGULATOR_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_GPIO)) + +DT_COMPAT_RENESAS_BT_HCI_DA1453X := renesas,bt-hci-da1453x + +config DT_HAS_RENESAS_BT_HCI_DA1453X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_BT_HCI_DA1453X)) + +DT_COMPAT_RENESAS_BT_HCI_DA1469X := renesas,bt-hci-da1469x + +config DT_HAS_RENESAS_BT_HCI_DA1469X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_BT_HCI_DA1469X)) + +DT_COMPAT_RENESAS_HS300X := renesas,hs300x + +config DT_HAS_RENESAS_HS300X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_HS300X)) + +DT_COMPAT_RENESAS_HS400X := renesas,hs400x + +config DT_HAS_RENESAS_HS400X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_HS400X)) + +DT_COMPAT_RENESAS_OFS_MEMORY := renesas,ofs-memory + +config DT_HAS_RENESAS_OFS_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_OFS_MEMORY)) + +DT_COMPAT_RENESAS_PWM_RCAR := renesas,pwm-rcar + +config DT_HAS_RENESAS_PWM_RCAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_PWM_RCAR)) + +DT_COMPAT_RENESAS_R8A7795_CPG_MSSR := renesas,r8a7795-cpg-mssr + +config DT_HAS_RENESAS_R8A7795_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A7795_CPG_MSSR)) + +DT_COMPAT_RENESAS_R8A779F0_CPG_MSSR := renesas,r8a779f0-cpg-mssr + +config DT_HAS_RENESAS_R8A779F0_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A779F0_CPG_MSSR)) + +DT_COMPAT_RENESAS_RA_ACMPHS := renesas,ra-acmphs + +config DT_HAS_RENESAS_RA_ACMPHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ACMPHS)) + +DT_COMPAT_RENESAS_RA_ACMPHS_GLOBAL := renesas,ra-acmphs-global + +config DT_HAS_RENESAS_RA_ACMPHS_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ACMPHS_GLOBAL)) + +DT_COMPAT_RENESAS_RA_ADC := renesas,ra-adc + +config DT_HAS_RENESAS_RA_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ADC)) + +DT_COMPAT_RENESAS_RA_AGT := renesas,ra-agt + +config DT_HAS_RENESAS_RA_AGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_AGT)) + +DT_COMPAT_RENESAS_RA_AGT_COUNTER := renesas,ra-agt-counter + +config DT_HAS_RENESAS_RA_AGT_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_AGT_COUNTER)) + +DT_COMPAT_RENESAS_RA_BATTERY_BACKUP := renesas,ra-battery-backup + +config DT_HAS_RENESAS_RA_BATTERY_BACKUP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_BATTERY_BACKUP)) + +DT_COMPAT_RENESAS_RA_CANFD := renesas,ra-canfd + +config DT_HAS_RENESAS_RA_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CANFD)) + +DT_COMPAT_RENESAS_RA_CANFD_GLOBAL := renesas,ra-canfd-global + +config DT_HAS_RENESAS_RA_CANFD_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CANFD_GLOBAL)) + +DT_COMPAT_RENESAS_RA_CEU := renesas,ra-ceu + +config DT_HAS_RENESAS_RA_CEU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CEU)) + +DT_COMPAT_RENESAS_RA_CGC_BUSCLK := renesas,ra-cgc-busclk + +config DT_HAS_RENESAS_RA_CGC_BUSCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_BUSCLK)) + +DT_COMPAT_RENESAS_RA_CGC_EXTERNAL_CLOCK := renesas,ra-cgc-external-clock + +config DT_HAS_RENESAS_RA_CGC_EXTERNAL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_EXTERNAL_CLOCK)) + +DT_COMPAT_RENESAS_RA_CGC_PCLK := renesas,ra-cgc-pclk + +config DT_HAS_RENESAS_RA_CGC_PCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PCLK)) + +DT_COMPAT_RENESAS_RA_CGC_PCLK_BLOCK := renesas,ra-cgc-pclk-block + +config DT_HAS_RENESAS_RA_CGC_PCLK_BLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PCLK_BLOCK)) + +DT_COMPAT_RENESAS_RA_CGC_PLL := renesas,ra-cgc-pll + +config DT_HAS_RENESAS_RA_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PLL)) + +DT_COMPAT_RENESAS_RA_CGC_PLL_OUT := renesas,ra-cgc-pll-out + +config DT_HAS_RENESAS_RA_CGC_PLL_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PLL_OUT)) + +DT_COMPAT_RENESAS_RA_CGC_SUBCLK := renesas,ra-cgc-subclk + +config DT_HAS_RENESAS_RA_CGC_SUBCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_SUBCLK)) + +DT_COMPAT_RENESAS_RA_CGC_UTASEL := renesas,ra-cgc-utasel + +config DT_HAS_RENESAS_RA_CGC_UTASEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_UTASEL)) + +DT_COMPAT_RENESAS_RA_CRC := renesas,ra-crc + +config DT_HAS_RENESAS_RA_CRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CRC)) + +DT_COMPAT_RENESAS_RA_CTSU := renesas,ra-ctsu + +config DT_HAS_RENESAS_RA_CTSU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU)) + +DT_COMPAT_RENESAS_RA_CTSU_BUTTON := renesas,ra-ctsu-button + +config DT_HAS_RENESAS_RA_CTSU_BUTTON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU_BUTTON)) + +DT_COMPAT_RENESAS_RA_CTSU_SLIDER := renesas,ra-ctsu-slider + +config DT_HAS_RENESAS_RA_CTSU_SLIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU_SLIDER)) + +DT_COMPAT_RENESAS_RA_CTSU_WHEEL := renesas,ra-ctsu-wheel + +config DT_HAS_RENESAS_RA_CTSU_WHEEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU_WHEEL)) + +DT_COMPAT_RENESAS_RA_DAC := renesas,ra-dac + +config DT_HAS_RENESAS_RA_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DAC)) + +DT_COMPAT_RENESAS_RA_DAC_GLOBAL := renesas,ra-dac-global + +config DT_HAS_RENESAS_RA_DAC_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DAC_GLOBAL)) + +DT_COMPAT_RENESAS_RA_DMA := renesas,ra-dma + +config DT_HAS_RENESAS_RA_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DMA)) + +DT_COMPAT_RENESAS_RA_ELC := renesas,ra-elc + +config DT_HAS_RENESAS_RA_ELC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ELC)) + +DT_COMPAT_RENESAS_RA_ETHERNET := renesas,ra-ethernet + +config DT_HAS_RENESAS_RA_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ETHERNET)) + +DT_COMPAT_RENESAS_RA_EXTERNAL_INTERRUPT := renesas,ra-external-interrupt + +config DT_HAS_RENESAS_RA_EXTERNAL_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_EXTERNAL_INTERRUPT)) + +DT_COMPAT_RENESAS_RA_FLASH_HP_CONTROLLER := renesas,ra-flash-hp-controller + +config DT_HAS_RENESAS_RA_FLASH_HP_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_FLASH_HP_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_FLASH_LP_CONTROLLER := renesas,ra-flash-lp-controller + +config DT_HAS_RENESAS_RA_FLASH_LP_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_FLASH_LP_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_GLCDC := renesas,ra-glcdc + +config DT_HAS_RENESAS_RA_GLCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GLCDC)) + +DT_COMPAT_RENESAS_RA_GPIO_IOPORT := renesas,ra-gpio-ioport + +config DT_HAS_RENESAS_RA_GPIO_IOPORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO_IOPORT)) + +DT_COMPAT_RENESAS_RA_GPIO_MIPI_HEADER := renesas,ra-gpio-mipi-header + +config DT_HAS_RENESAS_RA_GPIO_MIPI_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO_MIPI_HEADER)) + +DT_COMPAT_RENESAS_RA_I2C_SCI := renesas,ra-i2c-sci + +config DT_HAS_RENESAS_RA_I2C_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I2C_SCI)) + +DT_COMPAT_RENESAS_RA_I2C_SCI_B := renesas,ra-i2c-sci-b + +config DT_HAS_RENESAS_RA_I2C_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I2C_SCI_B)) + +DT_COMPAT_RENESAS_RA_I2S_SSIE := renesas,ra-i2s-ssie + +config DT_HAS_RENESAS_RA_I2S_SSIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I2S_SSIE)) + +DT_COMPAT_RENESAS_RA_I3C := renesas,ra-i3c + +config DT_HAS_RENESAS_RA_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I3C)) + +DT_COMPAT_RENESAS_RA_IIC := renesas,ra-iic + +config DT_HAS_RENESAS_RA_IIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_IIC)) + +DT_COMPAT_RENESAS_RA_IPC_MBOX := renesas,ra-ipc-mbox + +config DT_HAS_RENESAS_RA_IPC_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_IPC_MBOX)) + +DT_COMPAT_RENESAS_RA_LVD := renesas,ra-lvd + +config DT_HAS_RENESAS_RA_LVD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_LVD)) + +DT_COMPAT_RENESAS_RA_MDIO := renesas,ra-mdio + +config DT_HAS_RENESAS_RA_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MDIO)) + +DT_COMPAT_RENESAS_RA_MIPI_DSI := renesas,ra-mipi-dsi + +config DT_HAS_RENESAS_RA_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MIPI_DSI)) + +DT_COMPAT_RENESAS_RA_MRAM_CONTROLLER := renesas,ra-mram-controller + +config DT_HAS_RENESAS_RA_MRAM_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MRAM_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_NPU := renesas,ra-npu + +config DT_HAS_RENESAS_RA_NPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NPU)) + +DT_COMPAT_RENESAS_RA_NV_CODE_FLASH := renesas,ra-nv-code-flash + +config DT_HAS_RENESAS_RA_NV_CODE_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_CODE_FLASH)) + +DT_COMPAT_RENESAS_RA_NV_DATA_FLASH := renesas,ra-nv-data-flash + +config DT_HAS_RENESAS_RA_NV_DATA_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_DATA_FLASH)) + +DT_COMPAT_RENESAS_RA_NV_MRAM := renesas,ra-nv-mram + +config DT_HAS_RENESAS_RA_NV_MRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_MRAM)) + +DT_COMPAT_RENESAS_RA_OSPI_B := renesas,ra-ospi-b + +config DT_HAS_RENESAS_RA_OSPI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_OSPI_B)) + +DT_COMPAT_RENESAS_RA_OSPI_B_NOR := renesas,ra-ospi-b-nor + +config DT_HAS_RENESAS_RA_OSPI_B_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_OSPI_B_NOR)) + +DT_COMPAT_RENESAS_RA_PARALLEL_GRAPHICS_HEADER := renesas,ra-parallel-graphics-header + +config DT_HAS_RENESAS_RA_PARALLEL_GRAPHICS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PARALLEL_GRAPHICS_HEADER)) + +DT_COMPAT_RENESAS_RA_PINCTRL_PFS := renesas,ra-pinctrl-pfs + +config DT_HAS_RENESAS_RA_PINCTRL_PFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PINCTRL_PFS)) + +DT_COMPAT_RENESAS_RA_PWM := renesas,ra-pwm + +config DT_HAS_RENESAS_RA_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PWM)) + +DT_COMPAT_RENESAS_RA_QSPI := renesas,ra-qspi + +config DT_HAS_RENESAS_RA_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_QSPI)) + +DT_COMPAT_RENESAS_RA_QSPI_NOR := renesas,ra-qspi-nor + +config DT_HAS_RENESAS_RA_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_QSPI_NOR)) + +DT_COMPAT_RENESAS_RA_RSIP_E51A_TRNG := renesas,ra-rsip-e51a-trng + +config DT_HAS_RENESAS_RA_RSIP_E51A_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_RSIP_E51A_TRNG)) + +DT_COMPAT_RENESAS_RA_RTC := renesas,ra-rtc + +config DT_HAS_RENESAS_RA_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_RTC)) + +DT_COMPAT_RENESAS_RA_SCE5_RNG := renesas,ra-sce5-rng + +config DT_HAS_RENESAS_RA_SCE5_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE5_RNG)) + +DT_COMPAT_RENESAS_RA_SCE7_RNG := renesas,ra-sce7-rng + +config DT_HAS_RENESAS_RA_SCE7_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE7_RNG)) + +DT_COMPAT_RENESAS_RA_SCE9_RNG := renesas,ra-sce9-rng + +config DT_HAS_RENESAS_RA_SCE9_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE9_RNG)) + +DT_COMPAT_RENESAS_RA_SCI := renesas,ra-sci + +config DT_HAS_RENESAS_RA_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCI)) + +DT_COMPAT_RENESAS_RA_SCI_UART := renesas,ra-sci-uart + +config DT_HAS_RENESAS_RA_SCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCI_UART)) + +DT_COMPAT_RENESAS_RA_SDHC := renesas,ra-sdhc + +config DT_HAS_RENESAS_RA_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SDHC)) + +DT_COMPAT_RENESAS_RA_SDRAM := renesas,ra-sdram + +config DT_HAS_RENESAS_RA_SDRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SDRAM)) + +DT_COMPAT_RENESAS_RA_SPI := renesas,ra-spi + +config DT_HAS_RENESAS_RA_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SPI)) + +DT_COMPAT_RENESAS_RA_TRNG := renesas,ra-trng + +config DT_HAS_RENESAS_RA_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_TRNG)) + +DT_COMPAT_RENESAS_RA_UDC := renesas,ra-udc + +config DT_HAS_RENESAS_RA_UDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_UDC)) + +DT_COMPAT_RENESAS_RA_ULPT := renesas,ra-ulpt + +config DT_HAS_RENESAS_RA_ULPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ULPT)) + +DT_COMPAT_RENESAS_RA_ULPT_TIMER := renesas,ra-ulpt-timer + +config DT_HAS_RENESAS_RA_ULPT_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ULPT_TIMER)) + +DT_COMPAT_RENESAS_RA_USBFS := renesas,ra-usbfs + +config DT_HAS_RENESAS_RA_USBFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBFS)) + +DT_COMPAT_RENESAS_RA_USBHS := renesas,ra-usbhs + +config DT_HAS_RENESAS_RA_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBHS)) + +DT_COMPAT_RENESAS_RA_USBPHYC := renesas,ra-usbphyc + +config DT_HAS_RENESAS_RA_USBPHYC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBPHYC)) + +DT_COMPAT_RENESAS_RA_WDT := renesas,ra-wdt + +config DT_HAS_RENESAS_RA_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_WDT)) + +DT_COMPAT_RENESAS_RA8_SPI_B := renesas,ra8-spi-b + +config DT_HAS_RENESAS_RA8_SPI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA8_SPI_B)) + +DT_COMPAT_RENESAS_RA8_UART_SCI_B := renesas,ra8-uart-sci-b + +config DT_HAS_RENESAS_RA8_UART_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA8_UART_SCI_B)) + +DT_COMPAT_RENESAS_RCAR_CAN := renesas,rcar-can + +config DT_HAS_RENESAS_RCAR_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_CAN)) + +DT_COMPAT_RENESAS_RCAR_CMT := renesas,rcar-cmt + +config DT_HAS_RENESAS_RCAR_CMT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_CMT)) + +DT_COMPAT_RENESAS_RCAR_GPIO := renesas,rcar-gpio + +config DT_HAS_RENESAS_RCAR_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_GPIO)) + +DT_COMPAT_RENESAS_RCAR_HSCIF := renesas,rcar-hscif + +config DT_HAS_RENESAS_RCAR_HSCIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_HSCIF)) + +DT_COMPAT_RENESAS_RCAR_I2C := renesas,rcar-i2c + +config DT_HAS_RENESAS_RCAR_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_I2C)) + +DT_COMPAT_RENESAS_RCAR_MMC := renesas,rcar-mmc + +config DT_HAS_RENESAS_RCAR_MMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_MMC)) + +DT_COMPAT_RENESAS_RCAR_PFC := renesas,rcar-pfc + +config DT_HAS_RENESAS_RCAR_PFC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_PFC)) + +DT_COMPAT_RENESAS_RCAR_SCIF := renesas,rcar-scif + +config DT_HAS_RENESAS_RCAR_SCIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_SCIF)) + +DT_COMPAT_RENESAS_RX := renesas,rx + +config DT_HAS_RENESAS_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX)) + +DT_COMPAT_RENESAS_RX_ADC := renesas,rx-adc + +config DT_HAS_RENESAS_RX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_ADC)) + +DT_COMPAT_RENESAS_RX_CGC_PCLK := renesas,rx-cgc-pclk + +config DT_HAS_RENESAS_RX_CGC_PCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_PCLK)) + +DT_COMPAT_RENESAS_RX_CGC_PCLK_BLOCK := renesas,rx-cgc-pclk-block + +config DT_HAS_RENESAS_RX_CGC_PCLK_BLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_PCLK_BLOCK)) + +DT_COMPAT_RENESAS_RX_CGC_PLL := renesas,rx-cgc-pll + +config DT_HAS_RENESAS_RX_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_PLL)) + +DT_COMPAT_RENESAS_RX_CGC_ROOT_CLOCK := renesas,rx-cgc-root-clock + +config DT_HAS_RENESAS_RX_CGC_ROOT_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_ROOT_CLOCK)) + +DT_COMPAT_RENESAS_RX_CTSU := renesas,rx-ctsu + +config DT_HAS_RENESAS_RX_CTSU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU)) + +DT_COMPAT_RENESAS_RX_CTSU_BUTTON := renesas,rx-ctsu-button + +config DT_HAS_RENESAS_RX_CTSU_BUTTON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU_BUTTON)) + +DT_COMPAT_RENESAS_RX_CTSU_SLIDER := renesas,rx-ctsu-slider + +config DT_HAS_RENESAS_RX_CTSU_SLIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU_SLIDER)) + +DT_COMPAT_RENESAS_RX_CTSU_WHEEL := renesas,rx-ctsu-wheel + +config DT_HAS_RENESAS_RX_CTSU_WHEEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU_WHEEL)) + +DT_COMPAT_RENESAS_RX_DTC := renesas,rx-dtc + +config DT_HAS_RENESAS_RX_DTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_DTC)) + +DT_COMPAT_RENESAS_RX_EXTERNAL_INTERRUPT := renesas,rx-external-interrupt + +config DT_HAS_RENESAS_RX_EXTERNAL_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_EXTERNAL_INTERRUPT)) + +DT_COMPAT_RENESAS_RX_FLASH := renesas,rx-flash + +config DT_HAS_RENESAS_RX_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_FLASH)) + +DT_COMPAT_RENESAS_RX_GPIO := renesas,rx-gpio + +config DT_HAS_RENESAS_RX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_GPIO)) + +DT_COMPAT_RENESAS_RX_I2C := renesas,rx-i2c + +config DT_HAS_RENESAS_RX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_I2C)) + +DT_COMPAT_RENESAS_RX_ICU := renesas,rx-icu + +config DT_HAS_RENESAS_RX_ICU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_ICU)) + +DT_COMPAT_RENESAS_RX_IWDT := renesas,rx-iwdt + +config DT_HAS_RENESAS_RX_IWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_IWDT)) + +DT_COMPAT_RENESAS_RX_LVD := renesas,rx-lvd + +config DT_HAS_RENESAS_RX_LVD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_LVD)) + +DT_COMPAT_RENESAS_RX_MTU := renesas,rx-mtu + +config DT_HAS_RENESAS_RX_MTU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_MTU)) + +DT_COMPAT_RENESAS_RX_MTU_PWM := renesas,rx-mtu-pwm + +config DT_HAS_RENESAS_RX_MTU_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_MTU_PWM)) + +DT_COMPAT_RENESAS_RX_NV_FLASH := renesas,rx-nv-flash + +config DT_HAS_RENESAS_RX_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_NV_FLASH)) + +DT_COMPAT_RENESAS_RX_PINCTRL := renesas,rx-pinctrl + +config DT_HAS_RENESAS_RX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_PINCTRL)) + +DT_COMPAT_RENESAS_RX_PINMUX := renesas,rx-pinmux + +config DT_HAS_RENESAS_RX_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_PINMUX)) + +DT_COMPAT_RENESAS_RX_RSPI := renesas,rx-rspi + +config DT_HAS_RENESAS_RX_RSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_RSPI)) + +DT_COMPAT_RENESAS_RX_SCI := renesas,rx-sci + +config DT_HAS_RENESAS_RX_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_SCI)) + +DT_COMPAT_RENESAS_RX_SWINT := renesas,rx-swint + +config DT_HAS_RENESAS_RX_SWINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_SWINT)) + +DT_COMPAT_RENESAS_RX_TIMER_CMT := renesas,rx-timer-cmt + +config DT_HAS_RENESAS_RX_TIMER_CMT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_TIMER_CMT)) + +DT_COMPAT_RENESAS_RX_TIMER_CMT_START_CONTROL := renesas,rx-timer-cmt-start-control + +config DT_HAS_RENESAS_RX_TIMER_CMT_START_CONTROL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_TIMER_CMT_START_CONTROL)) + +DT_COMPAT_RENESAS_RX_UART_SCI := renesas,rx-uart-sci + +config DT_HAS_RENESAS_RX_UART_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_UART_SCI)) + +DT_COMPAT_RENESAS_RX_UART_SCI_QEMU := renesas,rx-uart-sci-qemu + +config DT_HAS_RENESAS_RX_UART_SCI_QEMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_UART_SCI_QEMU)) + +DT_COMPAT_RENESAS_RXV1 := renesas,rxv1 + +config DT_HAS_RENESAS_RXV1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RXV1)) + +DT_COMPAT_RENESAS_RXV2 := renesas,rxv2 + +config DT_HAS_RENESAS_RXV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RXV2)) + +DT_COMPAT_RENESAS_RXV3 := renesas,rxv3 + +config DT_HAS_RENESAS_RXV3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RXV3)) + +DT_COMPAT_RENESAS_RZ_ADC := renesas,rz-adc + +config DT_HAS_RENESAS_RZ_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ADC)) + +DT_COMPAT_RENESAS_RZ_ADC_C := renesas,rz-adc-c + +config DT_HAS_RENESAS_RZ_ADC_C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ADC_C)) + +DT_COMPAT_RENESAS_RZ_CANFD := renesas,rz-canfd + +config DT_HAS_RENESAS_RZ_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CANFD)) + +DT_COMPAT_RENESAS_RZ_CANFD_GLOBAL := renesas,rz-canfd-global + +config DT_HAS_RENESAS_RZ_CANFD_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CANFD_GLOBAL)) + +DT_COMPAT_RENESAS_RZ_CGC := renesas,rz-cgc + +config DT_HAS_RENESAS_RZ_CGC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC)) + +DT_COMPAT_RENESAS_RZ_CGC_PLL := renesas,rz-cgc-pll + +config DT_HAS_RENESAS_RZ_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC_PLL)) + +DT_COMPAT_RENESAS_RZ_CGC_SUBCLK := renesas,rz-cgc-subclk + +config DT_HAS_RENESAS_RZ_CGC_SUBCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC_SUBCLK)) + +DT_COMPAT_RENESAS_RZ_CGC_SYS_CLOCK := renesas,rz-cgc-sys-clock + +config DT_HAS_RENESAS_RZ_CGC_SYS_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC_SYS_CLOCK)) + +DT_COMPAT_RENESAS_RZ_CMTW := renesas,rz-cmtw + +config DT_HAS_RENESAS_RZ_CMTW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CMTW)) + +DT_COMPAT_RENESAS_RZ_CMTW_COUNTER := renesas,rz-cmtw-counter + +config DT_HAS_RENESAS_RZ_CMTW_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CMTW_COUNTER)) + +DT_COMPAT_RENESAS_RZ_CPG := renesas,rz-cpg + +config DT_HAS_RENESAS_RZ_CPG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CPG)) + +DT_COMPAT_RENESAS_RZ_CPG_CLOCK := renesas,rz-cpg-clock + +config DT_HAS_RENESAS_RZ_CPG_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CPG_CLOCK)) + +DT_COMPAT_RENESAS_RZ_CPG_PLL := renesas,rz-cpg-pll + +config DT_HAS_RENESAS_RZ_CPG_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CPG_PLL)) + +DT_COMPAT_RENESAS_RZ_DMAC := renesas,rz-dmac + +config DT_HAS_RENESAS_RZ_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_DMAC)) + +DT_COMPAT_RENESAS_RZ_DMAC_B := renesas,rz-dmac-b + +config DT_HAS_RENESAS_RZ_DMAC_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_DMAC_B)) + +DT_COMPAT_RENESAS_RZ_EXT_IRQ := renesas,rz-ext-irq + +config DT_HAS_RENESAS_RZ_EXT_IRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_EXT_IRQ)) + +DT_COMPAT_RENESAS_RZ_GPIO := renesas,rz-gpio + +config DT_HAS_RENESAS_RZ_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO)) + +DT_COMPAT_RENESAS_RZ_GPIO_INT := renesas,rz-gpio-int + +config DT_HAS_RENESAS_RZ_GPIO_INT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO_INT)) + +DT_COMPAT_RENESAS_RZ_GPT := renesas,rz-gpt + +config DT_HAS_RENESAS_RZ_GPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPT)) + +DT_COMPAT_RENESAS_RZ_GPT_PWM := renesas,rz-gpt-pwm + +config DT_HAS_RENESAS_RZ_GPT_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPT_PWM)) + +DT_COMPAT_RENESAS_RZ_GTM := renesas,rz-gtm + +config DT_HAS_RENESAS_RZ_GTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GTM)) + +DT_COMPAT_RENESAS_RZ_GTM_COUNTER := renesas,rz-gtm-counter + +config DT_HAS_RENESAS_RZ_GTM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GTM_COUNTER)) + +DT_COMPAT_RENESAS_RZ_GTM_OS_TIMER := renesas,rz-gtm-os-timer + +config DT_HAS_RENESAS_RZ_GTM_OS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GTM_OS_TIMER)) + +DT_COMPAT_RENESAS_RZ_ICU := renesas,rz-icu + +config DT_HAS_RENESAS_RZ_ICU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ICU)) + +DT_COMPAT_RENESAS_RZ_IIC := renesas,rz-iic + +config DT_HAS_RENESAS_RZ_IIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_IIC)) + +DT_COMPAT_RENESAS_RZ_INTC := renesas,rz-intc + +config DT_HAS_RENESAS_RZ_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_INTC)) + +DT_COMPAT_RENESAS_RZ_MHU_MBOX := renesas,rz-mhu-mbox + +config DT_HAS_RENESAS_RZ_MHU_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_MHU_MBOX)) + +DT_COMPAT_RENESAS_RZ_MTU := renesas,rz-mtu + +config DT_HAS_RENESAS_RZ_MTU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_MTU)) + +DT_COMPAT_RENESAS_RZ_MTU_PWM := renesas,rz-mtu-pwm + +config DT_HAS_RENESAS_RZ_MTU_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_MTU_PWM)) + +DT_COMPAT_RENESAS_RZ_QSPI_SPIBSC := renesas,rz-qspi-spibsc + +config DT_HAS_RENESAS_RZ_QSPI_SPIBSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_QSPI_SPIBSC)) + +DT_COMPAT_RENESAS_RZ_QSPI_XSPI := renesas,rz-qspi-xspi + +config DT_HAS_RENESAS_RZ_QSPI_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_QSPI_XSPI)) + +DT_COMPAT_RENESAS_RZ_RIIC := renesas,rz-riic + +config DT_HAS_RENESAS_RZ_RIIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_RIIC)) + +DT_COMPAT_RENESAS_RZ_RSPI := renesas,rz-rspi + +config DT_HAS_RENESAS_RZ_RSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_RSPI)) + +DT_COMPAT_RENESAS_RZ_SCI := renesas,rz-sci + +config DT_HAS_RENESAS_RZ_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI)) + +DT_COMPAT_RENESAS_RZ_SCI_B := renesas,rz-sci-b + +config DT_HAS_RENESAS_RZ_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI_B)) + +DT_COMPAT_RENESAS_RZ_SCI_B_UART := renesas,rz-sci-b-uart + +config DT_HAS_RENESAS_RZ_SCI_B_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI_B_UART)) + +DT_COMPAT_RENESAS_RZ_SCI_UART := renesas,rz-sci-uart + +config DT_HAS_RENESAS_RZ_SCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI_UART)) + +DT_COMPAT_RENESAS_RZ_SCIF_UART := renesas,rz-scif-uart + +config DT_HAS_RENESAS_RZ_SCIF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCIF_UART)) + +DT_COMPAT_RENESAS_RZ_SPI := renesas,rz-spi + +config DT_HAS_RENESAS_RZ_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SPI)) + +DT_COMPAT_RENESAS_RZ_SPIBSC := renesas,rz-spibsc + +config DT_HAS_RENESAS_RZ_SPIBSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SPIBSC)) + +DT_COMPAT_RENESAS_RZ_WDT := renesas,rz-wdt + +config DT_HAS_RENESAS_RZ_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_WDT)) + +DT_COMPAT_RENESAS_RZ_XSPI := renesas,rz-xspi + +config DT_HAS_RENESAS_RZ_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_XSPI)) + +DT_COMPAT_RENESAS_RZA_PINCTRL := renesas,rza-pinctrl + +config DT_HAS_RENESAS_RZA_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA_PINCTRL)) + +DT_COMPAT_RENESAS_RZA2M_CPG := renesas,rza2m-cpg + +config DT_HAS_RENESAS_RZA2M_CPG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_CPG)) + +DT_COMPAT_RENESAS_RZA2M_GPIO := renesas,rza2m-gpio + +config DT_HAS_RENESAS_RZA2M_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_GPIO)) + +DT_COMPAT_RENESAS_RZA2M_GPIO_INT := renesas,rza2m-gpio-int + +config DT_HAS_RENESAS_RZA2M_GPIO_INT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_GPIO_INT)) + +DT_COMPAT_RENESAS_RZA2M_OSTM := renesas,rza2m-ostm + +config DT_HAS_RENESAS_RZA2M_OSTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_OSTM)) + +DT_COMPAT_RENESAS_RZA2M_PINCTRL := renesas,rza2m-pinctrl + +config DT_HAS_RENESAS_RZA2M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_PINCTRL)) + +DT_COMPAT_RENESAS_RZA2M_SCIF_UART := renesas,rza2m-scif-uart + +config DT_HAS_RENESAS_RZA2M_SCIF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_SCIF_UART)) + +DT_COMPAT_RENESAS_RZG_PINCTRL := renesas,rzg-pinctrl + +config DT_HAS_RENESAS_RZG_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZG_PINCTRL)) + +DT_COMPAT_RENESAS_RZN_PINCTRL := renesas,rzn-pinctrl + +config DT_HAS_RENESAS_RZN_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZN_PINCTRL)) + +DT_COMPAT_RENESAS_RZT_PINCTRL := renesas,rzt-pinctrl + +config DT_HAS_RENESAS_RZT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT_PINCTRL)) + +DT_COMPAT_RENESAS_RZT2M_GPIO := renesas,rzt2m-gpio + +config DT_HAS_RENESAS_RZT2M_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_GPIO)) + +DT_COMPAT_RENESAS_RZT2M_GPIO_COMMON := renesas,rzt2m-gpio-common + +config DT_HAS_RENESAS_RZT2M_GPIO_COMMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_GPIO_COMMON)) + +DT_COMPAT_RENESAS_RZT2M_PINCTRL := renesas,rzt2m-pinctrl + +config DT_HAS_RENESAS_RZT2M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_PINCTRL)) + +DT_COMPAT_RENESAS_RZT2M_UART := renesas,rzt2m-uart + +config DT_HAS_RENESAS_RZT2M_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_UART)) + +DT_COMPAT_RENESAS_RZV_PINCTRL := renesas,rzv-pinctrl + +config DT_HAS_RENESAS_RZV_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZV_PINCTRL)) + +DT_COMPAT_RENESAS_SLG47105 := renesas,slg47105 + +config DT_HAS_RENESAS_SLG47105_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG47105)) + +DT_COMPAT_RENESAS_SLG47115 := renesas,slg47115 + +config DT_HAS_RENESAS_SLG47115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG47115)) + +DT_COMPAT_RENESAS_SLG471X5 := renesas,slg471x5 + +config DT_HAS_RENESAS_SLG471X5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG471X5)) + +DT_COMPAT_RENESAS_SMARTBOND_ADC := renesas,smartbond-adc + +config DT_HAS_RENESAS_SMARTBOND_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_ADC)) + +DT_COMPAT_RENESAS_SMARTBOND_CRYPTO := renesas,smartbond-crypto + +config DT_HAS_RENESAS_SMARTBOND_CRYPTO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_CRYPTO)) + +DT_COMPAT_RENESAS_SMARTBOND_DISPLAY := renesas,smartbond-display + +config DT_HAS_RENESAS_SMARTBOND_DISPLAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_DISPLAY)) + +DT_COMPAT_RENESAS_SMARTBOND_DMA := renesas,smartbond-dma + +config DT_HAS_RENESAS_SMARTBOND_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_DMA)) + +DT_COMPAT_RENESAS_SMARTBOND_FLASH_CONTROLLER := renesas,smartbond-flash-controller + +config DT_HAS_RENESAS_SMARTBOND_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_FLASH_CONTROLLER)) + +DT_COMPAT_RENESAS_SMARTBOND_GPIO := renesas,smartbond-gpio + +config DT_HAS_RENESAS_SMARTBOND_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_GPIO)) + +DT_COMPAT_RENESAS_SMARTBOND_I2C := renesas,smartbond-i2c + +config DT_HAS_RENESAS_SMARTBOND_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_I2C)) + +DT_COMPAT_RENESAS_SMARTBOND_LP_CLK := renesas,smartbond-lp-clk + +config DT_HAS_RENESAS_SMARTBOND_LP_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_LP_CLK)) + +DT_COMPAT_RENESAS_SMARTBOND_LP_OSC := renesas,smartbond-lp-osc + +config DT_HAS_RENESAS_SMARTBOND_LP_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_LP_OSC)) + +DT_COMPAT_RENESAS_SMARTBOND_MIPI_DBI := renesas,smartbond-mipi-dbi + +config DT_HAS_RENESAS_SMARTBOND_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_MIPI_DBI)) + +DT_COMPAT_RENESAS_SMARTBOND_NOR_PSRAM := renesas,smartbond-nor-psram + +config DT_HAS_RENESAS_SMARTBOND_NOR_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_NOR_PSRAM)) + +DT_COMPAT_RENESAS_SMARTBOND_PINCTRL := renesas,smartbond-pinctrl + +config DT_HAS_RENESAS_SMARTBOND_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_PINCTRL)) + +DT_COMPAT_RENESAS_SMARTBOND_REGULATOR := renesas,smartbond-regulator + +config DT_HAS_RENESAS_SMARTBOND_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_REGULATOR)) + +DT_COMPAT_RENESAS_SMARTBOND_RTC := renesas,smartbond-rtc + +config DT_HAS_RENESAS_SMARTBOND_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_RTC)) + +DT_COMPAT_RENESAS_SMARTBOND_SDADC := renesas,smartbond-sdadc + +config DT_HAS_RENESAS_SMARTBOND_SDADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SDADC)) + +DT_COMPAT_RENESAS_SMARTBOND_SPI := renesas,smartbond-spi + +config DT_HAS_RENESAS_SMARTBOND_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SPI)) + +DT_COMPAT_RENESAS_SMARTBOND_SYS_CLK := renesas,smartbond-sys-clk + +config DT_HAS_RENESAS_SMARTBOND_SYS_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SYS_CLK)) + +DT_COMPAT_RENESAS_SMARTBOND_TIMER := renesas,smartbond-timer + +config DT_HAS_RENESAS_SMARTBOND_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_TIMER)) + +DT_COMPAT_RENESAS_SMARTBOND_TRNG := renesas,smartbond-trng + +config DT_HAS_RENESAS_SMARTBOND_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_TRNG)) + +DT_COMPAT_RENESAS_SMARTBOND_UART := renesas,smartbond-uart + +config DT_HAS_RENESAS_SMARTBOND_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_UART)) + +DT_COMPAT_RENESAS_SMARTBOND_USBD := renesas,smartbond-usbd + +config DT_HAS_RENESAS_SMARTBOND_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_USBD)) + +DT_COMPAT_RENESAS_SMARTBOND_WATCHDOG := renesas,smartbond-watchdog + +config DT_HAS_RENESAS_SMARTBOND_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_WATCHDOG)) + +DT_COMPAT_RESET_MMIO := reset-mmio + +config DT_HAS_RESET_MMIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RESET_MMIO)) + +DT_COMPAT_REYAX_RYLRXXX := reyax,rylrxxx + +config DT_HAS_REYAX_RYLRXXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REYAX_RYLRXXX)) + +DT_COMPAT_RICHTEK_RT1715 := richtek,rt1715 + +config DT_HAS_RICHTEK_RT1715_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1715)) + +DT_COMPAT_RICHTEK_RT1718S := richtek,rt1718s + +config DT_HAS_RICHTEK_RT1718S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1718S)) + +DT_COMPAT_RICHTEK_RT1718S_GPIO_PORT := richtek,rt1718s-gpio-port + +config DT_HAS_RICHTEK_RT1718S_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1718S_GPIO_PORT)) + +DT_COMPAT_RISCV_CLIC := riscv,clic + +config DT_HAS_RISCV_CLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_CLIC)) + +DT_COMPAT_RISCV_CPU_INTC := riscv,cpu-intc + +config DT_HAS_RISCV_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_CPU_INTC)) + +DT_COMPAT_RISCV_MACHINE_TIMER := riscv,machine-timer + +config DT_HAS_RISCV_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_MACHINE_TIMER)) + +DT_COMPAT_ROCKTECH_RK043FN02H_CT := rocktech,rk043fn02h-ct + +config DT_HAS_ROCKTECH_RK043FN02H_CT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROCKTECH_RK043FN02H_CT)) + +DT_COMPAT_ROHM_BD8LB600FS := rohm,bd8lb600fs + +config DT_HAS_ROHM_BD8LB600FS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS)) + +DT_COMPAT_ROHM_BD8LB600FS_DIAGNOSTICS := rohm,bd8lb600fs-diagnostics + +config DT_HAS_ROHM_BD8LB600FS_DIAGNOSTICS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS_DIAGNOSTICS)) + +DT_COMPAT_ROHM_BD8LB600FS_GPIO := rohm,bd8lb600fs-gpio + +config DT_HAS_ROHM_BD8LB600FS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS_GPIO)) + +DT_COMPAT_ROHM_BH1730 := rohm,bh1730 + +config DT_HAS_ROHM_BH1730_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1730)) + +DT_COMPAT_ROHM_BH1750 := rohm,bh1750 + +config DT_HAS_ROHM_BH1750_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1750)) + +DT_COMPAT_ROHM_BH1790 := rohm,bh1790 + +config DT_HAS_ROHM_BH1790_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1790)) + +DT_COMPAT_SAMPLE_CONTROLLER := sample_controller + +config DT_HAS_SAMPLE_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SAMPLE_CONTROLLER)) + +DT_COMPAT_SBS_DEFAULT_SBS_GAUGE := sbs,default-sbs-gauge + +config DT_HAS_SBS_DEFAULT_SBS_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_DEFAULT_SBS_GAUGE)) + +DT_COMPAT_SBS_SBS_CHARGER := sbs,sbs-charger + +config DT_HAS_SBS_SBS_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_CHARGER)) + +DT_COMPAT_SBS_SBS_GAUGE := sbs,sbs-gauge + +config DT_HAS_SBS_SBS_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_GAUGE)) + +DT_COMPAT_SBS_SBS_GAUGE_NEW_API := sbs,sbs-gauge-new-api + +config DT_HAS_SBS_SBS_GAUGE_NEW_API_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_GAUGE_NEW_API)) + +DT_COMPAT_SCIOSENSE_ENS160 := sciosense,ens160 + +config DT_HAS_SCIOSENSE_ENS160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SCIOSENSE_ENS160)) + +DT_COMPAT_SEEED_GROVE_LCD_RGB := seeed,grove-lcd-rgb + +config DT_HAS_SEEED_GROVE_LCD_RGB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_LCD_RGB)) + +DT_COMPAT_SEEED_GROVE_LIGHT := seeed,grove-light + +config DT_HAS_SEEED_GROVE_LIGHT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_LIGHT)) + +DT_COMPAT_SEEED_GROVE_TEMPERATURE := seeed,grove-temperature + +config DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_TEMPERATURE)) + +DT_COMPAT_SEEED_HM330X := seeed,hm330x + +config DT_HAS_SEEED_HM330X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_HM330X)) + +DT_COMPAT_SEEED_XIAO_GPIO := seeed,xiao-gpio + +config DT_HAS_SEEED_XIAO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_XIAO_GPIO)) + +DT_COMPAT_SEGGER_RTT_UART := segger,rtt-uart + +config DT_HAS_SEGGER_RTT_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEGGER_RTT_UART)) + +DT_COMPAT_SEMTECH_SX1261 := semtech,sx1261 + +config DT_HAS_SEMTECH_SX1261_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1261)) + +DT_COMPAT_SEMTECH_SX1262 := semtech,sx1262 + +config DT_HAS_SEMTECH_SX1262_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1262)) + +DT_COMPAT_SEMTECH_SX1272 := semtech,sx1272 + +config DT_HAS_SEMTECH_SX1272_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1272)) + +DT_COMPAT_SEMTECH_SX1276 := semtech,sx1276 + +config DT_HAS_SEMTECH_SX1276_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1276)) + +DT_COMPAT_SEMTECH_SX1509B := semtech,sx1509b + +config DT_HAS_SEMTECH_SX1509B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1509B)) + +DT_COMPAT_SEMTECH_SX9500 := semtech,sx9500 + +config DT_HAS_SEMTECH_SX9500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX9500)) + +DT_COMPAT_SENSIRION_SCD40 := sensirion,scd40 + +config DT_HAS_SENSIRION_SCD40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SCD40)) + +DT_COMPAT_SENSIRION_SCD41 := sensirion,scd41 + +config DT_HAS_SENSIRION_SCD41_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SCD41)) + +DT_COMPAT_SENSIRION_SGP40 := sensirion,sgp40 + +config DT_HAS_SENSIRION_SGP40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SGP40)) + +DT_COMPAT_SENSIRION_SHT21 := sensirion,sht21 + +config DT_HAS_SENSIRION_SHT21_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT21)) + +DT_COMPAT_SENSIRION_SHT3XD := sensirion,sht3xd + +config DT_HAS_SENSIRION_SHT3XD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT3XD)) + +DT_COMPAT_SENSIRION_SHT4X := sensirion,sht4x + +config DT_HAS_SENSIRION_SHT4X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT4X)) + +DT_COMPAT_SENSIRION_SHTCX := sensirion,shtcx + +config DT_HAS_SENSIRION_SHTCX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHTCX)) + +DT_COMPAT_SENSIRION_STS4X := sensirion,sts4x + +config DT_HAS_SENSIRION_STS4X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_STS4X)) + +DT_COMPAT_SENSRY_SY1XX := sensry,sy1xx + +config DT_HAS_SENSRY_SY1XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX)) + +DT_COMPAT_SENSRY_SY1XX_EVENT_UNIT := sensry,sy1xx-event-unit + +config DT_HAS_SENSRY_SY1XX_EVENT_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_EVENT_UNIT)) + +DT_COMPAT_SENSRY_SY1XX_GPIO := sensry,sy1xx-gpio + +config DT_HAS_SENSRY_SY1XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_GPIO)) + +DT_COMPAT_SENSRY_SY1XX_I2C := sensry,sy1xx-i2c + +config DT_HAS_SENSRY_SY1XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_I2C)) + +DT_COMPAT_SENSRY_SY1XX_MAC := sensry,sy1xx-mac + +config DT_HAS_SENSRY_SY1XX_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_MAC)) + +DT_COMPAT_SENSRY_SY1XX_MDIO := sensry,sy1xx-mdio + +config DT_HAS_SENSRY_SY1XX_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_MDIO)) + +DT_COMPAT_SENSRY_SY1XX_PINCTRL := sensry,sy1xx-pinctrl + +config DT_HAS_SENSRY_SY1XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_PINCTRL)) + +DT_COMPAT_SENSRY_SY1XX_SYS_TIMER := sensry,sy1xx-sys-timer + +config DT_HAS_SENSRY_SY1XX_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_SYS_TIMER)) + +DT_COMPAT_SENSRY_SY1XX_TRNG := sensry,sy1xx-trng + +config DT_HAS_SENSRY_SY1XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_TRNG)) + +DT_COMPAT_SENSRY_SY1XX_UART := sensry,sy1xx-uart + +config DT_HAS_SENSRY_SY1XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_UART)) + +DT_COMPAT_SHARED_IRQ := shared-irq + +config DT_HAS_SHARED_IRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SHARED_IRQ)) + +DT_COMPAT_SHARP_LS0XX := sharp,ls0xx + +config DT_HAS_SHARP_LS0XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SHARP_LS0XX)) + +DT_COMPAT_SIEMENS_IVSHMEM_ETH := siemens,ivshmem-eth + +config DT_HAS_SIEMENS_IVSHMEM_ETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIEMENS_IVSHMEM_ETH)) + +DT_COMPAT_SIFIVE_CLIC_DRAFT := sifive,clic-draft + +config DT_HAS_SIFIVE_CLIC_DRAFT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_CLIC_DRAFT)) + +DT_COMPAT_SIFIVE_CLINT0 := sifive,clint0 + +config DT_HAS_SIFIVE_CLINT0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_CLINT0)) + +DT_COMPAT_SIFIVE_DTIM0 := sifive,dtim0 + +config DT_HAS_SIFIVE_DTIM0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_DTIM0)) + +DT_COMPAT_SIFIVE_E24 := sifive,e24 + +config DT_HAS_SIFIVE_E24_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E24)) + +DT_COMPAT_SIFIVE_E31 := sifive,e31 + +config DT_HAS_SIFIVE_E31_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E31)) + +DT_COMPAT_SIFIVE_E51 := sifive,e51 + +config DT_HAS_SIFIVE_E51_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E51)) + +DT_COMPAT_SIFIVE_FU740_C000_DDR := sifive,fu740-c000-ddr + +config DT_HAS_SIFIVE_FU740_C000_DDR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_FU740_C000_DDR)) + +DT_COMPAT_SIFIVE_GPIO0 := sifive,gpio0 + +config DT_HAS_SIFIVE_GPIO0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_GPIO0)) + +DT_COMPAT_SIFIVE_I2C0 := sifive,i2c0 + +config DT_HAS_SIFIVE_I2C0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_I2C0)) + +DT_COMPAT_SIFIVE_PINCTRL := sifive,pinctrl + +config DT_HAS_SIFIVE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PINCTRL)) + +DT_COMPAT_SIFIVE_PLIC_1_0_0 := sifive,plic-1.0.0 + +config DT_HAS_SIFIVE_PLIC_1_0_0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PLIC_1_0_0)) + +DT_COMPAT_SIFIVE_PWM0 := sifive,pwm0 + +config DT_HAS_SIFIVE_PWM0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PWM0)) + +DT_COMPAT_SIFIVE_S7 := sifive,s7 + +config DT_HAS_SIFIVE_S7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_S7)) + +DT_COMPAT_SIFIVE_SPI0 := sifive,spi0 + +config DT_HAS_SIFIVE_SPI0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_SPI0)) + +DT_COMPAT_SIFIVE_U54 := sifive,u54 + +config DT_HAS_SIFIVE_U54_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_U54)) + +DT_COMPAT_SIFIVE_UART0 := sifive,uart0 + +config DT_HAS_SIFIVE_UART0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_UART0)) + +DT_COMPAT_SIFIVE_WDT := sifive,wdt + +config DT_HAS_SIFIVE_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_WDT)) + +DT_COMPAT_SIFLI_SF32LB_AON := sifli,sf32lb-aon + +config DT_HAS_SIFLI_SF32LB_AON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_AON)) + +DT_COMPAT_SIFLI_SF32LB_CFG := sifli,sf32lb-cfg + +config DT_HAS_SIFLI_SF32LB_CFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_CFG)) + +DT_COMPAT_SIFLI_SF32LB_DLL := sifli,sf32lb-dll + +config DT_HAS_SIFLI_SF32LB_DLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_DLL)) + +DT_COMPAT_SIFLI_SF32LB_DMAC := sifli,sf32lb-dmac + +config DT_HAS_SIFLI_SF32LB_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_DMAC)) + +DT_COMPAT_SIFLI_SF32LB_GPIO := sifli,sf32lb-gpio + +config DT_HAS_SIFLI_SF32LB_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPIO)) + +DT_COMPAT_SIFLI_SF32LB_GPIO_PARENT := sifli,sf32lb-gpio-parent + +config DT_HAS_SIFLI_SF32LB_GPIO_PARENT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPIO_PARENT)) + +DT_COMPAT_SIFLI_SF32LB_HXT48 := sifli,sf32lb-hxt48 + +config DT_HAS_SIFLI_SF32LB_HXT48_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_HXT48)) + +DT_COMPAT_SIFLI_SF32LB_MPI_QSPI_NOR := sifli,sf32lb-mpi-qspi-nor + +config DT_HAS_SIFLI_SF32LB_MPI_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_MPI_QSPI_NOR)) + +DT_COMPAT_SIFLI_SF32LB_PMUC := sifli,sf32lb-pmuc + +config DT_HAS_SIFLI_SF32LB_PMUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_PMUC)) + +DT_COMPAT_SIFLI_SF32LB_RCC := sifli,sf32lb-rcc + +config DT_HAS_SIFLI_SF32LB_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RCC)) + +DT_COMPAT_SIFLI_SF32LB_RCC_CLK := sifli,sf32lb-rcc-clk + +config DT_HAS_SIFLI_SF32LB_RCC_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RCC_CLK)) + +DT_COMPAT_SIFLI_SF32LB_RCC_RCTL := sifli,sf32lb-rcc-rctl + +config DT_HAS_SIFLI_SF32LB_RCC_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RCC_RCTL)) + +DT_COMPAT_SIFLI_SF32LB_RTC := sifli,sf32lb-rtc + +config DT_HAS_SIFLI_SF32LB_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RTC)) + +DT_COMPAT_SIFLI_SF32LB_RTC_BACKUP := sifli,sf32lb-rtc-backup + +config DT_HAS_SIFLI_SF32LB_RTC_BACKUP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RTC_BACKUP)) + +DT_COMPAT_SIFLI_SF32LB_USART := sifli,sf32lb-usart + +config DT_HAS_SIFLI_SF32LB_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_USART)) + +DT_COMPAT_SIFLI_SF32LB_WDT := sifli,sf32lb-wdt + +config DT_HAS_SIFLI_SF32LB_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_WDT)) + +DT_COMPAT_SIFLI_SF32LB52X_PINMUX := sifli,sf32lb52x-pinmux + +config DT_HAS_SIFLI_SF32LB52X_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB52X_PINMUX)) + +DT_COMPAT_SILABS_ACMP := silabs,acmp + +config DT_HAS_SILABS_ACMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_ACMP)) + +DT_COMPAT_SILABS_BT_HCI_EFR32 := silabs,bt-hci-efr32 + +config DT_HAS_SILABS_BT_HCI_EFR32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_BT_HCI_EFR32)) + +DT_COMPAT_SILABS_BURAM := silabs,buram + +config DT_HAS_SILABS_BURAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_BURAM)) + +DT_COMPAT_SILABS_DBUS_PINCTRL := silabs,dbus-pinctrl + +config DT_HAS_SILABS_DBUS_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_DBUS_PINCTRL)) + +DT_COMPAT_SILABS_EUSART_SPI := silabs,eusart-spi + +config DT_HAS_SILABS_EUSART_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_EUSART_SPI)) + +DT_COMPAT_SILABS_EUSART_UART := silabs,eusart-uart + +config DT_HAS_SILABS_EUSART_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_EUSART_UART)) + +DT_COMPAT_SILABS_EXP_HEADER := silabs,exp-header + +config DT_HAS_SILABS_EXP_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_EXP_HEADER)) + +DT_COMPAT_SILABS_GECKO_ADC := silabs,gecko-adc + +config DT_HAS_SILABS_GECKO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_ADC)) + +DT_COMPAT_SILABS_GECKO_BURTC := silabs,gecko-burtc + +config DT_HAS_SILABS_GECKO_BURTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_BURTC)) + +DT_COMPAT_SILABS_GECKO_ETHERNET := silabs,gecko-ethernet + +config DT_HAS_SILABS_GECKO_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_ETHERNET)) + +DT_COMPAT_SILABS_GECKO_FLASH_CONTROLLER := silabs,gecko-flash-controller + +config DT_HAS_SILABS_GECKO_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_GECKO_GPIO := silabs,gecko-gpio + +config DT_HAS_SILABS_GECKO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_GPIO)) + +DT_COMPAT_SILABS_GECKO_GPIO_PORT := silabs,gecko-gpio-port + +config DT_HAS_SILABS_GECKO_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_GPIO_PORT)) + +DT_COMPAT_SILABS_GECKO_I2C := silabs,gecko-i2c + +config DT_HAS_SILABS_GECKO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_I2C)) + +DT_COMPAT_SILABS_GECKO_LEUART := silabs,gecko-leuart + +config DT_HAS_SILABS_GECKO_LEUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_LEUART)) + +DT_COMPAT_SILABS_GECKO_PINCTRL := silabs,gecko-pinctrl + +config DT_HAS_SILABS_GECKO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_PINCTRL)) + +DT_COMPAT_SILABS_GECKO_PWM := silabs,gecko-pwm + +config DT_HAS_SILABS_GECKO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_PWM)) + +DT_COMPAT_SILABS_GECKO_RTCC := silabs,gecko-rtcc + +config DT_HAS_SILABS_GECKO_RTCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_RTCC)) + +DT_COMPAT_SILABS_GECKO_SEMAILBOX := silabs,gecko-semailbox + +config DT_HAS_SILABS_GECKO_SEMAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_SEMAILBOX)) + +DT_COMPAT_SILABS_GECKO_STIMER := silabs,gecko-stimer + +config DT_HAS_SILABS_GECKO_STIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_STIMER)) + +DT_COMPAT_SILABS_GECKO_TIMER := silabs,gecko-timer + +config DT_HAS_SILABS_GECKO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_TIMER)) + +DT_COMPAT_SILABS_GECKO_TRNG := silabs,gecko-trng + +config DT_HAS_SILABS_GECKO_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_TRNG)) + +DT_COMPAT_SILABS_GECKO_UART := silabs,gecko-uart + +config DT_HAS_SILABS_GECKO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_UART)) + +DT_COMPAT_SILABS_GECKO_USART := silabs,gecko-usart + +config DT_HAS_SILABS_GECKO_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_USART)) + +DT_COMPAT_SILABS_GECKO_WDOG := silabs,gecko-wdog + +config DT_HAS_SILABS_GECKO_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_WDOG)) + +DT_COMPAT_SILABS_GPDMA := silabs,gpdma + +config DT_HAS_SILABS_GPDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPDMA)) + +DT_COMPAT_SILABS_GPIO := silabs,gpio + +config DT_HAS_SILABS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPIO)) + +DT_COMPAT_SILABS_GPIO_PORT := silabs,gpio-port + +config DT_HAS_SILABS_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPIO_PORT)) + +DT_COMPAT_SILABS_GSPI := silabs,gspi + +config DT_HAS_SILABS_GSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GSPI)) + +DT_COMPAT_SILABS_HFXO := silabs,hfxo + +config DT_HAS_SILABS_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_HFXO)) + +DT_COMPAT_SILABS_I2C := silabs,i2c + +config DT_HAS_SILABS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_I2C)) + +DT_COMPAT_SILABS_IADC := silabs,iadc + +config DT_HAS_SILABS_IADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_IADC)) + +DT_COMPAT_SILABS_LDMA := silabs,ldma + +config DT_HAS_SILABS_LDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_LDMA)) + +DT_COMPAT_SILABS_LETIMER_PWM := silabs,letimer-pwm + +config DT_HAS_SILABS_LETIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_LETIMER_PWM)) + +DT_COMPAT_SILABS_PTI := silabs,pti + +config DT_HAS_SILABS_PTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_PTI)) + +DT_COMPAT_SILABS_RTCC := silabs,rtcc + +config DT_HAS_SILABS_RTCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_RTCC)) + +DT_COMPAT_SILABS_SERIES_CLOCK := silabs,series-clock + +config DT_HAS_SILABS_SERIES_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES_CLOCK)) + +DT_COMPAT_SILABS_SERIES2_DCDC := silabs,series2-dcdc + +config DT_HAS_SILABS_SERIES2_DCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_DCDC)) + +DT_COMPAT_SILABS_SERIES2_FLASH_CONTROLLER := silabs,series2-flash-controller + +config DT_HAS_SILABS_SERIES2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SERIES2_HFRCODPLL := silabs,series2-hfrcodpll + +config DT_HAS_SILABS_SERIES2_HFRCODPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_HFRCODPLL)) + +DT_COMPAT_SILABS_SERIES2_HFRCOEM23 := silabs,series2-hfrcoem23 + +config DT_HAS_SILABS_SERIES2_HFRCOEM23_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_HFRCOEM23)) + +DT_COMPAT_SILABS_SERIES2_LETIMER := silabs,series2-letimer + +config DT_HAS_SILABS_SERIES2_LETIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LETIMER)) + +DT_COMPAT_SILABS_SERIES2_LFRCO := silabs,series2-lfrco + +config DT_HAS_SILABS_SERIES2_LFRCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LFRCO)) + +DT_COMPAT_SILABS_SERIES2_LFXO := silabs,series2-lfxo + +config DT_HAS_SILABS_SERIES2_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LFXO)) + +DT_COMPAT_SILABS_SERIES2_RADIO := silabs,series2-radio + +config DT_HAS_SILABS_SERIES2_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_RADIO)) + +DT_COMPAT_SILABS_SERIES2_TIMER := silabs,series2-timer + +config DT_HAS_SILABS_SERIES2_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_TIMER)) + +DT_COMPAT_SILABS_SI32_AES := silabs,si32-aes + +config DT_HAS_SILABS_SI32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_AES)) + +DT_COMPAT_SILABS_SI32_AHB := silabs,si32-ahb + +config DT_HAS_SILABS_SI32_AHB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_AHB)) + +DT_COMPAT_SILABS_SI32_APB := silabs,si32-apb + +config DT_HAS_SILABS_SI32_APB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_APB)) + +DT_COMPAT_SILABS_SI32_DMA := silabs,si32-dma + +config DT_HAS_SILABS_SI32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_DMA)) + +DT_COMPAT_SILABS_SI32_FLASH_CONTROLLER := silabs,si32-flash-controller + +config DT_HAS_SILABS_SI32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SI32_GPIO := silabs,si32-gpio + +config DT_HAS_SILABS_SI32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_GPIO)) + +DT_COMPAT_SILABS_SI32_PINCTRL := silabs,si32-pinctrl + +config DT_HAS_SILABS_SI32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_PINCTRL)) + +DT_COMPAT_SILABS_SI32_PLL := silabs,si32-pll + +config DT_HAS_SILABS_SI32_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_PLL)) + +DT_COMPAT_SILABS_SI32_USART := silabs,si32-usart + +config DT_HAS_SILABS_SI32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_USART)) + +DT_COMPAT_SILABS_SI7006 := silabs,si7006 + +config DT_HAS_SILABS_SI7006_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7006)) + +DT_COMPAT_SILABS_SI7055 := silabs,si7055 + +config DT_HAS_SILABS_SI7055_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7055)) + +DT_COMPAT_SILABS_SI7060 := silabs,si7060 + +config DT_HAS_SILABS_SI7060_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7060)) + +DT_COMPAT_SILABS_SI7210 := silabs,si7210 + +config DT_HAS_SILABS_SI7210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7210)) + +DT_COMPAT_SILABS_SIWX91X_ADC := silabs,siwx91x-adc + +config DT_HAS_SILABS_SIWX91X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_ADC)) + +DT_COMPAT_SILABS_SIWX91X_BT_HCI := silabs,siwx91x-bt-hci + +config DT_HAS_SILABS_SIWX91X_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_BT_HCI)) + +DT_COMPAT_SILABS_SIWX91X_CLOCK := silabs,siwx91x-clock + +config DT_HAS_SILABS_SIWX91X_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_CLOCK)) + +DT_COMPAT_SILABS_SIWX91X_DMA := silabs,siwx91x-dma + +config DT_HAS_SILABS_SIWX91X_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_DMA)) + +DT_COMPAT_SILABS_SIWX91X_FLASH_CONTROLLER := silabs,siwx91x-flash-controller + +config DT_HAS_SILABS_SIWX91X_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SIWX91X_GPIO := silabs,siwx91x-gpio + +config DT_HAS_SILABS_SIWX91X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_GPIO)) + +DT_COMPAT_SILABS_SIWX91X_GPIO_PORT := silabs,siwx91x-gpio-port + +config DT_HAS_SILABS_SIWX91X_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_GPIO_PORT)) + +DT_COMPAT_SILABS_SIWX91X_GPIO_UULP := silabs,siwx91x-gpio-uulp + +config DT_HAS_SILABS_SIWX91X_GPIO_UULP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_GPIO_UULP)) + +DT_COMPAT_SILABS_SIWX91X_I2S := silabs,siwx91x-i2s + +config DT_HAS_SILABS_SIWX91X_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_I2S)) + +DT_COMPAT_SILABS_SIWX91X_NWP := silabs,siwx91x-nwp + +config DT_HAS_SILABS_SIWX91X_NWP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_NWP)) + +DT_COMPAT_SILABS_SIWX91X_PINCTRL := silabs,siwx91x-pinctrl + +config DT_HAS_SILABS_SIWX91X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_PINCTRL)) + +DT_COMPAT_SILABS_SIWX91X_POWER_DOMAIN := silabs,siwx91x-power-domain + +config DT_HAS_SILABS_SIWX91X_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_POWER_DOMAIN)) + +DT_COMPAT_SILABS_SIWX91X_PWM := silabs,siwx91x-pwm + +config DT_HAS_SILABS_SIWX91X_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_PWM)) + +DT_COMPAT_SILABS_SIWX91X_QSPI_MEMORY := silabs,siwx91x-qspi-memory + +config DT_HAS_SILABS_SIWX91X_QSPI_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_QSPI_MEMORY)) + +DT_COMPAT_SILABS_SIWX91X_RNG := silabs,siwx91x-rng + +config DT_HAS_SILABS_SIWX91X_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_RNG)) + +DT_COMPAT_SILABS_SIWX91X_RTC := silabs,siwx91x-rtc + +config DT_HAS_SILABS_SIWX91X_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_RTC)) + +DT_COMPAT_SILABS_SIWX91X_WDT := silabs,siwx91x-wdt + +config DT_HAS_SILABS_SIWX91X_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_WDT)) + +DT_COMPAT_SILABS_SIWX91X_WIFI := silabs,siwx91x-wifi + +config DT_HAS_SILABS_SIWX91X_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_WIFI)) + +DT_COMPAT_SILABS_SYSRTC := silabs,sysrtc + +config DT_HAS_SILABS_SYSRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SYSRTC)) + +DT_COMPAT_SILABS_TIMER_PWM := silabs,timer-pwm + +config DT_HAS_SILABS_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_TIMER_PWM)) + +DT_COMPAT_SILABS_USART_SPI := silabs,usart-spi + +config DT_HAS_SILABS_USART_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_USART_SPI)) + +DT_COMPAT_SILABS_USART_UART := silabs,usart-uart + +config DT_HAS_SILABS_USART_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_USART_UART)) + +DT_COMPAT_SILABS_VDAC := silabs,vdac + +config DT_HAS_SILABS_VDAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_VDAC)) + +DT_COMPAT_SILERGY_SY24561 := silergy,sy24561 + +config DT_HAS_SILERGY_SY24561_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILERGY_SY24561)) + +DT_COMPAT_SIMCOM_A76XX := simcom,a76xx + +config DT_HAS_SIMCOM_A76XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIMCOM_A76XX)) + +DT_COMPAT_SIMCOM_SIM7080 := simcom,sim7080 + +config DT_HAS_SIMCOM_SIM7080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIMCOM_SIM7080)) + +DT_COMPAT_SINOWEALTH_SH1106 := sinowealth,sh1106 + +config DT_HAS_SINOWEALTH_SH1106_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SINOWEALTH_SH1106)) + +DT_COMPAT_SINOWEALTH_SH1122 := sinowealth,sh1122 + +config DT_HAS_SINOWEALTH_SH1122_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SINOWEALTH_SH1122)) + +DT_COMPAT_SITRONIX_CF1133 := sitronix,cf1133 + +config DT_HAS_SITRONIX_CF1133_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_CF1133)) + +DT_COMPAT_SITRONIX_ST7305 := sitronix,st7305 + +config DT_HAS_SITRONIX_ST7305_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7305)) + +DT_COMPAT_SITRONIX_ST7306 := sitronix,st7306 + +config DT_HAS_SITRONIX_ST7306_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7306)) + +DT_COMPAT_SITRONIX_ST75256 := sitronix,st75256 + +config DT_HAS_SITRONIX_ST75256_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST75256)) + +DT_COMPAT_SITRONIX_ST7567 := sitronix,st7567 + +config DT_HAS_SITRONIX_ST7567_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7567)) + +DT_COMPAT_SITRONIX_ST7701 := sitronix,st7701 + +config DT_HAS_SITRONIX_ST7701_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7701)) + +DT_COMPAT_SITRONIX_ST7735R := sitronix,st7735r + +config DT_HAS_SITRONIX_ST7735R_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7735R)) + +DT_COMPAT_SITRONIX_ST7789V := sitronix,st7789v + +config DT_HAS_SITRONIX_ST7789V_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7789V)) + +DT_COMPAT_SITRONIX_ST7796S := sitronix,st7796s + +config DT_HAS_SITRONIX_ST7796S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7796S)) + +DT_COMPAT_SKYWORKS_SKY13317 := skyworks,sky13317 + +config DT_HAS_SKYWORKS_SKY13317_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13317)) + +DT_COMPAT_SKYWORKS_SKY13351 := skyworks,sky13351 + +config DT_HAS_SKYWORKS_SKY13351_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13351)) + +DT_COMPAT_SMSC_LAN91C111 := smsc,lan91c111 + +config DT_HAS_SMSC_LAN91C111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN91C111)) + +DT_COMPAT_SMSC_LAN91C111_MDIO := smsc,lan91c111-mdio + +config DT_HAS_SMSC_LAN91C111_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN91C111_MDIO)) + +DT_COMPAT_SMSC_LAN9220 := smsc,lan9220 + +config DT_HAS_SMSC_LAN9220_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN9220)) + +DT_COMPAT_SNPS_ARC_IOT_SYSCONF := snps,arc-iot-sysconf + +config DT_HAS_SNPS_ARC_IOT_SYSCONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARC_IOT_SYSCONF)) + +DT_COMPAT_SNPS_ARC_TIMER := snps,arc-timer + +config DT_HAS_SNPS_ARC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARC_TIMER)) + +DT_COMPAT_SNPS_ARCEM := snps,arcem + +config DT_HAS_SNPS_ARCEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCEM)) + +DT_COMPAT_SNPS_ARCHS_ICI := snps,archs-ici + +config DT_HAS_SNPS_ARCHS_ICI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCHS_ICI)) + +DT_COMPAT_SNPS_ARCHS_IDU_INTC := snps,archs-idu-intc + +config DT_HAS_SNPS_ARCHS_IDU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCHS_IDU_INTC)) + +DT_COMPAT_SNPS_ARCV2_INTC := snps,arcv2-intc + +config DT_HAS_SNPS_ARCV2_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCV2_INTC)) + +DT_COMPAT_SNPS_AV5RHX := snps,av5rhx + +config DT_HAS_SNPS_AV5RHX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_AV5RHX)) + +DT_COMPAT_SNPS_AV5RMX := snps,av5rmx + +config DT_HAS_SNPS_AV5RMX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_AV5RMX)) + +DT_COMPAT_SNPS_CREG_GPIO := snps,creg-gpio + +config DT_HAS_SNPS_CREG_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_CREG_GPIO)) + +DT_COMPAT_SNPS_DESIGNWARE_DMA := snps,designware-dma + +config DT_HAS_SNPS_DESIGNWARE_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_DMA)) + +DT_COMPAT_SNPS_DESIGNWARE_DMA_AXI := snps,designware-dma-axi + +config DT_HAS_SNPS_DESIGNWARE_DMA_AXI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_DMA_AXI)) + +DT_COMPAT_SNPS_DESIGNWARE_ETHERNET := snps,designware-ethernet + +config DT_HAS_SNPS_DESIGNWARE_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_ETHERNET)) + +DT_COMPAT_SNPS_DESIGNWARE_GPIO := snps,designware-gpio + +config DT_HAS_SNPS_DESIGNWARE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_GPIO)) + +DT_COMPAT_SNPS_DESIGNWARE_I2C := snps,designware-i2c + +config DT_HAS_SNPS_DESIGNWARE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_I2C)) + +DT_COMPAT_SNPS_DESIGNWARE_I3C := snps,designware-i3c + +config DT_HAS_SNPS_DESIGNWARE_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_I3C)) + +DT_COMPAT_SNPS_DESIGNWARE_INTC := snps,designware-intc + +config DT_HAS_SNPS_DESIGNWARE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_INTC)) + +DT_COMPAT_SNPS_DESIGNWARE_SPI := snps,designware-spi + +config DT_HAS_SNPS_DESIGNWARE_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_SPI)) + +DT_COMPAT_SNPS_DESIGNWARE_SSI := snps,designware-ssi + +config DT_HAS_SNPS_DESIGNWARE_SSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_SSI)) + +DT_COMPAT_SNPS_DESIGNWARE_USB := snps,designware-usb + +config DT_HAS_SNPS_DESIGNWARE_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_USB)) + +DT_COMPAT_SNPS_DESIGNWARE_WATCHDOG := snps,designware-watchdog + +config DT_HAS_SNPS_DESIGNWARE_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_WATCHDOG)) + +DT_COMPAT_SNPS_DW_TIMERS := snps,dw-timers + +config DT_HAS_SNPS_DW_TIMERS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DW_TIMERS)) + +DT_COMPAT_SNPS_DWC2 := snps,dwc2 + +config DT_HAS_SNPS_DWC2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWC2)) + +DT_COMPAT_SNPS_DWCXGMAC := snps,dwcxgmac + +config DT_HAS_SNPS_DWCXGMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWCXGMAC)) + +DT_COMPAT_SNPS_DWCXGMAC_MDIO := snps,dwcxgmac-mdio + +config DT_HAS_SNPS_DWCXGMAC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWCXGMAC_MDIO)) + +DT_COMPAT_SNPS_EMSDP_PINCTRL := snps,emsdp-pinctrl + +config DT_HAS_SNPS_EMSDP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_EMSDP_PINCTRL)) + +DT_COMPAT_SNPS_ETHERNET_CYCLONEV := snps,ethernet-cyclonev + +config DT_HAS_SNPS_ETHERNET_CYCLONEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ETHERNET_CYCLONEV)) + +DT_COMPAT_SNPS_HOSTLINK_UART := snps,hostlink-uart + +config DT_HAS_SNPS_HOSTLINK_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_HOSTLINK_UART)) + +DT_COMPAT_SNPS_NSIM_UART := snps,nsim-uart + +config DT_HAS_SNPS_NSIM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_NSIM_UART)) + +DT_COMPAT_SOC_NV_FLASH := soc-nv-flash + +config DT_HAS_SOC_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOC_NV_FLASH)) + +DT_COMPAT_SOLOMON_SSD1306FB := solomon,ssd1306fb + +config DT_HAS_SOLOMON_SSD1306FB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1306FB)) + +DT_COMPAT_SOLOMON_SSD1309FB := solomon,ssd1309fb + +config DT_HAS_SOLOMON_SSD1309FB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1309FB)) + +DT_COMPAT_SOLOMON_SSD1320 := solomon,ssd1320 + +config DT_HAS_SOLOMON_SSD1320_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1320)) + +DT_COMPAT_SOLOMON_SSD1322 := solomon,ssd1322 + +config DT_HAS_SOLOMON_SSD1322_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1322)) + +DT_COMPAT_SOLOMON_SSD1327FB := solomon,ssd1327fb + +config DT_HAS_SOLOMON_SSD1327FB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1327FB)) + +DT_COMPAT_SOLOMON_SSD1331 := solomon,ssd1331 + +config DT_HAS_SOLOMON_SSD1331_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1331)) + +DT_COMPAT_SOLOMON_SSD1351 := solomon,ssd1351 + +config DT_HAS_SOLOMON_SSD1351_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1351)) + +DT_COMPAT_SOLOMON_SSD1357 := solomon,ssd1357 + +config DT_HAS_SOLOMON_SSD1357_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1357)) + +DT_COMPAT_SOLOMON_SSD1363 := solomon,ssd1363 + +config DT_HAS_SOLOMON_SSD1363_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1363)) + +DT_COMPAT_SOLOMON_SSD1608 := solomon,ssd1608 + +config DT_HAS_SOLOMON_SSD1608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1608)) + +DT_COMPAT_SOLOMON_SSD1673 := solomon,ssd1673 + +config DT_HAS_SOLOMON_SSD1673_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1673)) + +DT_COMPAT_SOLOMON_SSD1675A := solomon,ssd1675a + +config DT_HAS_SOLOMON_SSD1675A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1675A)) + +DT_COMPAT_SOLOMON_SSD1680 := solomon,ssd1680 + +config DT_HAS_SOLOMON_SSD1680_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1680)) + +DT_COMPAT_SOLOMON_SSD1681 := solomon,ssd1681 + +config DT_HAS_SOLOMON_SSD1681_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1681)) + +DT_COMPAT_SONY_IMX335 := sony,imx335 + +config DT_HAS_SONY_IMX335_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SONY_IMX335)) + +DT_COMPAT_SPARKFUN_MICROMOD_GPIO := sparkfun,micromod-gpio + +config DT_HAS_SPARKFUN_MICROMOD_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_MICROMOD_GPIO)) + +DT_COMPAT_SPARKFUN_PRO_MICRO_GPIO := sparkfun,pro-micro-gpio + +config DT_HAS_SPARKFUN_PRO_MICRO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_PRO_MICRO_GPIO)) + +DT_COMPAT_SPARKFUN_SERLCD := sparkfun,serlcd + +config DT_HAS_SPARKFUN_SERLCD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_SERLCD)) + +DT_COMPAT_SPI_HDLC_RCP_IF := spi,hdlc-rcp-if + +config DT_HAS_SPI_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPI_HDLC_RCP_IF)) + +DT_COMPAT_SQN_GM02S := sqn,gm02s + +config DT_HAS_SQN_GM02S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SQN_GM02S)) + +DT_COMPAT_SQN_HWSPINLOCK := sqn,hwspinlock + +config DT_HAS_SQN_HWSPINLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SQN_HWSPINLOCK)) + +DT_COMPAT_ST_DCMI_CAMERA_FPU_330ZH := st,dcmi-camera-fpu-330zh + +config DT_HAS_ST_DCMI_CAMERA_FPU_330ZH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_DCMI_CAMERA_FPU_330ZH)) + +DT_COMPAT_ST_DSI_LCD_QSH_030 := st,dsi-lcd-qsh-030 + +config DT_HAS_ST_DSI_LCD_QSH_030_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_DSI_LCD_QSH_030)) + +DT_COMPAT_ST_HCI_SPI_V1 := st,hci-spi-v1 + +config DT_HAS_ST_HCI_SPI_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_SPI_V1)) + +DT_COMPAT_ST_HCI_SPI_V2 := st,hci-spi-v2 + +config DT_HAS_ST_HCI_SPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_SPI_V2)) + +DT_COMPAT_ST_HCI_STM32WB0 := st,hci-stm32wb0 + +config DT_HAS_ST_HCI_STM32WB0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_STM32WB0)) + +DT_COMPAT_ST_HCI_STM32WBA := st,hci-stm32wba + +config DT_HAS_ST_HCI_STM32WBA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_STM32WBA)) + +DT_COMPAT_ST_HTS221 := st,hts221 + +config DT_HAS_ST_HTS221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HTS221)) + +DT_COMPAT_ST_I3G4250D := st,i3g4250d + +config DT_HAS_ST_I3G4250D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_I3G4250D)) + +DT_COMPAT_ST_IIS2DH := st,iis2dh + +config DT_HAS_ST_IIS2DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2DH)) + +DT_COMPAT_ST_IIS2DLPC := st,iis2dlpc + +config DT_HAS_ST_IIS2DLPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2DLPC)) + +DT_COMPAT_ST_IIS2ICLX := st,iis2iclx + +config DT_HAS_ST_IIS2ICLX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2ICLX)) + +DT_COMPAT_ST_IIS2MDC := st,iis2mdc + +config DT_HAS_ST_IIS2MDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2MDC)) + +DT_COMPAT_ST_IIS328DQ := st,iis328dq + +config DT_HAS_ST_IIS328DQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS328DQ)) + +DT_COMPAT_ST_IIS3DHHC := st,iis3dhhc + +config DT_HAS_ST_IIS3DHHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS3DHHC)) + +DT_COMPAT_ST_IIS3DWB := st,iis3dwb + +config DT_HAS_ST_IIS3DWB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS3DWB)) + +DT_COMPAT_ST_ILPS22QS := st,ilps22qs + +config DT_HAS_ST_ILPS22QS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ILPS22QS)) + +DT_COMPAT_ST_ISM330DHCX := st,ism330dhcx + +config DT_HAS_ST_ISM330DHCX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ISM330DHCX)) + +DT_COMPAT_ST_LIS2DE12 := st,lis2de12 + +config DT_HAS_ST_LIS2DE12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DE12)) + +DT_COMPAT_ST_LIS2DH := st,lis2dh + +config DT_HAS_ST_LIS2DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DH)) + +DT_COMPAT_ST_LIS2DH12 := st,lis2dh12 + +config DT_HAS_ST_LIS2DH12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DH12)) + +DT_COMPAT_ST_LIS2DS12 := st,lis2ds12 + +config DT_HAS_ST_LIS2DS12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DS12)) + +DT_COMPAT_ST_LIS2DU12 := st,lis2du12 + +config DT_HAS_ST_LIS2DU12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DU12)) + +DT_COMPAT_ST_LIS2DUX12 := st,lis2dux12 + +config DT_HAS_ST_LIS2DUX12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DUX12)) + +DT_COMPAT_ST_LIS2DUXS12 := st,lis2duxs12 + +config DT_HAS_ST_LIS2DUXS12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DUXS12)) + +DT_COMPAT_ST_LIS2DW12 := st,lis2dw12 + +config DT_HAS_ST_LIS2DW12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DW12)) + +DT_COMPAT_ST_LIS2MDL := st,lis2mdl + +config DT_HAS_ST_LIS2MDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2MDL)) + +DT_COMPAT_ST_LIS3DH := st,lis3dh + +config DT_HAS_ST_LIS3DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS3DH)) + +DT_COMPAT_ST_LIS3MDL_MAGN := st,lis3mdl-magn + +config DT_HAS_ST_LIS3MDL_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS3MDL_MAGN)) + +DT_COMPAT_ST_LPS22DF := st,lps22df + +config DT_HAS_ST_LPS22DF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22DF)) + +DT_COMPAT_ST_LPS22HB_PRESS := st,lps22hb-press + +config DT_HAS_ST_LPS22HB_PRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22HB_PRESS)) + +DT_COMPAT_ST_LPS22HH := st,lps22hh + +config DT_HAS_ST_LPS22HH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22HH)) + +DT_COMPAT_ST_LPS25HB_PRESS := st,lps25hb-press + +config DT_HAS_ST_LPS25HB_PRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS25HB_PRESS)) + +DT_COMPAT_ST_LPS28DFW := st,lps28dfw + +config DT_HAS_ST_LPS28DFW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS28DFW)) + +DT_COMPAT_ST_LSM303AGR_ACCEL := st,lsm303agr-accel + +config DT_HAS_ST_LSM303AGR_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303AGR_ACCEL)) + +DT_COMPAT_ST_LSM303DLHC_ACCEL := st,lsm303dlhc-accel + +config DT_HAS_ST_LSM303DLHC_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303DLHC_ACCEL)) + +DT_COMPAT_ST_LSM303DLHC_MAGN := st,lsm303dlhc-magn + +config DT_HAS_ST_LSM303DLHC_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303DLHC_MAGN)) + +DT_COMPAT_ST_LSM6DS0 := st,lsm6ds0 + +config DT_HAS_ST_LSM6DS0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DS0)) + +DT_COMPAT_ST_LSM6DSL := st,lsm6dsl + +config DT_HAS_ST_LSM6DSL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSL)) + +DT_COMPAT_ST_LSM6DSO := st,lsm6dso + +config DT_HAS_ST_LSM6DSO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO)) + +DT_COMPAT_ST_LSM6DSO16IS := st,lsm6dso16is + +config DT_HAS_ST_LSM6DSO16IS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO16IS)) + +DT_COMPAT_ST_LSM6DSO32 := st,lsm6dso32 + +config DT_HAS_ST_LSM6DSO32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO32)) + +DT_COMPAT_ST_LSM6DSV16X := st,lsm6dsv16x + +config DT_HAS_ST_LSM6DSV16X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV16X)) + +DT_COMPAT_ST_LSM6DSV32X := st,lsm6dsv32x + +config DT_HAS_ST_LSM6DSV32X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV32X)) + +DT_COMPAT_ST_LSM9DS0_GYRO := st,lsm9ds0-gyro + +config DT_HAS_ST_LSM9DS0_GYRO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS0_GYRO)) + +DT_COMPAT_ST_LSM9DS0_MFD := st,lsm9ds0-mfd + +config DT_HAS_ST_LSM9DS0_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS0_MFD)) + +DT_COMPAT_ST_LSM9DS1 := st,lsm9ds1 + +config DT_HAS_ST_LSM9DS1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS1)) + +DT_COMPAT_ST_LSM9DS1_MAG := st,lsm9ds1_mag + +config DT_HAS_ST_LSM9DS1_MAG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS1_MAG)) + +DT_COMPAT_ST_MBOX_STM32_HSEM := st,mbox-stm32-hsem + +config DT_HAS_ST_MBOX_STM32_HSEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MBOX_STM32_HSEM)) + +DT_COMPAT_ST_MFXSTM32L152 := st,mfxstm32l152 + +config DT_HAS_ST_MFXSTM32L152_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MFXSTM32L152)) + +DT_COMPAT_ST_MIPID02 := st,mipid02 + +config DT_HAS_ST_MIPID02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MIPID02)) + +DT_COMPAT_ST_MPXXDTYY := st,mpxxdtyy + +config DT_HAS_ST_MPXXDTYY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MPXXDTYY)) + +DT_COMPAT_ST_STM32_ADC := st,stm32-adc + +config DT_HAS_ST_STM32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ADC)) + +DT_COMPAT_ST_STM32_AES := st,stm32-aes + +config DT_HAS_ST_STM32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_AES)) + +DT_COMPAT_ST_STM32_BACKUP_SRAM := st,stm32-backup-sram + +config DT_HAS_ST_STM32_BACKUP_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BACKUP_SRAM)) + +DT_COMPAT_ST_STM32_BBRAM := st,stm32-bbram + +config DT_HAS_ST_STM32_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BBRAM)) + +DT_COMPAT_ST_STM32_BDMA := st,stm32-bdma + +config DT_HAS_ST_STM32_BDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BDMA)) + +DT_COMPAT_ST_STM32_BXCAN := st,stm32-bxcan + +config DT_HAS_ST_STM32_BXCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BXCAN)) + +DT_COMPAT_ST_STM32_CCM := st,stm32-ccm + +config DT_HAS_ST_STM32_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CCM)) + +DT_COMPAT_ST_STM32_CLOCK_MCO := st,stm32-clock-mco + +config DT_HAS_ST_STM32_CLOCK_MCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CLOCK_MCO)) + +DT_COMPAT_ST_STM32_CLOCK_MUX := st,stm32-clock-mux + +config DT_HAS_ST_STM32_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CLOCK_MUX)) + +DT_COMPAT_ST_STM32_COMP := st,stm32-comp + +config DT_HAS_ST_STM32_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_COMP)) + +DT_COMPAT_ST_STM32_COUNTER := st,stm32-counter + +config DT_HAS_ST_STM32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_COUNTER)) + +DT_COMPAT_ST_STM32_CRYP := st,stm32-cryp + +config DT_HAS_ST_STM32_CRYP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CRYP)) + +DT_COMPAT_ST_STM32_DAC := st,stm32-dac + +config DT_HAS_ST_STM32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DAC)) + +DT_COMPAT_ST_STM32_DCMI := st,stm32-dcmi + +config DT_HAS_ST_STM32_DCMI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DCMI)) + +DT_COMPAT_ST_STM32_DCMIPP := st,stm32-dcmipp + +config DT_HAS_ST_STM32_DCMIPP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DCMIPP)) + +DT_COMPAT_ST_STM32_DIGI_TEMP := st,stm32-digi-temp + +config DT_HAS_ST_STM32_DIGI_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DIGI_TEMP)) + +DT_COMPAT_ST_STM32_DMA := st,stm32-dma + +config DT_HAS_ST_STM32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA)) + +DT_COMPAT_ST_STM32_DMA_V1 := st,stm32-dma-v1 + +config DT_HAS_ST_STM32_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V1)) + +DT_COMPAT_ST_STM32_DMA_V2 := st,stm32-dma-v2 + +config DT_HAS_ST_STM32_DMA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V2)) + +DT_COMPAT_ST_STM32_DMA_V2BIS := st,stm32-dma-v2bis + +config DT_HAS_ST_STM32_DMA_V2BIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V2BIS)) + +DT_COMPAT_ST_STM32_DMAMUX := st,stm32-dmamux + +config DT_HAS_ST_STM32_DMAMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMAMUX)) + +DT_COMPAT_ST_STM32_EEPROM := st,stm32-eeprom + +config DT_HAS_ST_STM32_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_EEPROM)) + +DT_COMPAT_ST_STM32_ETHERNET := st,stm32-ethernet + +config DT_HAS_ST_STM32_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ETHERNET)) + +DT_COMPAT_ST_STM32_ETHERNET_CONTROLLER := st,stm32-ethernet-controller + +config DT_HAS_ST_STM32_ETHERNET_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ETHERNET_CONTROLLER)) + +DT_COMPAT_ST_STM32_EXTI := st,stm32-exti + +config DT_HAS_ST_STM32_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_EXTI)) + +DT_COMPAT_ST_STM32_FDCAN := st,stm32-fdcan + +config DT_HAS_ST_STM32_FDCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FDCAN)) + +DT_COMPAT_ST_STM32_FLASH_CONTROLLER := st,stm32-flash-controller + +config DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32_FMC := st,stm32-fmc + +config DT_HAS_ST_STM32_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC)) + +DT_COMPAT_ST_STM32_FMC_MIPI_DBI := st,stm32-fmc-mipi-dbi + +config DT_HAS_ST_STM32_FMC_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_MIPI_DBI)) + +DT_COMPAT_ST_STM32_FMC_NOR_PSRAM := st,stm32-fmc-nor-psram + +config DT_HAS_ST_STM32_FMC_NOR_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_NOR_PSRAM)) + +DT_COMPAT_ST_STM32_FMC_SDRAM := st,stm32-fmc-sdram + +config DT_HAS_ST_STM32_FMC_SDRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_SDRAM)) + +DT_COMPAT_ST_STM32_GPIO := st,stm32-gpio + +config DT_HAS_ST_STM32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_GPIO)) + +DT_COMPAT_ST_STM32_HASH := st,stm32-hash + +config DT_HAS_ST_STM32_HASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HASH)) + +DT_COMPAT_ST_STM32_HSE_CLOCK := st,stm32-hse-clock + +config DT_HAS_ST_STM32_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSE_CLOCK)) + +DT_COMPAT_ST_STM32_HSEM_MAILBOX := st,stm32-hsem-mailbox + +config DT_HAS_ST_STM32_HSEM_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSEM_MAILBOX)) + +DT_COMPAT_ST_STM32_HSI48_CLOCK := st,stm32-hsi48-clock + +config DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSI48_CLOCK)) + +DT_COMPAT_ST_STM32_I2C_V1 := st,stm32-i2c-v1 + +config DT_HAS_ST_STM32_I2C_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2C_V1)) + +DT_COMPAT_ST_STM32_I2C_V2 := st,stm32-i2c-v2 + +config DT_HAS_ST_STM32_I2C_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2C_V2)) + +DT_COMPAT_ST_STM32_I2S := st,stm32-i2s + +config DT_HAS_ST_STM32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2S)) + +DT_COMPAT_ST_STM32_I3C := st,stm32-i3c + +config DT_HAS_ST_STM32_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I3C)) + +DT_COMPAT_ST_STM32_IPCC_MAILBOX := st,stm32-ipcc-mailbox + +config DT_HAS_ST_STM32_IPCC_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_IPCC_MAILBOX)) + +DT_COMPAT_ST_STM32_JPEG := st,stm32-jpeg + +config DT_HAS_ST_STM32_JPEG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_JPEG)) + +DT_COMPAT_ST_STM32_LPTIM := st,stm32-lptim + +config DT_HAS_ST_STM32_LPTIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LPTIM)) + +DT_COMPAT_ST_STM32_LPUART := st,stm32-lpuart + +config DT_HAS_ST_STM32_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LPUART)) + +DT_COMPAT_ST_STM32_LSE_CLOCK := st,stm32-lse-clock + +config DT_HAS_ST_STM32_LSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LSE_CLOCK)) + +DT_COMPAT_ST_STM32_LTDC := st,stm32-ltdc + +config DT_HAS_ST_STM32_LTDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LTDC)) + +DT_COMPAT_ST_STM32_MDIO := st,stm32-mdio + +config DT_HAS_ST_STM32_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MDIO)) + +DT_COMPAT_ST_STM32_MIPI_DSI := st,stm32-mipi-dsi + +config DT_HAS_ST_STM32_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MIPI_DSI)) + +DT_COMPAT_ST_STM32_MSI_CLOCK := st,stm32-msi-clock + +config DT_HAS_ST_STM32_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MSI_CLOCK)) + +DT_COMPAT_ST_STM32_NPU := st,stm32-npu + +config DT_HAS_ST_STM32_NPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NPU)) + +DT_COMPAT_ST_STM32_NV_FLASH := st,stm32-nv-flash + +config DT_HAS_ST_STM32_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NV_FLASH)) + +DT_COMPAT_ST_STM32_OSPI := st,stm32-ospi + +config DT_HAS_ST_STM32_OSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI)) + +DT_COMPAT_ST_STM32_OSPI_NOR := st,stm32-ospi-nor + +config DT_HAS_ST_STM32_OSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI_NOR)) + +DT_COMPAT_ST_STM32_OSPI_PSRAM := st,stm32-ospi-psram + +config DT_HAS_ST_STM32_OSPI_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI_PSRAM)) + +DT_COMPAT_ST_STM32_OTGFS := st,stm32-otgfs + +config DT_HAS_ST_STM32_OTGFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OTGFS)) + +DT_COMPAT_ST_STM32_OTGHS := st,stm32-otghs + +config DT_HAS_ST_STM32_OTGHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OTGHS)) + +DT_COMPAT_ST_STM32_PINCTRL := st,stm32-pinctrl + +config DT_HAS_ST_STM32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PINCTRL)) + +DT_COMPAT_ST_STM32_PWM := st,stm32-pwm + +config DT_HAS_ST_STM32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PWM)) + +DT_COMPAT_ST_STM32_PWR := st,stm32-pwr + +config DT_HAS_ST_STM32_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PWR)) + +DT_COMPAT_ST_STM32_QDEC := st,stm32-qdec + +config DT_HAS_ST_STM32_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QDEC)) + +DT_COMPAT_ST_STM32_QSPI := st,stm32-qspi + +config DT_HAS_ST_STM32_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI)) + +DT_COMPAT_ST_STM32_QSPI_NOR := st,stm32-qspi-nor + +config DT_HAS_ST_STM32_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI_NOR)) + +DT_COMPAT_ST_STM32_RCC := st,stm32-rcc + +config DT_HAS_ST_STM32_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RCC)) + +DT_COMPAT_ST_STM32_RCC_RCTL := st,stm32-rcc-rctl + +config DT_HAS_ST_STM32_RCC_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RCC_RCTL)) + +DT_COMPAT_ST_STM32_RNG := st,stm32-rng + +config DT_HAS_ST_STM32_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RNG)) + +DT_COMPAT_ST_STM32_RNG_NOIRQ := st,stm32-rng-noirq + +config DT_HAS_ST_STM32_RNG_NOIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RNG_NOIRQ)) + +DT_COMPAT_ST_STM32_RTC := st,stm32-rtc + +config DT_HAS_ST_STM32_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RTC)) + +DT_COMPAT_ST_STM32_SAI := st,stm32-sai + +config DT_HAS_ST_STM32_SAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SAI)) + +DT_COMPAT_ST_STM32_SDIO := st,stm32-sdio + +config DT_HAS_ST_STM32_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SDIO)) + +DT_COMPAT_ST_STM32_SDMMC := st,stm32-sdmmc + +config DT_HAS_ST_STM32_SDMMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SDMMC)) + +DT_COMPAT_ST_STM32_SMBUS := st,stm32-smbus + +config DT_HAS_ST_STM32_SMBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SMBUS)) + +DT_COMPAT_ST_STM32_SPI := st,stm32-spi + +config DT_HAS_ST_STM32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI)) + +DT_COMPAT_ST_STM32_SPI_FIFO := st,stm32-spi-fifo + +config DT_HAS_ST_STM32_SPI_FIFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_FIFO)) + +DT_COMPAT_ST_STM32_SPI_HOST_CMD := st,stm32-spi-host-cmd + +config DT_HAS_ST_STM32_SPI_HOST_CMD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_HOST_CMD)) + +DT_COMPAT_ST_STM32_SPI_SUBGHZ := st,stm32-spi-subghz + +config DT_HAS_ST_STM32_SPI_SUBGHZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_SUBGHZ)) + +DT_COMPAT_ST_STM32_TEMP := st,stm32-temp + +config DT_HAS_ST_STM32_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TEMP)) + +DT_COMPAT_ST_STM32_TEMP_CAL := st,stm32-temp-cal + +config DT_HAS_ST_STM32_TEMP_CAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TEMP_CAL)) + +DT_COMPAT_ST_STM32_TIMERS := st,stm32-timers + +config DT_HAS_ST_STM32_TIMERS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TIMERS)) + +DT_COMPAT_ST_STM32_TSC := st,stm32-tsc + +config DT_HAS_ST_STM32_TSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TSC)) + +DT_COMPAT_ST_STM32_UART := st,stm32-uart + +config DT_HAS_ST_STM32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_UART)) + +DT_COMPAT_ST_STM32_UCPD := st,stm32-ucpd + +config DT_HAS_ST_STM32_UCPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_UCPD)) + +DT_COMPAT_ST_STM32_USART := st,stm32-usart + +config DT_HAS_ST_STM32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USART)) + +DT_COMPAT_ST_STM32_USB := st,stm32-usb + +config DT_HAS_ST_STM32_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USB)) + +DT_COMPAT_ST_STM32_USBPHYC := st,stm32-usbphyc + +config DT_HAS_ST_STM32_USBPHYC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USBPHYC)) + +DT_COMPAT_ST_STM32_VBAT := st,stm32-vbat + +config DT_HAS_ST_STM32_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VBAT)) + +DT_COMPAT_ST_STM32_VENC := st,stm32-venc + +config DT_HAS_ST_STM32_VENC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VENC)) + +DT_COMPAT_ST_STM32_VREF := st,stm32-vref + +config DT_HAS_ST_STM32_VREF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VREF)) + +DT_COMPAT_ST_STM32_WATCHDOG := st,stm32-watchdog + +config DT_HAS_ST_STM32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_WATCHDOG)) + +DT_COMPAT_ST_STM32_WINDOW_WATCHDOG := st,stm32-window-watchdog + +config DT_HAS_ST_STM32_WINDOW_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_WINDOW_WATCHDOG)) + +DT_COMPAT_ST_STM32_XSPI := st,stm32-xspi + +config DT_HAS_ST_STM32_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI)) + +DT_COMPAT_ST_STM32_XSPI_NOR := st,stm32-xspi-nor + +config DT_HAS_ST_STM32_XSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI_NOR)) + +DT_COMPAT_ST_STM32_XSPI_PSRAM := st,stm32-xspi-psram + +config DT_HAS_ST_STM32_XSPI_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI_PSRAM)) + +DT_COMPAT_ST_STM32C0_HSI_CLOCK := st,stm32c0-hsi-clock + +config DT_HAS_ST_STM32C0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32C0_TEMP_CAL := st,stm32c0-temp-cal + +config DT_HAS_ST_STM32C0_TEMP_CAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C0_TEMP_CAL)) + +DT_COMPAT_ST_STM32F0_PLL_CLOCK := st,stm32f0-pll-clock + +config DT_HAS_ST_STM32F0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F0_RCC := st,stm32f0-rcc + +config DT_HAS_ST_STM32F0_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F0_RCC)) + +DT_COMPAT_ST_STM32F1_ADC := st,stm32f1-adc + +config DT_HAS_ST_STM32F1_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_ADC)) + +DT_COMPAT_ST_STM32F1_CLOCK_MCO := st,stm32f1-clock-mco + +config DT_HAS_ST_STM32F1_CLOCK_MCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_CLOCK_MCO)) + +DT_COMPAT_ST_STM32F1_FLASH_CONTROLLER := st,stm32f1-flash-controller + +config DT_HAS_ST_STM32F1_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F1_PINCTRL := st,stm32f1-pinctrl + +config DT_HAS_ST_STM32F1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_PINCTRL)) + +DT_COMPAT_ST_STM32F1_PLL_CLOCK := st,stm32f1-pll-clock + +config DT_HAS_ST_STM32F1_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F100_PLL_CLOCK := st,stm32f100-pll-clock + +config DT_HAS_ST_STM32F100_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F100_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F105_PLL_CLOCK := st,stm32f105-pll-clock + +config DT_HAS_ST_STM32F105_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F105_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F105_PLL2_CLOCK := st,stm32f105-pll2-clock + +config DT_HAS_ST_STM32F105_PLL2_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F105_PLL2_CLOCK)) + +DT_COMPAT_ST_STM32F2_FLASH_CONTROLLER := st,stm32f2-flash-controller + +config DT_HAS_ST_STM32F2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F2_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F2_PLL_CLOCK := st,stm32f2-pll-clock + +config DT_HAS_ST_STM32F2_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F2_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F4_ADC := st,stm32f4-adc + +config DT_HAS_ST_STM32F4_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_ADC)) + +DT_COMPAT_ST_STM32F4_FLASH_CONTROLLER := st,stm32f4-flash-controller + +config DT_HAS_ST_STM32F4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F4_FSOTG := st,stm32f4-fsotg + +config DT_HAS_ST_STM32F4_FSOTG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_FSOTG)) + +DT_COMPAT_ST_STM32F4_NV_FLASH := st,stm32f4-nv-flash + +config DT_HAS_ST_STM32F4_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_NV_FLASH)) + +DT_COMPAT_ST_STM32F4_PLL_CLOCK := st,stm32f4-pll-clock + +config DT_HAS_ST_STM32F4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F4_PLLI2S_CLOCK := st,stm32f4-plli2s-clock + +config DT_HAS_ST_STM32F4_PLLI2S_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_PLLI2S_CLOCK)) + +DT_COMPAT_ST_STM32F4_RCC := st,stm32f4-rcc + +config DT_HAS_ST_STM32F4_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_RCC)) + +DT_COMPAT_ST_STM32F411_PLLI2S_CLOCK := st,stm32f411-plli2s-clock + +config DT_HAS_ST_STM32F411_PLLI2S_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F411_PLLI2S_CLOCK)) + +DT_COMPAT_ST_STM32F7_FLASH_CONTROLLER := st,stm32f7-flash-controller + +config DT_HAS_ST_STM32F7_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F7_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F7_PLL_CLOCK := st,stm32f7-pll-clock + +config DT_HAS_ST_STM32F7_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F7_PLL_CLOCK)) + +DT_COMPAT_ST_STM32FX_PLLSAI_CLOCK := st,stm32fx-pllsai-clock + +config DT_HAS_ST_STM32FX_PLLSAI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32FX_PLLSAI_CLOCK)) + +DT_COMPAT_ST_STM32G0_EXTI := st,stm32g0-exti + +config DT_HAS_ST_STM32G0_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_EXTI)) + +DT_COMPAT_ST_STM32G0_FLASH_CONTROLLER := st,stm32g0-flash-controller + +config DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32G0_HSI_CLOCK := st,stm32g0-hsi-clock + +config DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32G0_PLL_CLOCK := st,stm32g0-pll-clock + +config DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32G4_COMP := st,stm32g4-comp + +config DT_HAS_ST_STM32G4_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_COMP)) + +DT_COMPAT_ST_STM32G4_FLASH_CONTROLLER := st,stm32g4-flash-controller + +config DT_HAS_ST_STM32G4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32G4_PLL_CLOCK := st,stm32g4-pll-clock + +config DT_HAS_ST_STM32G4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H5_RCC := st,stm32h5-rcc + +config DT_HAS_ST_STM32H5_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H5_RCC)) + +DT_COMPAT_ST_STM32H7_COMP := st,stm32h7-comp + +config DT_HAS_ST_STM32H7_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_COMP)) + +DT_COMPAT_ST_STM32H7_ETHERNET := st,stm32h7-ethernet + +config DT_HAS_ST_STM32H7_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_ETHERNET)) + +DT_COMPAT_ST_STM32H7_FDCAN := st,stm32h7-fdcan + +config DT_HAS_ST_STM32H7_FDCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FDCAN)) + +DT_COMPAT_ST_STM32H7_FLASH_CONTROLLER := st,stm32h7-flash-controller + +config DT_HAS_ST_STM32H7_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32H7_FMC := st,stm32h7-fmc + +config DT_HAS_ST_STM32H7_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FMC)) + +DT_COMPAT_ST_STM32H7_HSI_CLOCK := st,stm32h7-hsi-clock + +config DT_HAS_ST_STM32H7_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_HSI_CLOCK)) + +DT_COMPAT_ST_STM32H7_I2S := st,stm32h7-i2s + +config DT_HAS_ST_STM32H7_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_I2S)) + +DT_COMPAT_ST_STM32H7_PLL_CLOCK := st,stm32h7-pll-clock + +config DT_HAS_ST_STM32H7_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7_RCC := st,stm32h7-rcc + +config DT_HAS_ST_STM32H7_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_RCC)) + +DT_COMPAT_ST_STM32H7_SPI := st,stm32h7-spi + +config DT_HAS_ST_STM32H7_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_SPI)) + +DT_COMPAT_ST_STM32H7RS_EXTI := st,stm32h7rs-exti + +config DT_HAS_ST_STM32H7RS_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_EXTI)) + +DT_COMPAT_ST_STM32H7RS_PLL_CLOCK := st,stm32h7rs-pll-clock + +config DT_HAS_ST_STM32H7RS_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7RS_RCC := st,stm32h7rs-rcc + +config DT_HAS_ST_STM32H7RS_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_RCC)) + +DT_COMPAT_ST_STM32L0_HSI_CLOCK := st,stm32l0-hsi-clock + +config DT_HAS_ST_STM32L0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32L0_MSI_CLOCK := st,stm32l0-msi-clock + +config DT_HAS_ST_STM32L0_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_MSI_CLOCK)) + +DT_COMPAT_ST_STM32L0_NV_FLASH := st,stm32l0-nv-flash + +config DT_HAS_ST_STM32L0_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_NV_FLASH)) + +DT_COMPAT_ST_STM32L0_PLL_CLOCK := st,stm32l0-pll-clock + +config DT_HAS_ST_STM32L0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32L4_AES := st,stm32l4-aes + +config DT_HAS_ST_STM32L4_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_AES)) + +DT_COMPAT_ST_STM32L4_FLASH_CONTROLLER := st,stm32l4-flash-controller + +config DT_HAS_ST_STM32L4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32L4_PLL_CLOCK := st,stm32l4-pll-clock + +config DT_HAS_ST_STM32L4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32L4_PLLSAI_CLOCK := st,stm32l4-pllsai-clock + +config DT_HAS_ST_STM32L4_PLLSAI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_PLLSAI_CLOCK)) + +DT_COMPAT_ST_STM32L5_FLASH_CONTROLLER := st,stm32l5-flash-controller + +config DT_HAS_ST_STM32L5_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L5_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32MP1_RCC := st,stm32mp1-rcc + +config DT_HAS_ST_STM32MP1_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP1_RCC)) + +DT_COMPAT_ST_STM32MP13_CPU_CLOCK_MUX := st,stm32mp13-cpu-clock-mux + +config DT_HAS_ST_STM32MP13_CPU_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP13_CPU_CLOCK_MUX)) + +DT_COMPAT_ST_STM32MP13_PLL_CLOCK := st,stm32mp13-pll-clock + +config DT_HAS_ST_STM32MP13_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP13_PLL_CLOCK)) + +DT_COMPAT_ST_STM32MP2_GPIO := st,stm32mp2-gpio + +config DT_HAS_ST_STM32MP2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP2_GPIO)) + +DT_COMPAT_ST_STM32MP2_RCC := st,stm32mp2-rcc + +config DT_HAS_ST_STM32MP2_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP2_RCC)) + +DT_COMPAT_ST_STM32N6_ADC := st,stm32n6-adc + +config DT_HAS_ST_STM32N6_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_ADC)) + +DT_COMPAT_ST_STM32N6_CPU_CLOCK_MUX := st,stm32n6-cpu-clock-mux + +config DT_HAS_ST_STM32N6_CPU_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_CPU_CLOCK_MUX)) + +DT_COMPAT_ST_STM32N6_ETHERNET := st,stm32n6-ethernet + +config DT_HAS_ST_STM32N6_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_ETHERNET)) + +DT_COMPAT_ST_STM32N6_HSE_CLOCK := st,stm32n6-hse-clock + +config DT_HAS_ST_STM32N6_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_HSE_CLOCK)) + +DT_COMPAT_ST_STM32N6_IC_CLOCK_MUX := st,stm32n6-ic-clock-mux + +config DT_HAS_ST_STM32N6_IC_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_IC_CLOCK_MUX)) + +DT_COMPAT_ST_STM32N6_OTGHS := st,stm32n6-otghs + +config DT_HAS_ST_STM32N6_OTGHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_OTGHS)) + +DT_COMPAT_ST_STM32N6_PINCTRL := st,stm32n6-pinctrl + +config DT_HAS_ST_STM32N6_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_PINCTRL)) + +DT_COMPAT_ST_STM32N6_PLL_CLOCK := st,stm32n6-pll-clock + +config DT_HAS_ST_STM32N6_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_PLL_CLOCK)) + +DT_COMPAT_ST_STM32N6_RAMCFG := st,stm32n6-ramcfg + +config DT_HAS_ST_STM32N6_RAMCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_RAMCFG)) + +DT_COMPAT_ST_STM32N6_RCC := st,stm32n6-rcc + +config DT_HAS_ST_STM32N6_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_RCC)) + +DT_COMPAT_ST_STM32U0_PLL_CLOCK := st,stm32u0-pll-clock + +config DT_HAS_ST_STM32U0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32U3_FLASH_CONTROLLER := st,stm32u3-flash-controller + +config DT_HAS_ST_STM32U3_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U3_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32U3_MSI_CLOCK := st,stm32u3-msi-clock + +config DT_HAS_ST_STM32U3_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U3_MSI_CLOCK)) + +DT_COMPAT_ST_STM32U5_DMA := st,stm32u5-dma + +config DT_HAS_ST_STM32U5_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_DMA)) + +DT_COMPAT_ST_STM32U5_MIPI_DSI := st,stm32u5-mipi-dsi + +config DT_HAS_ST_STM32U5_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_MIPI_DSI)) + +DT_COMPAT_ST_STM32U5_MSI_CLOCK := st,stm32u5-msi-clock + +config DT_HAS_ST_STM32U5_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_MSI_CLOCK)) + +DT_COMPAT_ST_STM32U5_OTGHS_PHY := st,stm32u5-otghs-phy + +config DT_HAS_ST_STM32U5_OTGHS_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_OTGHS_PHY)) + +DT_COMPAT_ST_STM32U5_PLL_CLOCK := st,stm32u5-pll-clock + +config DT_HAS_ST_STM32U5_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_PLL_CLOCK)) + +DT_COMPAT_ST_STM32U5_RCC := st,stm32u5-rcc + +config DT_HAS_ST_STM32U5_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_RCC)) + +DT_COMPAT_ST_STM32WB_FLASH_CONTROLLER := st,stm32wb-flash-controller + +config DT_HAS_ST_STM32WB_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WB_PLL_CLOCK := st,stm32wb-pll-clock + +config DT_HAS_ST_STM32WB_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_PLL_CLOCK)) + +DT_COMPAT_ST_STM32WB_RCC := st,stm32wb-rcc + +config DT_HAS_ST_STM32WB_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_RCC)) + +DT_COMPAT_ST_STM32WB_RF := st,stm32wb-rf + +config DT_HAS_ST_STM32WB_RF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_RF)) + +DT_COMPAT_ST_STM32WB0_ADC := st,stm32wb0-adc + +config DT_HAS_ST_STM32WB0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_ADC)) + +DT_COMPAT_ST_STM32WB0_FLASH_CONTROLLER := st,stm32wb0-flash-controller + +config DT_HAS_ST_STM32WB0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WB0_GPIO_INTC := st,stm32wb0-gpio-intc + +config DT_HAS_ST_STM32WB0_GPIO_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_GPIO_INTC)) + +DT_COMPAT_ST_STM32WB0_LSI_CLOCK := st,stm32wb0-lsi-clock + +config DT_HAS_ST_STM32WB0_LSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_LSI_CLOCK)) + +DT_COMPAT_ST_STM32WB0_PWR := st,stm32wb0-pwr + +config DT_HAS_ST_STM32WB0_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_PWR)) + +DT_COMPAT_ST_STM32WB0_RADIO_TIMER := st,stm32wb0-radio-timer + +config DT_HAS_ST_STM32WB0_RADIO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_RADIO_TIMER)) + +DT_COMPAT_ST_STM32WB0_RCC := st,stm32wb0-rcc + +config DT_HAS_ST_STM32WB0_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_RCC)) + +DT_COMPAT_ST_STM32WBA_FLASH_CONTROLLER := st,stm32wba-flash-controller + +config DT_HAS_ST_STM32WBA_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WBA_HSE_CLOCK := st,stm32wba-hse-clock + +config DT_HAS_ST_STM32WBA_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_HSE_CLOCK)) + +DT_COMPAT_ST_STM32WBA_IEEE802154 := st,stm32wba-ieee802154 + +config DT_HAS_ST_STM32WBA_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_IEEE802154)) + +DT_COMPAT_ST_STM32WBA_PLL_CLOCK := st,stm32wba-pll-clock + +config DT_HAS_ST_STM32WBA_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_PLL_CLOCK)) + +DT_COMPAT_ST_STM32WBA_RCC := st,stm32wba-rcc + +config DT_HAS_ST_STM32WBA_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_RCC)) + +DT_COMPAT_ST_STM32WL_HSE_CLOCK := st,stm32wl-hse-clock + +config DT_HAS_ST_STM32WL_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_HSE_CLOCK)) + +DT_COMPAT_ST_STM32WL_RCC := st,stm32wl-rcc + +config DT_HAS_ST_STM32WL_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_RCC)) + +DT_COMPAT_ST_STM32WL_SUBGHZ_RADIO := st,stm32wl-subghz-radio + +config DT_HAS_ST_STM32WL_SUBGHZ_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_SUBGHZ_RADIO)) + +DT_COMPAT_ST_STMPE1600 := st,stmpe1600 + +config DT_HAS_ST_STMPE1600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STMPE1600)) + +DT_COMPAT_ST_STMPE811 := st,stmpe811 + +config DT_HAS_ST_STMPE811_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STMPE811)) + +DT_COMPAT_ST_STTS22H := st,stts22h + +config DT_HAS_ST_STTS22H_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STTS22H)) + +DT_COMPAT_ST_STTS751 := st,stts751 + +config DT_HAS_ST_STTS751_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STTS751)) + +DT_COMPAT_ST_VL53L0X := st,vl53l0x + +config DT_HAS_ST_VL53L0X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_VL53L0X)) + +DT_COMPAT_ST_VL53L1X := st,vl53l1x + +config DT_HAS_ST_VL53L1X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_VL53L1X)) + +DT_COMPAT_ST_MORPHO_HEADER := st-morpho-header + +config DT_HAS_ST_MORPHO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MORPHO_HEADER)) + +DT_COMPAT_STEMMA_QT_CONNECTOR := stemma-qt-connector + +config DT_HAS_STEMMA_QT_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_STEMMA_QT_CONNECTOR)) + +DT_COMPAT_SWERV_PIC := swerv,pic + +config DT_HAS_SWERV_PIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWERV_PIC)) + +DT_COMPAT_SWIR_HL7800 := swir,hl7800 + +config DT_HAS_SWIR_HL7800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7800)) + +DT_COMPAT_SWIR_HL7812 := swir,hl7812 + +config DT_HAS_SWIR_HL7812_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7812)) + +DT_COMPAT_SWIR_HL7812_GNSS := swir,hl7812-gnss + +config DT_HAS_SWIR_HL7812_GNSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7812_GNSS)) + +DT_COMPAT_SWIR_HL7812_OFFLOAD := swir,hl7812-offload + +config DT_HAS_SWIR_HL7812_OFFLOAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7812_OFFLOAD)) + +DT_COMPAT_SWIR_HL78XX := swir,hl78xx + +config DT_HAS_SWIR_HL78XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL78XX)) + +DT_COMPAT_SWIR_HL78XX_GNSS := swir,hl78xx-gnss + +config DT_HAS_SWIR_HL78XX_GNSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL78XX_GNSS)) + +DT_COMPAT_SWIR_HL78XX_OFFLOAD := swir,hl78xx-offload + +config DT_HAS_SWIR_HL78XX_OFFLOAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL78XX_OFFLOAD)) + +DT_COMPAT_SWJ_CONNECTOR := swj-connector + +config DT_HAS_SWJ_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWJ_CONNECTOR)) + +DT_COMPAT_SYSCON := syscon + +config DT_HAS_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SYSCON)) + +DT_COMPAT_TDK_NTCG163JF103FT1 := tdk,ntcg163jf103ft1 + +config DT_HAS_TDK_NTCG163JF103FT1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TDK_NTCG163JF103FT1)) + +DT_COMPAT_TELINK_B91 := telink,b91 + +config DT_HAS_TELINK_B91_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91)) + +DT_COMPAT_TELINK_B91_ADC := telink,b91-adc + +config DT_HAS_TELINK_B91_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_ADC)) + +DT_COMPAT_TELINK_B91_FLASH_CONTROLLER := telink,b91-flash-controller + +config DT_HAS_TELINK_B91_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_FLASH_CONTROLLER)) + +DT_COMPAT_TELINK_B91_GPIO := telink,b91-gpio + +config DT_HAS_TELINK_B91_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_GPIO)) + +DT_COMPAT_TELINK_B91_I2C := telink,b91-i2c + +config DT_HAS_TELINK_B91_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_I2C)) + +DT_COMPAT_TELINK_B91_PINCTRL := telink,b91-pinctrl + +config DT_HAS_TELINK_B91_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_PINCTRL)) + +DT_COMPAT_TELINK_B91_POWER := telink,b91-power + +config DT_HAS_TELINK_B91_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_POWER)) + +DT_COMPAT_TELINK_B91_PWM := telink,b91-pwm + +config DT_HAS_TELINK_B91_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_PWM)) + +DT_COMPAT_TELINK_B91_SPI := telink,b91-spi + +config DT_HAS_TELINK_B91_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_SPI)) + +DT_COMPAT_TELINK_B91_TRNG := telink,b91-trng + +config DT_HAS_TELINK_B91_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_TRNG)) + +DT_COMPAT_TELINK_B91_UART := telink,b91-uart + +config DT_HAS_TELINK_B91_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_UART)) + +DT_COMPAT_TELINK_B91_ZB := telink,b91-zb + +config DT_HAS_TELINK_B91_ZB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_ZB)) + +DT_COMPAT_TELIT_ME310G1 := telit,me310g1 + +config DT_HAS_TELIT_ME310G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELIT_ME310G1)) + +DT_COMPAT_TELIT_ME910G1 := telit,me910g1 + +config DT_HAS_TELIT_ME910G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELIT_ME910G1)) + +DT_COMPAT_TEST_GPIO_ENABLE_DISABLE_INTERRUPT := test-gpio-enable-disable-interrupt + +config DT_HAS_TEST_GPIO_ENABLE_DISABLE_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TEST_GPIO_ENABLE_DISABLE_INTERRUPT)) + +DT_COMPAT_TI_ADS1013 := ti,ads1013 + +config DT_HAS_TI_ADS1013_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1013)) + +DT_COMPAT_TI_ADS1014 := ti,ads1014 + +config DT_HAS_TI_ADS1014_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1014)) + +DT_COMPAT_TI_ADS1015 := ti,ads1015 + +config DT_HAS_TI_ADS1015_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1015)) + +DT_COMPAT_TI_ADS1112 := ti,ads1112 + +config DT_HAS_TI_ADS1112_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1112)) + +DT_COMPAT_TI_ADS1113 := ti,ads1113 + +config DT_HAS_TI_ADS1113_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1113)) + +DT_COMPAT_TI_ADS1114 := ti,ads1114 + +config DT_HAS_TI_ADS1114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1114)) + +DT_COMPAT_TI_ADS1115 := ti,ads1115 + +config DT_HAS_TI_ADS1115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1115)) + +DT_COMPAT_TI_ADS1119 := ti,ads1119 + +config DT_HAS_TI_ADS1119_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1119)) + +DT_COMPAT_TI_ADS114S06 := ti,ads114s06 + +config DT_HAS_TI_ADS114S06_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS114S06)) + +DT_COMPAT_TI_ADS114S08 := ti,ads114s08 + +config DT_HAS_TI_ADS114S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS114S08)) + +DT_COMPAT_TI_ADS124S06 := ti,ads124s06 + +config DT_HAS_TI_ADS124S06_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS124S06)) + +DT_COMPAT_TI_ADS124S08 := ti,ads124s08 + +config DT_HAS_TI_ADS124S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS124S08)) + +DT_COMPAT_TI_ADS131M02 := ti,ads131m02 + +config DT_HAS_TI_ADS131M02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS131M02)) + +DT_COMPAT_TI_ADS1X4S0X_GPIO := ti,ads1x4s0x-gpio + +config DT_HAS_TI_ADS1X4S0X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1X4S0X_GPIO)) + +DT_COMPAT_TI_ADS7052 := ti,ads7052 + +config DT_HAS_TI_ADS7052_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7052)) + +DT_COMPAT_TI_AM335X_ADC := ti,am335x-adc + +config DT_HAS_TI_AM335X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_AM335X_ADC)) + +DT_COMPAT_TI_AM654_TIMER := ti,am654-timer + +config DT_HAS_TI_AM654_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_AM654_TIMER)) + +DT_COMPAT_TI_BOOSTERPACK_HEADER := ti,boosterpack-header + +config DT_HAS_TI_BOOSTERPACK_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BOOSTERPACK_HEADER)) + +DT_COMPAT_TI_BQ24190 := ti,bq24190 + +config DT_HAS_TI_BQ24190_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ24190)) + +DT_COMPAT_TI_BQ25180 := ti,bq25180 + +config DT_HAS_TI_BQ25180_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25180)) + +DT_COMPAT_TI_BQ25713 := ti,bq25713 + +config DT_HAS_TI_BQ25713_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25713)) + +DT_COMPAT_TI_BQ274XX := ti,bq274xx + +config DT_HAS_TI_BQ274XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ274XX)) + +DT_COMPAT_TI_BQ27Z746 := ti,bq27z746 + +config DT_HAS_TI_BQ27Z746_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ27Z746)) + +DT_COMPAT_TI_BQ32002 := ti,bq32002 + +config DT_HAS_TI_BQ32002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ32002)) + +DT_COMPAT_TI_BQ40Z50 := ti,bq40z50 + +config DT_HAS_TI_BQ40Z50_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ40Z50)) + +DT_COMPAT_TI_CC1200 := ti,cc1200 + +config DT_HAS_TI_CC1200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC1200)) + +DT_COMPAT_TI_CC13XX_CC26XX_ADC := ti,cc13xx-cc26xx-adc + +config DT_HAS_TI_CC13XX_CC26XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_ADC)) + +DT_COMPAT_TI_CC13XX_CC26XX_FLASH_CONTROLLER := ti,cc13xx-cc26xx-flash-controller + +config DT_HAS_TI_CC13XX_CC26XX_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_FLASH_CONTROLLER)) + +DT_COMPAT_TI_CC13XX_CC26XX_GPIO := ti,cc13xx-cc26xx-gpio + +config DT_HAS_TI_CC13XX_CC26XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_GPIO)) + +DT_COMPAT_TI_CC13XX_CC26XX_I2C := ti,cc13xx-cc26xx-i2c + +config DT_HAS_TI_CC13XX_CC26XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_I2C)) + +DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154 := ti,cc13xx-cc26xx-ieee802154 + +config DT_HAS_TI_CC13XX_CC26XX_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154)) + +DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ := ti,cc13xx-cc26xx-ieee802154-subghz + +config DT_HAS_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ)) + +DT_COMPAT_TI_CC13XX_CC26XX_PINCTRL := ti,cc13xx-cc26xx-pinctrl + +config DT_HAS_TI_CC13XX_CC26XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_PINCTRL)) + +DT_COMPAT_TI_CC13XX_CC26XX_RADIO := ti,cc13xx-cc26xx-radio + +config DT_HAS_TI_CC13XX_CC26XX_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_RADIO)) + +DT_COMPAT_TI_CC13XX_CC26XX_RTC_TIMER := ti,cc13xx-cc26xx-rtc-timer + +config DT_HAS_TI_CC13XX_CC26XX_RTC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_RTC_TIMER)) + +DT_COMPAT_TI_CC13XX_CC26XX_SPI := ti,cc13xx-cc26xx-spi + +config DT_HAS_TI_CC13XX_CC26XX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_SPI)) + +DT_COMPAT_TI_CC13XX_CC26XX_TIMER := ti,cc13xx-cc26xx-timer + +config DT_HAS_TI_CC13XX_CC26XX_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TIMER)) + +DT_COMPAT_TI_CC13XX_CC26XX_TIMER_PWM := ti,cc13xx-cc26xx-timer-pwm + +config DT_HAS_TI_CC13XX_CC26XX_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TIMER_PWM)) + +DT_COMPAT_TI_CC13XX_CC26XX_TRNG := ti,cc13xx-cc26xx-trng + +config DT_HAS_TI_CC13XX_CC26XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TRNG)) + +DT_COMPAT_TI_CC13XX_CC26XX_UART := ti,cc13xx-cc26xx-uart + +config DT_HAS_TI_CC13XX_CC26XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_UART)) + +DT_COMPAT_TI_CC13XX_CC26XX_WATCHDOG := ti,cc13xx-cc26xx-watchdog + +config DT_HAS_TI_CC13XX_CC26XX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_WATCHDOG)) + +DT_COMPAT_TI_CC23X0_ADC := ti,cc23x0-adc + +config DT_HAS_TI_CC23X0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_ADC)) + +DT_COMPAT_TI_CC23X0_AES := ti,cc23x0-aes + +config DT_HAS_TI_CC23X0_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_AES)) + +DT_COMPAT_TI_CC23X0_CCFG_FLASH := ti,cc23x0-ccfg-flash + +config DT_HAS_TI_CC23X0_CCFG_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_CCFG_FLASH)) + +DT_COMPAT_TI_CC23X0_DMA := ti,cc23x0-dma + +config DT_HAS_TI_CC23X0_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_DMA)) + +DT_COMPAT_TI_CC23X0_FLASH_CONTROLLER := ti,cc23x0-flash-controller + +config DT_HAS_TI_CC23X0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_FLASH_CONTROLLER)) + +DT_COMPAT_TI_CC23X0_GPIO := ti,cc23x0-gpio + +config DT_HAS_TI_CC23X0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_GPIO)) + +DT_COMPAT_TI_CC23X0_I2C := ti,cc23x0-i2c + +config DT_HAS_TI_CC23X0_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_I2C)) + +DT_COMPAT_TI_CC23X0_LF_XOSC := ti,cc23x0-lf-xosc + +config DT_HAS_TI_CC23X0_LF_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_LF_XOSC)) + +DT_COMPAT_TI_CC23X0_LGPT := ti,cc23x0-lgpt + +config DT_HAS_TI_CC23X0_LGPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_LGPT)) + +DT_COMPAT_TI_CC23X0_LGPT_PWM := ti,cc23x0-lgpt-pwm + +config DT_HAS_TI_CC23X0_LGPT_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_LGPT_PWM)) + +DT_COMPAT_TI_CC23X0_PINCTRL := ti,cc23x0-pinctrl + +config DT_HAS_TI_CC23X0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_PINCTRL)) + +DT_COMPAT_TI_CC23X0_RTC := ti,cc23x0-rtc + +config DT_HAS_TI_CC23X0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_RTC)) + +DT_COMPAT_TI_CC23X0_SPI := ti,cc23x0-spi + +config DT_HAS_TI_CC23X0_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_SPI)) + +DT_COMPAT_TI_CC23X0_SYSTIM_TIMER := ti,cc23x0-systim-timer + +config DT_HAS_TI_CC23X0_SYSTIM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_SYSTIM_TIMER)) + +DT_COMPAT_TI_CC23X0_UART := ti,cc23x0-uart + +config DT_HAS_TI_CC23X0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_UART)) + +DT_COMPAT_TI_CC23X0_WDT := ti,cc23x0-wdt + +config DT_HAS_TI_CC23X0_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_WDT)) + +DT_COMPAT_TI_CC2520 := ti,cc2520 + +config DT_HAS_TI_CC2520_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC2520)) + +DT_COMPAT_TI_CC32XX_ADC := ti,cc32xx-adc + +config DT_HAS_TI_CC32XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_ADC)) + +DT_COMPAT_TI_CC32XX_GPIO := ti,cc32xx-gpio + +config DT_HAS_TI_CC32XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_GPIO)) + +DT_COMPAT_TI_CC32XX_I2C := ti,cc32xx-i2c + +config DT_HAS_TI_CC32XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_I2C)) + +DT_COMPAT_TI_CC32XX_PINCTRL := ti,cc32xx-pinctrl + +config DT_HAS_TI_CC32XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_PINCTRL)) + +DT_COMPAT_TI_CC32XX_UART := ti,cc32xx-uart + +config DT_HAS_TI_CC32XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_UART)) + +DT_COMPAT_TI_CC32XX_WATCHDOG := ti,cc32xx-watchdog + +config DT_HAS_TI_CC32XX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_WATCHDOG)) + +DT_COMPAT_TI_DAC161S997 := ti,dac161s997 + +config DT_HAS_TI_DAC161S997_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC161S997)) + +DT_COMPAT_TI_DAC43608 := ti,dac43608 + +config DT_HAS_TI_DAC43608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC43608)) + +DT_COMPAT_TI_DAC53608 := ti,dac53608 + +config DT_HAS_TI_DAC53608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC53608)) + +DT_COMPAT_TI_DAC60508 := ti,dac60508 + +config DT_HAS_TI_DAC60508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC60508)) + +DT_COMPAT_TI_DAC70508 := ti,dac70508 + +config DT_HAS_TI_DAC70508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC70508)) + +DT_COMPAT_TI_DAC80508 := ti,dac80508 + +config DT_HAS_TI_DAC80508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC80508)) + +DT_COMPAT_TI_DACX0501 := ti,dacx0501 + +config DT_HAS_TI_DACX0501_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DACX0501)) + +DT_COMPAT_TI_DAVINCI_GPIO := ti,davinci-gpio + +config DT_HAS_TI_DAVINCI_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAVINCI_GPIO)) + +DT_COMPAT_TI_DAVINCI_GPIO_NEXUS := ti,davinci-gpio-nexus + +config DT_HAS_TI_DAVINCI_GPIO_NEXUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAVINCI_GPIO_NEXUS)) + +DT_COMPAT_TI_DP83825 := ti,dp83825 + +config DT_HAS_TI_DP83825_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DP83825)) + +DT_COMPAT_TI_DP83867 := ti,dp83867 + +config DT_HAS_TI_DP83867_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DP83867)) + +DT_COMPAT_TI_DRV2605 := ti,drv2605 + +config DT_HAS_TI_DRV2605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DRV2605)) + +DT_COMPAT_TI_DRV84XX := ti,drv84xx + +config DT_HAS_TI_DRV84XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DRV84XX)) + +DT_COMPAT_TI_FDC2X1X := ti,fdc2x1x + +config DT_HAS_TI_FDC2X1X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_FDC2X1X)) + +DT_COMPAT_TI_HDC := ti,hdc + +config DT_HAS_TI_HDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC)) + +DT_COMPAT_TI_HDC2010 := ti,hdc2010 + +config DT_HAS_TI_HDC2010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2010)) + +DT_COMPAT_TI_HDC2021 := ti,hdc2021 + +config DT_HAS_TI_HDC2021_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2021)) + +DT_COMPAT_TI_HDC2022 := ti,hdc2022 + +config DT_HAS_TI_HDC2022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2022)) + +DT_COMPAT_TI_HDC2080 := ti,hdc2080 + +config DT_HAS_TI_HDC2080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2080)) + +DT_COMPAT_TI_HDC302X := ti,hdc302x + +config DT_HAS_TI_HDC302X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC302X)) + +DT_COMPAT_TI_INA219 := ti,ina219 + +config DT_HAS_TI_INA219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA219)) + +DT_COMPAT_TI_INA226 := ti,ina226 + +config DT_HAS_TI_INA226_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA226)) + +DT_COMPAT_TI_INA228 := ti,ina228 + +config DT_HAS_TI_INA228_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA228)) + +DT_COMPAT_TI_INA230 := ti,ina230 + +config DT_HAS_TI_INA230_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA230)) + +DT_COMPAT_TI_INA236 := ti,ina236 + +config DT_HAS_TI_INA236_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA236)) + +DT_COMPAT_TI_INA237 := ti,ina237 + +config DT_HAS_TI_INA237_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA237)) + +DT_COMPAT_TI_INA3221 := ti,ina3221 + +config DT_HAS_TI_INA3221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA3221)) + +DT_COMPAT_TI_INA7XX := ti,ina7xx + +config DT_HAS_TI_INA7XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA7XX)) + +DT_COMPAT_TI_J7_RTI_WDT := ti,j7-rti-wdt + +config DT_HAS_TI_J7_RTI_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_J7_RTI_WDT)) + +DT_COMPAT_TI_K2G_SCI := ti,k2g-sci + +config DT_HAS_TI_K2G_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_K2G_SCI)) + +DT_COMPAT_TI_K3_PINCTRL := ti,k3-pinctrl + +config DT_HAS_TI_K3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_K3_PINCTRL)) + +DT_COMPAT_TI_LMP90077 := ti,lmp90077 + +config DT_HAS_TI_LMP90077_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90077)) + +DT_COMPAT_TI_LMP90078 := ti,lmp90078 + +config DT_HAS_TI_LMP90078_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90078)) + +DT_COMPAT_TI_LMP90079 := ti,lmp90079 + +config DT_HAS_TI_LMP90079_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90079)) + +DT_COMPAT_TI_LMP90080 := ti,lmp90080 + +config DT_HAS_TI_LMP90080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90080)) + +DT_COMPAT_TI_LMP90097 := ti,lmp90097 + +config DT_HAS_TI_LMP90097_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90097)) + +DT_COMPAT_TI_LMP90098 := ti,lmp90098 + +config DT_HAS_TI_LMP90098_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90098)) + +DT_COMPAT_TI_LMP90099 := ti,lmp90099 + +config DT_HAS_TI_LMP90099_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90099)) + +DT_COMPAT_TI_LMP90100 := ti,lmp90100 + +config DT_HAS_TI_LMP90100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90100)) + +DT_COMPAT_TI_LMP90XXX_GPIO := ti,lmp90xxx-gpio + +config DT_HAS_TI_LMP90XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90XXX_GPIO)) + +DT_COMPAT_TI_LP3943 := ti,lp3943 + +config DT_HAS_TI_LP3943_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP3943)) + +DT_COMPAT_TI_LP5009 := ti,lp5009 + +config DT_HAS_TI_LP5009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5009)) + +DT_COMPAT_TI_LP5012 := ti,lp5012 + +config DT_HAS_TI_LP5012_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5012)) + +DT_COMPAT_TI_LP5018 := ti,lp5018 + +config DT_HAS_TI_LP5018_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5018)) + +DT_COMPAT_TI_LP5024 := ti,lp5024 + +config DT_HAS_TI_LP5024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5024)) + +DT_COMPAT_TI_LP5030 := ti,lp5030 + +config DT_HAS_TI_LP5030_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5030)) + +DT_COMPAT_TI_LP5036 := ti,lp5036 + +config DT_HAS_TI_LP5036_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5036)) + +DT_COMPAT_TI_LP5562 := ti,lp5562 + +config DT_HAS_TI_LP5562_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5562)) + +DT_COMPAT_TI_LP5569 := ti,lp5569 + +config DT_HAS_TI_LP5569_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5569)) + +DT_COMPAT_TI_MSP432P4XX_UART := ti,msp432p4xx-uart + +config DT_HAS_TI_MSP432P4XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSP432P4XX_UART)) + +DT_COMPAT_TI_MSPM0_CLK := ti,mspm0-clk + +config DT_HAS_TI_MSPM0_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_CLK)) + +DT_COMPAT_TI_MSPM0_GPIO := ti,mspm0-gpio + +config DT_HAS_TI_MSPM0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_GPIO)) + +DT_COMPAT_TI_MSPM0_OSC := ti,mspm0-osc + +config DT_HAS_TI_MSPM0_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_OSC)) + +DT_COMPAT_TI_MSPM0_PINCTRL := ti,mspm0-pinctrl + +config DT_HAS_TI_MSPM0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_PINCTRL)) + +DT_COMPAT_TI_MSPM0_PLL := ti,mspm0-pll + +config DT_HAS_TI_MSPM0_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_PLL)) + +DT_COMPAT_TI_MSPM0_RTC := ti,mspm0-rtc + +config DT_HAS_TI_MSPM0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_RTC)) + +DT_COMPAT_TI_MSPM0_TIMER := ti,mspm0-timer + +config DT_HAS_TI_MSPM0_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TIMER)) + +DT_COMPAT_TI_MSPM0_TIMER_COUNTER := ti,mspm0-timer-counter + +config DT_HAS_TI_MSPM0_TIMER_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TIMER_COUNTER)) + +DT_COMPAT_TI_MSPM0_TIMER_PWM := ti,mspm0-timer-pwm + +config DT_HAS_TI_MSPM0_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TIMER_PWM)) + +DT_COMPAT_TI_MSPM0_UART := ti,mspm0-uart + +config DT_HAS_TI_MSPM0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_UART)) + +DT_COMPAT_TI_OMAP_I2C := ti,omap-i2c + +config DT_HAS_TI_OMAP_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OMAP_I2C)) + +DT_COMPAT_TI_OMAP_MAILBOX := ti,omap-mailbox + +config DT_HAS_TI_OMAP_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OMAP_MAILBOX)) + +DT_COMPAT_TI_OMAP_MCSPI := ti,omap-mcspi + +config DT_HAS_TI_OMAP_MCSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OMAP_MCSPI)) + +DT_COMPAT_TI_OPT3001 := ti,opt3001 + +config DT_HAS_TI_OPT3001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OPT3001)) + +DT_COMPAT_TI_PCM1681 := ti,pcm1681 + +config DT_HAS_TI_PCM1681_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_PCM1681)) + +DT_COMPAT_TI_SCI_PM_DOMAIN := ti,sci-pm-domain + +config DT_HAS_TI_SCI_PM_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SCI_PM_DOMAIN)) + +DT_COMPAT_TI_SECURE_PROXY := ti,secure-proxy + +config DT_HAS_TI_SECURE_PROXY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SECURE_PROXY)) + +DT_COMPAT_TI_SN74HC595 := ti,sn74hc595 + +config DT_HAS_TI_SN74HC595_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SN74HC595)) + +DT_COMPAT_TI_STELLARIS_ETHERNET := ti,stellaris-ethernet + +config DT_HAS_TI_STELLARIS_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_ETHERNET)) + +DT_COMPAT_TI_STELLARIS_FLASH_CONTROLLER := ti,stellaris-flash-controller + +config DT_HAS_TI_STELLARIS_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_FLASH_CONTROLLER)) + +DT_COMPAT_TI_STELLARIS_GPIO := ti,stellaris-gpio + +config DT_HAS_TI_STELLARIS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_GPIO)) + +DT_COMPAT_TI_STELLARIS_UART := ti,stellaris-uart + +config DT_HAS_TI_STELLARIS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_UART)) + +DT_COMPAT_TI_TAS6422DAC := ti,tas6422dac + +config DT_HAS_TI_TAS6422DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TAS6422DAC)) + +DT_COMPAT_TI_TCA6424A := ti,tca6424a + +config DT_HAS_TI_TCA6424A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA6424A)) + +DT_COMPAT_TI_TCA9538 := ti,tca9538 + +config DT_HAS_TI_TCA9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9538)) + +DT_COMPAT_TI_TCA9544A := ti,tca9544a + +config DT_HAS_TI_TCA9544A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9544A)) + +DT_COMPAT_TI_TCA9546A := ti,tca9546a + +config DT_HAS_TI_TCA9546A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9546A)) + +DT_COMPAT_TI_TCA9548A := ti,tca9548a + +config DT_HAS_TI_TCA9548A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9548A)) + +DT_COMPAT_TI_TCAN4X5X := ti,tcan4x5x + +config DT_HAS_TI_TCAN4X5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCAN4X5X)) + +DT_COMPAT_TI_TLA2021 := ti,tla2021 + +config DT_HAS_TI_TLA2021_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2021)) + +DT_COMPAT_TI_TLA2022 := ti,tla2022 + +config DT_HAS_TI_TLA2022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2022)) + +DT_COMPAT_TI_TLA2024 := ti,tla2024 + +config DT_HAS_TI_TLA2024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2024)) + +DT_COMPAT_TI_TLC59108 := ti,tlc59108 + +config DT_HAS_TI_TLC59108_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC59108)) + +DT_COMPAT_TI_TLC5971 := ti,tlc5971 + +config DT_HAS_TI_TLC5971_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC5971)) + +DT_COMPAT_TI_TLC59731 := ti,tlc59731 + +config DT_HAS_TI_TLC59731_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC59731)) + +DT_COMPAT_TI_TLV320AIC3110 := ti,tlv320aic3110 + +config DT_HAS_TI_TLV320AIC3110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLV320AIC3110)) + +DT_COMPAT_TI_TLV320DAC := ti,tlv320dac + +config DT_HAS_TI_TLV320DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLV320DAC)) + +DT_COMPAT_TI_TMAG3001 := ti,tmag3001 + +config DT_HAS_TI_TMAG3001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG3001)) + +DT_COMPAT_TI_TMAG5170 := ti,tmag5170 + +config DT_HAS_TI_TMAG5170_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG5170)) + +DT_COMPAT_TI_TMAG5273 := ti,tmag5273 + +config DT_HAS_TI_TMAG5273_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG5273)) + +DT_COMPAT_TI_TMP007 := ti,tmp007 + +config DT_HAS_TI_TMP007_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP007)) + +DT_COMPAT_TI_TMP1075 := ti,tmp1075 + +config DT_HAS_TI_TMP1075_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP1075)) + +DT_COMPAT_TI_TMP108 := ti,tmp108 + +config DT_HAS_TI_TMP108_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP108)) + +DT_COMPAT_TI_TMP112 := ti,tmp112 + +config DT_HAS_TI_TMP112_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP112)) + +DT_COMPAT_TI_TMP114 := ti,tmp114 + +config DT_HAS_TI_TMP114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP114)) + +DT_COMPAT_TI_TMP11X := ti,tmp11x + +config DT_HAS_TI_TMP11X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP11X)) + +DT_COMPAT_TI_TMP11X_EEPROM := ti,tmp11x-eeprom + +config DT_HAS_TI_TMP11X_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP11X_EEPROM)) + +DT_COMPAT_TI_TMP435 := ti,tmp435 + +config DT_HAS_TI_TMP435_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP435)) + +DT_COMPAT_TI_TPS382X := ti,tps382x + +config DT_HAS_TI_TPS382X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TPS382X)) + +DT_COMPAT_TI_VIM := ti,vim + +config DT_HAS_TI_VIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_VIM)) + +DT_COMPAT_TITANMEC_TM1637 := titanmec,tm1637 + +config DT_HAS_TITANMEC_TM1637_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TITANMEC_TM1637)) + +DT_COMPAT_TSC_KEYS := tsc-keys + +config DT_HAS_TSC_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TSC_KEYS)) + +DT_COMPAT_U_BLOX_F9P := u-blox,f9p + +config DT_HAS_U_BLOX_F9P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_F9P)) + +DT_COMPAT_U_BLOX_LARA_R6 := u-blox,lara-r6 + +config DT_HAS_U_BLOX_LARA_R6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_LARA_R6)) + +DT_COMPAT_U_BLOX_M8 := u-blox,m8 + +config DT_HAS_U_BLOX_M8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_M8)) + +DT_COMPAT_U_BLOX_SARA_R4 := u-blox,sara-r4 + +config DT_HAS_U_BLOX_SARA_R4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_SARA_R4)) + +DT_COMPAT_U_BLOX_SARA_R5 := u-blox,sara-r5 + +config DT_HAS_U_BLOX_SARA_R5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_SARA_R5)) + +DT_COMPAT_UART_HDLC_RCP_IF := uart,hdlc-rcp-if + +config DT_HAS_UART_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_UART_HDLC_RCP_IF)) + +DT_COMPAT_ULTRACHIP_UC8151D := ultrachip,uc8151d + +config DT_HAS_ULTRACHIP_UC8151D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8151D)) + +DT_COMPAT_ULTRACHIP_UC8175 := ultrachip,uc8175 + +config DT_HAS_ULTRACHIP_UC8175_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8175)) + +DT_COMPAT_ULTRACHIP_UC8176 := ultrachip,uc8176 + +config DT_HAS_ULTRACHIP_UC8176_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8176)) + +DT_COMPAT_ULTRACHIP_UC8179 := ultrachip,uc8179 + +config DT_HAS_ULTRACHIP_UC8179_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8179)) + +DT_COMPAT_USB_AUDIO := usb-audio + +config DT_HAS_USB_AUDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO)) + +DT_COMPAT_USB_AUDIO_FEATURE_VOLUME := usb-audio-feature-volume + +config DT_HAS_USB_AUDIO_FEATURE_VOLUME_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_FEATURE_VOLUME)) + +DT_COMPAT_USB_AUDIO_HP := usb-audio-hp + +config DT_HAS_USB_AUDIO_HP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_HP)) + +DT_COMPAT_USB_AUDIO_HS := usb-audio-hs + +config DT_HAS_USB_AUDIO_HS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_HS)) + +DT_COMPAT_USB_AUDIO_MIC := usb-audio-mic + +config DT_HAS_USB_AUDIO_MIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_MIC)) + +DT_COMPAT_USB_C_CONNECTOR := usb-c-connector + +config DT_HAS_USB_C_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_C_CONNECTOR)) + +DT_COMPAT_USB_NOP_XCEIV := usb-nop-xceiv + +config DT_HAS_USB_NOP_XCEIV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_NOP_XCEIV)) + +DT_COMPAT_USB_ULPI_PHY := usb-ulpi-phy + +config DT_HAS_USB_ULPI_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_ULPI_PHY)) + +DT_COMPAT_VIRTIO_CONSOLE := virtio,console + +config DT_HAS_VIRTIO_CONSOLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_CONSOLE)) + +DT_COMPAT_VIRTIO_DEVICE4 := virtio,device4 + +config DT_HAS_VIRTIO_DEVICE4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_DEVICE4)) + +DT_COMPAT_VIRTIO_MMIO := virtio,mmio + +config DT_HAS_VIRTIO_MMIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_MMIO)) + +DT_COMPAT_VIRTIO_NET := virtio,net + +config DT_HAS_VIRTIO_NET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_NET)) + +DT_COMPAT_VIRTIO_PCI := virtio,pci + +config DT_HAS_VIRTIO_PCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_PCI)) + +DT_COMPAT_VISHAY_VCNL36825T := vishay,vcnl36825t + +config DT_HAS_VISHAY_VCNL36825T_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VCNL36825T)) + +DT_COMPAT_VISHAY_VCNL4040 := vishay,vcnl4040 + +config DT_HAS_VISHAY_VCNL4040_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VCNL4040)) + +DT_COMPAT_VISHAY_VEML6031 := vishay,veml6031 + +config DT_HAS_VISHAY_VEML6031_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML6031)) + +DT_COMPAT_VISHAY_VEML6046 := vishay,veml6046 + +config DT_HAS_VISHAY_VEML6046_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML6046)) + +DT_COMPAT_VISHAY_VEML7700 := vishay,veml7700 + +config DT_HAS_VISHAY_VEML7700_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML7700)) + +DT_COMPAT_VISHAY_VS1838B := vishay,vs1838b + +config DT_HAS_VISHAY_VS1838B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VS1838B)) + +DT_COMPAT_VND_ADC := vnd,adc + +config DT_HAS_VND_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ADC)) + +DT_COMPAT_VND_ADC_TEMP_SENSOR := vnd,adc-temp-sensor + +config DT_HAS_VND_ADC_TEMP_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ADC_TEMP_SENSOR)) + +DT_COMPAT_VND_ARRAY_HOLDER := vnd,array-holder + +config DT_HAS_VND_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ARRAY_HOLDER)) + +DT_COMPAT_VND_BUSY_SIM := vnd,busy-sim + +config DT_HAS_VND_BUSY_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_BUSY_SIM)) + +DT_COMPAT_VND_CAN_CONTROLLER := vnd,can-controller + +config DT_HAS_VND_CAN_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CAN_CONTROLLER)) + +DT_COMPAT_VND_CAN_TRANSCEIVER := vnd,can-transceiver + +config DT_HAS_VND_CAN_TRANSCEIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CAN_TRANSCEIVER)) + +DT_COMPAT_VND_CHILD_BINDINGS := vnd,child-bindings + +config DT_HAS_VND_CHILD_BINDINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CHILD_BINDINGS)) + +DT_COMPAT_VND_CLOCK := vnd,clock + +config DT_HAS_VND_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CLOCK)) + +DT_COMPAT_VND_CPU_INTC := vnd,cpu-intc + +config DT_HAS_VND_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CPU_INTC)) + +DT_COMPAT_VND_DAC := vnd,dac + +config DT_HAS_VND_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DAC)) + +DT_COMPAT_VND_DEVICE_WITH_PROPS := vnd,device-with-props + +config DT_HAS_VND_DEVICE_WITH_PROPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DEVICE_WITH_PROPS)) + +DT_COMPAT_VND_DISABLED_COMPAT := vnd,disabled-compat + +config DT_HAS_VND_DISABLED_COMPAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DISABLED_COMPAT)) + +DT_COMPAT_VND_DMA := vnd,dma + +config DT_HAS_VND_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DMA)) + +DT_COMPAT_VND_EMUL_TESTER := vnd,emul-tester + +config DT_HAS_VND_EMUL_TESTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_EMUL_TESTER)) + +DT_COMPAT_VND_ENUM_HOLDER := vnd,enum-holder + +config DT_HAS_VND_ENUM_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_HOLDER)) + +DT_COMPAT_VND_ENUM_HOLDER_INST := vnd,enum-holder-inst + +config DT_HAS_VND_ENUM_HOLDER_INST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_HOLDER_INST)) + +DT_COMPAT_VND_ENUM_INT_ARRAY_HOLDER := vnd,enum-int-array-holder + +config DT_HAS_VND_ENUM_INT_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_INT_ARRAY_HOLDER)) + +DT_COMPAT_VND_ENUM_INT_REQUIRED_FALSE_HOLDER := vnd,enum-int-required-false-holder + +config DT_HAS_VND_ENUM_INT_REQUIRED_FALSE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_INT_REQUIRED_FALSE_HOLDER)) + +DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER := vnd,enum-required-false-holder + +config DT_HAS_VND_ENUM_REQUIRED_FALSE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER)) + +DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER_INST := vnd,enum-required-false-holder-inst + +config DT_HAS_VND_ENUM_REQUIRED_FALSE_HOLDER_INST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER_INST)) + +DT_COMPAT_VND_ENUM_STRING_ARRAY_HOLDER := vnd,enum-string-array-holder + +config DT_HAS_VND_ENUM_STRING_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_STRING_ARRAY_HOLDER)) + +DT_COMPAT_VND_ETHERNET := vnd,ethernet + +config DT_HAS_VND_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ETHERNET)) + +DT_COMPAT_VND_GPIO := vnd,gpio + +config DT_HAS_VND_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO)) + +DT_COMPAT_VND_GPIO_DEVICE := vnd,gpio-device + +config DT_HAS_VND_GPIO_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_DEVICE)) + +DT_COMPAT_VND_GPIO_EXPANDER := vnd,gpio-expander + +config DT_HAS_VND_GPIO_EXPANDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_EXPANDER)) + +DT_COMPAT_VND_GPIO_INTC_DEVICE := vnd,gpio-intc-device + +config DT_HAS_VND_GPIO_INTC_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_INTC_DEVICE)) + +DT_COMPAT_VND_GPIO_ONE_CELL := vnd,gpio-one-cell + +config DT_HAS_VND_GPIO_ONE_CELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_ONE_CELL)) + +DT_COMPAT_VND_GREAT_GRANDCHILD_BINDINGS := vnd,great-grandchild-bindings + +config DT_HAS_VND_GREAT_GRANDCHILD_BINDINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GREAT_GRANDCHILD_BINDINGS)) + +DT_COMPAT_VND_I2C := vnd,i2c + +config DT_HAS_VND_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C)) + +DT_COMPAT_VND_I2C_DEVICE := vnd,i2c-device + +config DT_HAS_VND_I2C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C_DEVICE)) + +DT_COMPAT_VND_I2C_MUX := vnd,i2c-mux + +config DT_HAS_VND_I2C_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C_MUX)) + +DT_COMPAT_VND_I2S := vnd,i2s + +config DT_HAS_VND_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2S)) + +DT_COMPAT_VND_I3C := vnd,i3c + +config DT_HAS_VND_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C)) + +DT_COMPAT_VND_I3C_DEVICE := vnd,i3c-device + +config DT_HAS_VND_I3C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C_DEVICE)) + +DT_COMPAT_VND_I3C_I2C_DEVICE := vnd,i3c-i2c-device + +config DT_HAS_VND_I3C_I2C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C_I2C_DEVICE)) + +DT_COMPAT_VND_IEEE802154 := vnd,ieee802154 + +config DT_HAS_VND_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_IEEE802154)) + +DT_COMPAT_VND_INPUT_DEVICE := vnd,input-device + +config DT_HAS_VND_INPUT_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INPUT_DEVICE)) + +DT_COMPAT_VND_INTC := vnd,intc + +config DT_HAS_VND_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTC)) + +DT_COMPAT_VND_INTERRUPT_HOLDER := vnd,interrupt-holder + +config DT_HAS_VND_INTERRUPT_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTERRUPT_HOLDER)) + +DT_COMPAT_VND_INTERRUPT_HOLDER_EXTENDED := vnd,interrupt-holder-extended + +config DT_HAS_VND_INTERRUPT_HOLDER_EXTENDED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTERRUPT_HOLDER_EXTENDED)) + +DT_COMPAT_VND_MBOX := vnd,mbox + +config DT_HAS_VND_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX)) + +DT_COMPAT_VND_MBOX_CONSUMER := vnd,mbox-consumer + +config DT_HAS_VND_MBOX_CONSUMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX_CONSUMER)) + +DT_COMPAT_VND_MBOX_ZERO_CELL := vnd,mbox-zero-cell + +config DT_HAS_VND_MBOX_ZERO_CELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX_ZERO_CELL)) + +DT_COMPAT_VND_MEMORY_ATTR := vnd,memory-attr + +config DT_HAS_VND_MEMORY_ATTR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MEMORY_ATTR)) + +DT_COMPAT_VND_MIPI_DSI := vnd,mipi-dsi + +config DT_HAS_VND_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MIPI_DSI)) + +DT_COMPAT_VND_NON_DEPRECATED_LABEL := vnd,non-deprecated-label + +config DT_HAS_VND_NON_DEPRECATED_LABEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_NON_DEPRECATED_LABEL)) + +DT_COMPAT_VND_NVMEM_CONSUMER := vnd,nvmem-consumer + +config DT_HAS_VND_NVMEM_CONSUMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_NVMEM_CONSUMER)) + +DT_COMPAT_VND_PCIE := vnd,pcie + +config DT_HAS_VND_PCIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PCIE)) + +DT_COMPAT_VND_PHANDLE_HOLDER := vnd,phandle-holder + +config DT_HAS_VND_PHANDLE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PHANDLE_HOLDER)) + +DT_COMPAT_VND_PINCTRL := vnd,pinctrl + +config DT_HAS_VND_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL)) + +DT_COMPAT_VND_PINCTRL_DEVICE := vnd,pinctrl-device + +config DT_HAS_VND_PINCTRL_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL_DEVICE)) + +DT_COMPAT_VND_PINCTRL_TEST := vnd,pinctrl-test + +config DT_HAS_VND_PINCTRL_TEST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL_TEST)) + +DT_COMPAT_VND_PWM := vnd,pwm + +config DT_HAS_VND_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PWM)) + +DT_COMPAT_VND_REG_HOLDER := vnd,reg-holder + +config DT_HAS_VND_REG_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER)) + +DT_COMPAT_VND_REG_HOLDER_64 := vnd,reg-holder-64 + +config DT_HAS_VND_REG_HOLDER_64_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER_64)) + +DT_COMPAT_VND_RESERVED_COMPAT := vnd,reserved-compat + +config DT_HAS_VND_RESERVED_COMPAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_RESERVED_COMPAT)) + +DT_COMPAT_VND_RESET := vnd,reset + +config DT_HAS_VND_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_RESET)) + +DT_COMPAT_VND_SERIAL := vnd,serial + +config DT_HAS_VND_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SERIAL)) + +DT_COMPAT_VND_SPI := vnd,spi + +config DT_HAS_VND_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI)) + +DT_COMPAT_VND_SPI_DEVICE := vnd,spi-device + +config DT_HAS_VND_SPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI_DEVICE)) + +DT_COMPAT_VND_SPI_DEVICE_2 := vnd,spi-device-2 + +config DT_HAS_VND_SPI_DEVICE_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI_DEVICE_2)) + +DT_COMPAT_VND_STRING := vnd,string + +config DT_HAS_VND_STRING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING)) + +DT_COMPAT_VND_STRING_ARRAY := vnd,string-array + +config DT_HAS_VND_STRING_ARRAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY)) + +DT_COMPAT_VND_STRING_ARRAY_TOKEN := vnd,string-array-token + +config DT_HAS_VND_STRING_ARRAY_TOKEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY_TOKEN)) + +DT_COMPAT_VND_STRING_ARRAY_UNQUOTED := vnd,string-array-unquoted + +config DT_HAS_VND_STRING_ARRAY_UNQUOTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY_UNQUOTED)) + +DT_COMPAT_VND_STRING_TOKEN := vnd,string-token + +config DT_HAS_VND_STRING_TOKEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_TOKEN)) + +DT_COMPAT_VND_STRING_UNQUOTED := vnd,string-unquoted + +config DT_HAS_VND_STRING_UNQUOTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_UNQUOTED)) + +DT_COMPAT_VND_VIDEO_MULTI_PORT := vnd,video-multi-port + +config DT_HAS_VND_VIDEO_MULTI_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_VIDEO_MULTI_PORT)) + +DT_COMPAT_VND_VIDEO_SINGLE_PORT := vnd,video-single-port + +config DT_HAS_VND_VIDEO_SINGLE_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_VIDEO_SINGLE_PORT)) + +DT_COMPAT_VND_W1 := vnd,w1 + +config DT_HAS_VND_W1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_W1)) + +DT_COMPAT_VOLTAGE_DIVIDER := voltage-divider + +config DT_HAS_VOLTAGE_DIVIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VOLTAGE_DIVIDER)) + +DT_COMPAT_WAVESHARE_7INCH_DSI_LCD_C := waveshare,7inch-dsi-lcd-c + +config DT_HAS_WAVESHARE_7INCH_DSI_LCD_C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WAVESHARE_7INCH_DSI_LCD_C)) + +DT_COMPAT_WCH_00X_AFIO := wch,00x-afio + +config DT_HAS_WCH_00X_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_00X_AFIO)) + +DT_COMPAT_WCH_20X_30X_AFIO := wch,20x_30x-afio + +config DT_HAS_WCH_20X_30X_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_20X_30X_AFIO)) + +DT_COMPAT_WCH_ADC := wch,adc + +config DT_HAS_WCH_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_ADC)) + +DT_COMPAT_WCH_AFIO := wch,afio + +config DT_HAS_WCH_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_AFIO)) + +DT_COMPAT_WCH_CH32V00X_HSE_CLOCK := wch,ch32v00x-hse-clock + +config DT_HAS_WCH_CH32V00X_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_HSE_CLOCK)) + +DT_COMPAT_WCH_CH32V00X_HSI_CLOCK := wch,ch32v00x-hsi-clock + +config DT_HAS_WCH_CH32V00X_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_HSI_CLOCK)) + +DT_COMPAT_WCH_CH32V00X_PLL_CLOCK := wch,ch32v00x-pll-clock + +config DT_HAS_WCH_CH32V00X_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_PLL_CLOCK)) + +DT_COMPAT_WCH_CH32V20X_30X_PLL_CLOCK := wch,ch32v20x_30x-pll-clock + +config DT_HAS_WCH_CH32V20X_30X_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V20X_30X_PLL_CLOCK)) + +DT_COMPAT_WCH_EXTI := wch,exti + +config DT_HAS_WCH_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_EXTI)) + +DT_COMPAT_WCH_GPIO := wch,gpio + +config DT_HAS_WCH_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPIO)) + +DT_COMPAT_WCH_GPTM := wch,gptm + +config DT_HAS_WCH_GPTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPTM)) + +DT_COMPAT_WCH_GPTM_PWM := wch,gptm-pwm + +config DT_HAS_WCH_GPTM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPTM_PWM)) + +DT_COMPAT_WCH_I2C := wch,i2c + +config DT_HAS_WCH_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_I2C)) + +DT_COMPAT_WCH_IWDG := wch,iwdg + +config DT_HAS_WCH_IWDG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_IWDG)) + +DT_COMPAT_WCH_PFIC := wch,pfic + +config DT_HAS_WCH_PFIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_PFIC)) + +DT_COMPAT_WCH_QINGKE_V2 := wch,qingke-v2 + +config DT_HAS_WCH_QINGKE_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V2)) + +DT_COMPAT_WCH_QINGKE_V4B := wch,qingke-v4b + +config DT_HAS_WCH_QINGKE_V4B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V4B)) + +DT_COMPAT_WCH_QINGKE_V4C := wch,qingke-v4c + +config DT_HAS_WCH_QINGKE_V4C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V4C)) + +DT_COMPAT_WCH_QINGKE_V4F := wch,qingke-v4f + +config DT_HAS_WCH_QINGKE_V4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V4F)) + +DT_COMPAT_WCH_RCC := wch,rcc + +config DT_HAS_WCH_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_RCC)) + +DT_COMPAT_WCH_SPI := wch,spi + +config DT_HAS_WCH_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_SPI)) + +DT_COMPAT_WCH_SYSTICK := wch,systick + +config DT_HAS_WCH_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_SYSTICK)) + +DT_COMPAT_WCH_USART := wch,usart + +config DT_HAS_WCH_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_USART)) + +DT_COMPAT_WCH_WCH_DMA := wch,wch-dma + +config DT_HAS_WCH_WCH_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_WCH_DMA)) + +DT_COMPAT_WE_WSEN_HIDS_2525020210002 := we,wsen-hids-2525020210002 + +config DT_HAS_WE_WSEN_HIDS_2525020210002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_HIDS_2525020210002)) + +DT_COMPAT_WE_WSEN_ISDS_2536030320001 := we,wsen-isds-2536030320001 + +config DT_HAS_WE_WSEN_ISDS_2536030320001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_ISDS_2536030320001)) + +DT_COMPAT_WE_WSEN_ITDS_2533020201601 := we,wsen-itds-2533020201601 + +config DT_HAS_WE_WSEN_ITDS_2533020201601_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_ITDS_2533020201601)) + +DT_COMPAT_WE_WSEN_PADS_2511020213301 := we,wsen-pads-2511020213301 + +config DT_HAS_WE_WSEN_PADS_2511020213301_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_PADS_2511020213301)) + +DT_COMPAT_WE_WSEN_PDMS_25131308XXX05 := we,wsen-pdms-25131308XXX05 + +config DT_HAS_WE_WSEN_PDMS_25131308XXX05_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_PDMS_25131308XXX05)) + +DT_COMPAT_WE_WSEN_PDUS_25131308XXXXX := we,wsen-pdus-25131308XXXXX + +config DT_HAS_WE_WSEN_PDUS_25131308XXXXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_PDUS_25131308XXXXX)) + +DT_COMPAT_WE_WSEN_TIDS_2521020222501 := we,wsen-tids-2521020222501 + +config DT_HAS_WE_WSEN_TIDS_2521020222501_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_TIDS_2521020222501)) + +DT_COMPAT_WEACT_DCMI_CAMERA_CONNECTOR := weact,dcmi-camera-connector + +config DT_HAS_WEACT_DCMI_CAMERA_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WEACT_DCMI_CAMERA_CONNECTOR)) + +DT_COMPAT_WINSEN_MHZ19B := winsen,mhz19b + +config DT_HAS_WINSEN_MHZ19B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WINSEN_MHZ19B)) + +DT_COMPAT_WIZNET_W5500 := wiznet,w5500 + +config DT_HAS_WIZNET_W5500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WIZNET_W5500)) + +DT_COMPAT_WNC_M14A2A := wnc,m14a2a + +config DT_HAS_WNC_M14A2A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WNC_M14A2A)) + +DT_COMPAT_WOLFSON_WM8904 := wolfson,wm8904 + +config DT_HAS_WOLFSON_WM8904_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WOLFSON_WM8904)) + +DT_COMPAT_WOLFSON_WM8962 := wolfson,wm8962 + +config DT_HAS_WOLFSON_WM8962_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WOLFSON_WM8962)) + +DT_COMPAT_WORLDSEMI_WS2812_GPIO := worldsemi,ws2812-gpio + +config DT_HAS_WORLDSEMI_WS2812_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_GPIO)) + +DT_COMPAT_WORLDSEMI_WS2812_I2S := worldsemi,ws2812-i2s + +config DT_HAS_WORLDSEMI_WS2812_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_I2S)) + +DT_COMPAT_WORLDSEMI_WS2812_RPI_PICO_PIO := worldsemi,ws2812-rpi_pico-pio + +config DT_HAS_WORLDSEMI_WS2812_RPI_PICO_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_RPI_PICO_PIO)) + +DT_COMPAT_WORLDSEMI_WS2812_SPI := worldsemi,ws2812-spi + +config DT_HAS_WORLDSEMI_WS2812_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_SPI)) + +DT_COMPAT_WORLDSEMI_WS2812_UART := worldsemi,ws2812-uart + +config DT_HAS_WORLDSEMI_WS2812_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_UART)) + +DT_COMPAT_X_POWERS_AXP192 := x-powers,axp192 + +config DT_HAS_X_POWERS_AXP192_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192)) + +DT_COMPAT_X_POWERS_AXP192_GPIO := x-powers,axp192-gpio + +config DT_HAS_X_POWERS_AXP192_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_GPIO)) + +DT_COMPAT_X_POWERS_AXP192_LED := x-powers,axp192-led + +config DT_HAS_X_POWERS_AXP192_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_LED)) + +DT_COMPAT_X_POWERS_AXP192_REGULATOR := x-powers,axp192-regulator + +config DT_HAS_X_POWERS_AXP192_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_REGULATOR)) + +DT_COMPAT_X_POWERS_AXP2101 := x-powers,axp2101 + +config DT_HAS_X_POWERS_AXP2101_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101)) + +DT_COMPAT_X_POWERS_AXP2101_CHARGER := x-powers,axp2101-charger + +config DT_HAS_X_POWERS_AXP2101_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_CHARGER)) + +DT_COMPAT_X_POWERS_AXP2101_FUEL_GAUGE := x-powers,axp2101-fuel-gauge + +config DT_HAS_X_POWERS_AXP2101_FUEL_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_FUEL_GAUGE)) + +DT_COMPAT_X_POWERS_AXP2101_LED := x-powers,axp2101-led + +config DT_HAS_X_POWERS_AXP2101_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_LED)) + +DT_COMPAT_X_POWERS_AXP2101_REGULATOR := x-powers,axp2101-regulator + +config DT_HAS_X_POWERS_AXP2101_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_REGULATOR)) + +DT_COMPAT_XEN_HVC_CONSOLEIO := xen,hvc-consoleio + +config DT_HAS_XEN_HVC_CONSOLEIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_HVC_CONSOLEIO)) + +DT_COMPAT_XEN_HVC_UART := xen,hvc-uart + +config DT_HAS_XEN_HVC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_HVC_UART)) + +DT_COMPAT_XEN_XEN := xen,xen + +config DT_HAS_XEN_XEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_XEN)) + +DT_COMPAT_XLNX_AXI_DMA_1_00_A := xlnx,axi-dma-1.00.a + +config DT_HAS_XLNX_AXI_DMA_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_DMA_1_00_A)) + +DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A := xlnx,axi-ethernet-1.00.a + +config DT_HAS_XLNX_AXI_ETHERNET_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A)) + +DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A_MDIO := xlnx,axi-ethernet-1.00.a-mdio + +config DT_HAS_XLNX_AXI_ETHERNET_1_00_A_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A_MDIO)) + +DT_COMPAT_XLNX_ETH_DMA := xlnx,eth-dma + +config DT_HAS_XLNX_ETH_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ETH_DMA)) + +DT_COMPAT_XLNX_FPGA := xlnx,fpga + +config DT_HAS_XLNX_FPGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_FPGA)) + +DT_COMPAT_XLNX_GEM := xlnx,gem + +config DT_HAS_XLNX_GEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_GEM)) + +DT_COMPAT_XLNX_PINCTRL_ZYNQ := xlnx,pinctrl-zynq + +config DT_HAS_XLNX_PINCTRL_ZYNQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PINCTRL_ZYNQ)) + +DT_COMPAT_XLNX_PINCTRL_ZYNQMP := xlnx,pinctrl-zynqmp + +config DT_HAS_XLNX_PINCTRL_ZYNQMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PINCTRL_ZYNQMP)) + +DT_COMPAT_XLNX_PS_GPIO := xlnx,ps-gpio + +config DT_HAS_XLNX_PS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PS_GPIO)) + +DT_COMPAT_XLNX_PS_GPIO_BANK := xlnx,ps-gpio-bank + +config DT_HAS_XLNX_PS_GPIO_BANK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PS_GPIO_BANK)) + +DT_COMPAT_XLNX_TTCPS := xlnx,ttcps + +config DT_HAS_XLNX_TTCPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_TTCPS)) + +DT_COMPAT_XLNX_VERSAL_8_9A := xlnx,versal-8.9a + +config DT_HAS_XLNX_VERSAL_8_9A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_VERSAL_8_9A)) + +DT_COMPAT_XLNX_VERSAL_WWDT := xlnx,versal-wwdt + +config DT_HAS_XLNX_VERSAL_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_VERSAL_WWDT)) + +DT_COMPAT_XLNX_XPS_GPIO_1_00_A := xlnx,xps-gpio-1.00.a + +config DT_HAS_XLNX_XPS_GPIO_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_GPIO_1_00_A)) + +DT_COMPAT_XLNX_XPS_GPIO_1_00_A_GPIO2 := xlnx,xps-gpio-1.00.a-gpio2 + +config DT_HAS_XLNX_XPS_GPIO_1_00_A_GPIO2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_GPIO_1_00_A_GPIO2)) + +DT_COMPAT_XLNX_XPS_IIC_2_00_A := xlnx,xps-iic-2.00.a + +config DT_HAS_XLNX_XPS_IIC_2_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_IIC_2_00_A)) + +DT_COMPAT_XLNX_XPS_IIC_2_1 := xlnx,xps-iic-2.1 + +config DT_HAS_XLNX_XPS_IIC_2_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_IIC_2_1)) + +DT_COMPAT_XLNX_XPS_SPI_2_00_A := xlnx,xps-spi-2.00.a + +config DT_HAS_XLNX_XPS_SPI_2_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_SPI_2_00_A)) + +DT_COMPAT_XLNX_XPS_TIMEBASE_WDT_1_00_A := xlnx,xps-timebase-wdt-1.00.a + +config DT_HAS_XLNX_XPS_TIMEBASE_WDT_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMEBASE_WDT_1_00_A)) + +DT_COMPAT_XLNX_XPS_TIMER_1_00_A := xlnx,xps-timer-1.00.a + +config DT_HAS_XLNX_XPS_TIMER_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMER_1_00_A)) + +DT_COMPAT_XLNX_XPS_TIMER_1_00_A_PWM := xlnx,xps-timer-1.00.a-pwm + +config DT_HAS_XLNX_XPS_TIMER_1_00_A_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMER_1_00_A_PWM)) + +DT_COMPAT_XLNX_XPS_UARTLITE_1_00_A := xlnx,xps-uartlite-1.00.a + +config DT_HAS_XLNX_XPS_UARTLITE_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_UARTLITE_1_00_A)) + +DT_COMPAT_XLNX_XUARTPS := xlnx,xuartps + +config DT_HAS_XLNX_XUARTPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XUARTPS)) + +DT_COMPAT_XLNX_ZYNQ_OCM := xlnx,zynq-ocm + +config DT_HAS_XLNX_ZYNQ_OCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQ_OCM)) + +DT_COMPAT_XLNX_ZYNQMP_DDRC_2_40A := xlnx,zynqmp-ddrc-2.40a + +config DT_HAS_XLNX_ZYNQMP_DDRC_2_40A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQMP_DDRC_2_40A)) + +DT_COMPAT_XLNX_ZYNQMP_IPI_MAILBOX := xlnx,zynqmp-ipi-mailbox + +config DT_HAS_XLNX_ZYNQMP_IPI_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQMP_IPI_MAILBOX)) + +DT_COMPAT_XPTEK_XPT2046 := xptek,xpt2046 + +config DT_HAS_XPTEK_XPT2046_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XPTEK_XPT2046)) + +DT_COMPAT_XUANTIE_E907 := xuantie,e907 + +config DT_HAS_XUANTIE_E907_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XUANTIE_E907)) + +DT_COMPAT_ZEPHYR_ADC_EMUL := zephyr,adc-emul + +config DT_HAS_ZEPHYR_ADC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_ADC_EMUL)) + +DT_COMPAT_ZEPHYR_BBRAM_EMUL := zephyr,bbram-emul + +config DT_HAS_ZEPHYR_BBRAM_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BBRAM_EMUL)) + +DT_COMPAT_ZEPHYR_BT_HCI_3WIRE_UART := zephyr,bt-hci-3wire-uart + +config DT_HAS_ZEPHYR_BT_HCI_3WIRE_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_3WIRE_UART)) + +DT_COMPAT_ZEPHYR_BT_HCI_ENTROPY := zephyr,bt-hci-entropy + +config DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_ENTROPY)) + +DT_COMPAT_ZEPHYR_BT_HCI_IPC := zephyr,bt-hci-ipc + +config DT_HAS_ZEPHYR_BT_HCI_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_IPC)) + +DT_COMPAT_ZEPHYR_BT_HCI_LL_SW_SPLIT := zephyr,bt-hci-ll-sw-split + +config DT_HAS_ZEPHYR_BT_HCI_LL_SW_SPLIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_LL_SW_SPLIT)) + +DT_COMPAT_ZEPHYR_BT_HCI_SPI := zephyr,bt-hci-spi + +config DT_HAS_ZEPHYR_BT_HCI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_SPI)) + +DT_COMPAT_ZEPHYR_BT_HCI_SPI_SLAVE := zephyr,bt-hci-spi-slave + +config DT_HAS_ZEPHYR_BT_HCI_SPI_SLAVE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_SPI_SLAVE)) + +DT_COMPAT_ZEPHYR_BT_HCI_UART := zephyr,bt-hci-uart + +config DT_HAS_ZEPHYR_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_UART)) + +DT_COMPAT_ZEPHYR_BT_HCI_USERCHAN := zephyr,bt-hci-userchan + +config DT_HAS_ZEPHYR_BT_HCI_USERCHAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_USERCHAN)) + +DT_COMPAT_ZEPHYR_CAN_LOOPBACK := zephyr,can-loopback + +config DT_HAS_ZEPHYR_CAN_LOOPBACK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CAN_LOOPBACK)) + +DT_COMPAT_ZEPHYR_CDC_ACM_UART := zephyr,cdc-acm-uart + +config DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_ACM_UART)) + +DT_COMPAT_ZEPHYR_CDC_ECM_ETHERNET := zephyr,cdc-ecm-ethernet + +config DT_HAS_ZEPHYR_CDC_ECM_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_ECM_ETHERNET)) + +DT_COMPAT_ZEPHYR_CDC_NCM_ETHERNET := zephyr,cdc-ncm-ethernet + +config DT_HAS_ZEPHYR_CDC_NCM_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_NCM_ETHERNET)) + +DT_COMPAT_ZEPHYR_COREDUMP := zephyr,coredump + +config DT_HAS_ZEPHYR_COREDUMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_COREDUMP)) + +DT_COMPAT_ZEPHYR_COUNTER_WATCHDOG := zephyr,counter-watchdog + +config DT_HAS_ZEPHYR_COUNTER_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_COUNTER_WATCHDOG)) + +DT_COMPAT_ZEPHYR_DEVMUX := zephyr,devmux + +config DT_HAS_ZEPHYR_DEVMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DEVMUX)) + +DT_COMPAT_ZEPHYR_DISPLAYS := zephyr,displays + +config DT_HAS_ZEPHYR_DISPLAYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DISPLAYS)) + +DT_COMPAT_ZEPHYR_DMA_EMUL := zephyr,dma-emul + +config DT_HAS_ZEPHYR_DMA_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DMA_EMUL)) + +DT_COMPAT_ZEPHYR_DUMMY_DC := zephyr,dummy-dc + +config DT_HAS_ZEPHYR_DUMMY_DC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DUMMY_DC)) + +DT_COMPAT_ZEPHYR_EMU_EEPROM := zephyr,emu-eeprom + +config DT_HAS_ZEPHYR_EMU_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_EMU_EEPROM)) + +DT_COMPAT_ZEPHYR_ESPI_EMUL_CONTROLLER := zephyr,espi-emul-controller + +config DT_HAS_ZEPHYR_ESPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_ESPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_FAKE_CAN := zephyr,fake-can + +config DT_HAS_ZEPHYR_FAKE_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_CAN)) + +DT_COMPAT_ZEPHYR_FAKE_COMP := zephyr,fake-comp + +config DT_HAS_ZEPHYR_FAKE_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_COMP)) + +DT_COMPAT_ZEPHYR_FAKE_EEPROM := zephyr,fake-eeprom + +config DT_HAS_ZEPHYR_FAKE_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_EEPROM)) + +DT_COMPAT_ZEPHYR_FAKE_PWM := zephyr,fake-pwm + +config DT_HAS_ZEPHYR_FAKE_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_PWM)) + +DT_COMPAT_ZEPHYR_FAKE_REGULATOR := zephyr,fake-regulator + +config DT_HAS_ZEPHYR_FAKE_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_REGULATOR)) + +DT_COMPAT_ZEPHYR_FAKE_RTC := zephyr,fake-rtc + +config DT_HAS_ZEPHYR_FAKE_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_RTC)) + +DT_COMPAT_ZEPHYR_FAKE_STEPPER := zephyr,fake-stepper + +config DT_HAS_ZEPHYR_FAKE_STEPPER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_STEPPER)) + +DT_COMPAT_ZEPHYR_FLASH_DISK := zephyr,flash-disk + +config DT_HAS_ZEPHYR_FLASH_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FLASH_DISK)) + +DT_COMPAT_ZEPHYR_FSTAB := zephyr,fstab + +config DT_HAS_ZEPHYR_FSTAB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB)) + +DT_COMPAT_ZEPHYR_FSTAB_EXT2 := zephyr,fstab,ext2 + +config DT_HAS_ZEPHYR_FSTAB_EXT2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_EXT2)) + +DT_COMPAT_ZEPHYR_FSTAB_FATFS := zephyr,fstab,fatfs + +config DT_HAS_ZEPHYR_FSTAB_FATFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_FATFS)) + +DT_COMPAT_ZEPHYR_FSTAB_LITTLEFS := zephyr,fstab,littlefs + +config DT_HAS_ZEPHYR_FSTAB_LITTLEFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_LITTLEFS)) + +DT_COMPAT_ZEPHYR_FUEL_GAUGE_COMPOSITE := zephyr,fuel-gauge-composite + +config DT_HAS_ZEPHYR_FUEL_GAUGE_COMPOSITE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FUEL_GAUGE_COMPOSITE)) + +DT_COMPAT_ZEPHYR_GENERIC_PSTATE := zephyr,generic-pstate + +config DT_HAS_ZEPHYR_GENERIC_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GENERIC_PSTATE)) + +DT_COMPAT_ZEPHYR_GNSS_EMUL := zephyr,gnss-emul + +config DT_HAS_ZEPHYR_GNSS_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GNSS_EMUL)) + +DT_COMPAT_ZEPHYR_GPIO_EMUL := zephyr,gpio-emul + +config DT_HAS_ZEPHYR_GPIO_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_EMUL)) + +DT_COMPAT_ZEPHYR_GPIO_EMUL_SDL := zephyr,gpio-emul-sdl + +config DT_HAS_ZEPHYR_GPIO_EMUL_SDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_EMUL_SDL)) + +DT_COMPAT_ZEPHYR_H_BRIDGE_STEPPER := zephyr,h-bridge-stepper + +config DT_HAS_ZEPHYR_H_BRIDGE_STEPPER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_H_BRIDGE_STEPPER)) + +DT_COMPAT_ZEPHYR_HID_DEVICE := zephyr,hid-device + +config DT_HAS_ZEPHYR_HID_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_HID_DEVICE)) + +DT_COMPAT_ZEPHYR_HUB12 := zephyr,hub12 + +config DT_HAS_ZEPHYR_HUB12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_HUB12)) + +DT_COMPAT_ZEPHYR_I2C_DUMP_ALLOWLIST := zephyr,i2c-dump-allowlist + +config DT_HAS_ZEPHYR_I2C_DUMP_ALLOWLIST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_DUMP_ALLOWLIST)) + +DT_COMPAT_ZEPHYR_I2C_EMUL_CONTROLLER := zephyr,i2c-emul-controller + +config DT_HAS_ZEPHYR_I2C_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_I2C_TARGET_EEPROM := zephyr,i2c-target-eeprom + +config DT_HAS_ZEPHYR_I2C_TARGET_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_TARGET_EEPROM)) + +DT_COMPAT_ZEPHYR_IEEE802154_UART_PIPE := zephyr,ieee802154-uart-pipe + +config DT_HAS_ZEPHYR_IEEE802154_UART_PIPE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IEEE802154_UART_PIPE)) + +DT_COMPAT_ZEPHYR_INPUT_DOUBLE_TAP := zephyr,input-double-tap + +config DT_HAS_ZEPHYR_INPUT_DOUBLE_TAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_DOUBLE_TAP)) + +DT_COMPAT_ZEPHYR_INPUT_LONGPRESS := zephyr,input-longpress + +config DT_HAS_ZEPHYR_INPUT_LONGPRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_LONGPRESS)) + +DT_COMPAT_ZEPHYR_INPUT_SDL_TOUCH := zephyr,input-sdl-touch + +config DT_HAS_ZEPHYR_INPUT_SDL_TOUCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_SDL_TOUCH)) + +DT_COMPAT_ZEPHYR_IPC_ICBMSG := zephyr,ipc-icbmsg + +config DT_HAS_ZEPHYR_IPC_ICBMSG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICBMSG)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG := zephyr,ipc-icmsg + +config DT_HAS_ZEPHYR_IPC_ICMSG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_FOLLOWER := zephyr,ipc-icmsg-me-follower + +config DT_HAS_ZEPHYR_IPC_ICMSG_ME_FOLLOWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_FOLLOWER)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_INITIATOR := zephyr,ipc-icmsg-me-initiator + +config DT_HAS_ZEPHYR_IPC_ICMSG_ME_INITIATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_INITIATOR)) + +DT_COMPAT_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS := zephyr,ipc-openamp-static-vrings + +config DT_HAS_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS)) + +DT_COMPAT_ZEPHYR_LOG_UART := zephyr,log-uart + +config DT_HAS_ZEPHYR_LOG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LOG_UART)) + +DT_COMPAT_ZEPHYR_LVGL_BUTTON_INPUT := zephyr,lvgl-button-input + +config DT_HAS_ZEPHYR_LVGL_BUTTON_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_BUTTON_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_ENCODER_INPUT := zephyr,lvgl-encoder-input + +config DT_HAS_ZEPHYR_LVGL_ENCODER_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_ENCODER_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_KEYPAD_INPUT := zephyr,lvgl-keypad-input + +config DT_HAS_ZEPHYR_LVGL_KEYPAD_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_KEYPAD_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_POINTER_INPUT := zephyr,lvgl-pointer-input + +config DT_HAS_ZEPHYR_LVGL_POINTER_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_POINTER_INPUT)) + +DT_COMPAT_ZEPHYR_MBOX_IPM := zephyr,mbox-ipm + +config DT_HAS_ZEPHYR_MBOX_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MBOX_IPM)) + +DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_CONTROLLER := zephyr,mctp-i2c-gpio-controller + +config DT_HAS_ZEPHYR_MCTP_I2C_GPIO_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_CONTROLLER)) + +DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_TARGET := zephyr,mctp-i2c-gpio-target + +config DT_HAS_ZEPHYR_MCTP_I2C_GPIO_TARGET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_TARGET)) + +DT_COMPAT_ZEPHYR_MDIO_GPIO := zephyr,mdio-gpio + +config DT_HAS_ZEPHYR_MDIO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MDIO_GPIO)) + +DT_COMPAT_ZEPHYR_MEMORY_REGION := zephyr,memory-region + +config DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MEMORY_REGION)) + +DT_COMPAT_ZEPHYR_MIDI2_DEVICE := zephyr,midi2-device + +config DT_HAS_ZEPHYR_MIDI2_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIDI2_DEVICE)) + +DT_COMPAT_ZEPHYR_MIPI_DBI_BITBANG := zephyr,mipi-dbi-bitbang + +config DT_HAS_ZEPHYR_MIPI_DBI_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIPI_DBI_BITBANG)) + +DT_COMPAT_ZEPHYR_MIPI_DBI_SPI := zephyr,mipi-dbi-spi + +config DT_HAS_ZEPHYR_MIPI_DBI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIPI_DBI_SPI)) + +DT_COMPAT_ZEPHYR_MMC_DISK := zephyr,mmc-disk + +config DT_HAS_ZEPHYR_MMC_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MMC_DISK)) + +DT_COMPAT_ZEPHYR_MODBUS_SERIAL := zephyr,modbus-serial + +config DT_HAS_ZEPHYR_MODBUS_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MODBUS_SERIAL)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_CONTROLLER := zephyr,mspi-emul-controller + +config DT_HAS_ZEPHYR_MSPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_DEVICE := zephyr,mspi-emul-device + +config DT_HAS_ZEPHYR_MSPI_EMUL_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_DEVICE)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_FLASH := zephyr,mspi-emul-flash + +config DT_HAS_ZEPHYR_MSPI_EMUL_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_FLASH)) + +DT_COMPAT_ZEPHYR_NATIVE_LINUX_CAN := zephyr,native-linux-can + +config DT_HAS_ZEPHYR_NATIVE_LINUX_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_LINUX_CAN)) + +DT_COMPAT_ZEPHYR_NATIVE_LINUX_EVDEV := zephyr,native-linux-evdev + +config DT_HAS_ZEPHYR_NATIVE_LINUX_EVDEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_LINUX_EVDEV)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_COUNTER := zephyr,native-posix-counter + +config DT_HAS_ZEPHYR_NATIVE_POSIX_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_COUNTER)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_CPU := zephyr,native-posix-cpu + +config DT_HAS_ZEPHYR_NATIVE_POSIX_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_CPU)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_RNG := zephyr,native-posix-rng + +config DT_HAS_ZEPHYR_NATIVE_POSIX_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_RNG)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_UART := zephyr,native-posix-uart + +config DT_HAS_ZEPHYR_NATIVE_POSIX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_UART)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_UDC := zephyr,native-posix-udc + +config DT_HAS_ZEPHYR_NATIVE_POSIX_UDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_UDC)) + +DT_COMPAT_ZEPHYR_NATIVE_PTY_UART := zephyr,native-pty-uart + +config DT_HAS_ZEPHYR_NATIVE_PTY_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_PTY_UART)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_COUNTER := zephyr,native-sim-counter + +config DT_HAS_ZEPHYR_NATIVE_SIM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_COUNTER)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_CPU := zephyr,native-sim-cpu + +config DT_HAS_ZEPHYR_NATIVE_SIM_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_CPU)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_PSTATE := zephyr,native-sim-pstate + +config DT_HAS_ZEPHYR_NATIVE_SIM_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_PSTATE)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_RNG := zephyr,native-sim-rng + +config DT_HAS_ZEPHYR_NATIVE_SIM_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_RNG)) + +DT_COMPAT_ZEPHYR_NATIVE_TTY_UART := zephyr,native-tty-uart + +config DT_HAS_ZEPHYR_NATIVE_TTY_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_TTY_UART)) + +DT_COMPAT_ZEPHYR_NUS_UART := zephyr,nus-uart + +config DT_HAS_ZEPHYR_NUS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NUS_UART)) + +DT_COMPAT_ZEPHYR_PANEL_TIMING := zephyr,panel-timing + +config DT_HAS_ZEPHYR_PANEL_TIMING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PANEL_TIMING)) + +DT_COMPAT_ZEPHYR_POWER_STATE := zephyr,power-state + +config DT_HAS_ZEPHYR_POWER_STATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_POWER_STATE)) + +DT_COMPAT_ZEPHYR_PSA_CRYPTO_RNG := zephyr,psa-crypto-rng + +config DT_HAS_ZEPHYR_PSA_CRYPTO_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PSA_CRYPTO_RNG)) + +DT_COMPAT_ZEPHYR_PSTATE := zephyr,pstate + +config DT_HAS_ZEPHYR_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PSTATE)) + +DT_COMPAT_ZEPHYR_RAM_DISK := zephyr,ram-disk + +config DT_HAS_ZEPHYR_RAM_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RAM_DISK)) + +DT_COMPAT_ZEPHYR_RETAINED_RAM := zephyr,retained-ram + +config DT_HAS_ZEPHYR_RETAINED_RAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETAINED_RAM)) + +DT_COMPAT_ZEPHYR_RETAINED_REG := zephyr,retained-reg + +config DT_HAS_ZEPHYR_RETAINED_REG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETAINED_REG)) + +DT_COMPAT_ZEPHYR_RETENTION := zephyr,retention + +config DT_HAS_ZEPHYR_RETENTION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETENTION)) + +DT_COMPAT_ZEPHYR_RTC_COUNTER := zephyr,rtc-counter + +config DT_HAS_ZEPHYR_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RTC_COUNTER)) + +DT_COMPAT_ZEPHYR_RTC_EMUL := zephyr,rtc-emul + +config DT_HAS_ZEPHYR_RTC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RTC_EMUL)) + +DT_COMPAT_ZEPHYR_SDHC_SPI_SLOT := zephyr,sdhc-spi-slot + +config DT_HAS_ZEPHYR_SDHC_SPI_SLOT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDHC_SPI_SLOT)) + +DT_COMPAT_ZEPHYR_SDL_DC := zephyr,sdl-dc + +config DT_HAS_ZEPHYR_SDL_DC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDL_DC)) + +DT_COMPAT_ZEPHYR_SDMMC_DISK := zephyr,sdmmc-disk + +config DT_HAS_ZEPHYR_SDMMC_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDMMC_DISK)) + +DT_COMPAT_ZEPHYR_SENSING := zephyr,sensing + +config DT_HAS_ZEPHYR_SENSING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING)) + +DT_COMPAT_ZEPHYR_SENSING_HINGE_ANGLE := zephyr,sensing-hinge-angle + +config DT_HAS_ZEPHYR_SENSING_HINGE_ANGLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING_HINGE_ANGLE)) + +DT_COMPAT_ZEPHYR_SENSING_PHY_3D_SENSOR := zephyr,sensing-phy-3d-sensor + +config DT_HAS_ZEPHYR_SENSING_PHY_3D_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING_PHY_3D_SENSOR)) + +DT_COMPAT_ZEPHYR_SIM_EEPROM := zephyr,sim-eeprom + +config DT_HAS_ZEPHYR_SIM_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SIM_EEPROM)) + +DT_COMPAT_ZEPHYR_SIM_FLASH := zephyr,sim-flash + +config DT_HAS_ZEPHYR_SIM_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SIM_FLASH)) + +DT_COMPAT_ZEPHYR_SPI_BITBANG := zephyr,spi-bitbang + +config DT_HAS_ZEPHYR_SPI_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SPI_BITBANG)) + +DT_COMPAT_ZEPHYR_SPI_EMUL_CONTROLLER := zephyr,spi-emul-controller + +config DT_HAS_ZEPHYR_SPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_SWDP_GPIO := zephyr,swdp-gpio + +config DT_HAS_ZEPHYR_SWDP_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SWDP_GPIO)) + +DT_COMPAT_ZEPHYR_TACH_GPIO := zephyr,tach-gpio + +config DT_HAS_ZEPHYR_TACH_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_TACH_GPIO)) + +DT_COMPAT_ZEPHYR_UAC2 := zephyr,uac2 + +config DT_HAS_ZEPHYR_UAC2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2)) + +DT_COMPAT_ZEPHYR_UAC2_AUDIO_STREAMING := zephyr,uac2-audio-streaming + +config DT_HAS_ZEPHYR_UAC2_AUDIO_STREAMING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_AUDIO_STREAMING)) + +DT_COMPAT_ZEPHYR_UAC2_CLOCK_SOURCE := zephyr,uac2-clock-source + +config DT_HAS_ZEPHYR_UAC2_CLOCK_SOURCE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_CLOCK_SOURCE)) + +DT_COMPAT_ZEPHYR_UAC2_FEATURE_UNIT := zephyr,uac2-feature-unit + +config DT_HAS_ZEPHYR_UAC2_FEATURE_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_FEATURE_UNIT)) + +DT_COMPAT_ZEPHYR_UAC2_INPUT_TERMINAL := zephyr,uac2-input-terminal + +config DT_HAS_ZEPHYR_UAC2_INPUT_TERMINAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_INPUT_TERMINAL)) + +DT_COMPAT_ZEPHYR_UAC2_OUTPUT_TERMINAL := zephyr,uac2-output-terminal + +config DT_HAS_ZEPHYR_UAC2_OUTPUT_TERMINAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_OUTPUT_TERMINAL)) + +DT_COMPAT_ZEPHYR_UART_BITBANG := zephyr,uart-bitbang + +config DT_HAS_ZEPHYR_UART_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_BITBANG)) + +DT_COMPAT_ZEPHYR_UART_BRIDGE := zephyr,uart-bridge + +config DT_HAS_ZEPHYR_UART_BRIDGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_BRIDGE)) + +DT_COMPAT_ZEPHYR_UART_EMUL := zephyr,uart-emul + +config DT_HAS_ZEPHYR_UART_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_EMUL)) + +DT_COMPAT_ZEPHYR_UDC_SKELETON := zephyr,udc-skeleton + +config DT_HAS_ZEPHYR_UDC_SKELETON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UDC_SKELETON)) + +DT_COMPAT_ZEPHYR_UDC_VIRTUAL := zephyr,udc-virtual + +config DT_HAS_ZEPHYR_UDC_VIRTUAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UDC_VIRTUAL)) + +DT_COMPAT_ZEPHYR_UHC_VIRTUAL := zephyr,uhc-virtual + +config DT_HAS_ZEPHYR_UHC_VIRTUAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UHC_VIRTUAL)) + +DT_COMPAT_ZEPHYR_USB_C_VBUS_ADC := zephyr,usb-c-vbus-adc + +config DT_HAS_ZEPHYR_USB_C_VBUS_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_VBUS_ADC)) + +DT_COMPAT_ZEPHYR_USB_C_VBUS_TCPCI := zephyr,usb-c-vbus-tcpci + +config DT_HAS_ZEPHYR_USB_C_VBUS_TCPCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_VBUS_TCPCI)) + +DT_COMPAT_ZEPHYR_UVC_DEVICE := zephyr,uvc-device + +config DT_HAS_ZEPHYR_UVC_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UVC_DEVICE)) + +DT_COMPAT_ZEPHYR_VIDEO_EMUL_IMAGER := zephyr,video-emul-imager + +config DT_HAS_ZEPHYR_VIDEO_EMUL_IMAGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_EMUL_IMAGER)) + +DT_COMPAT_ZEPHYR_VIDEO_EMUL_RX := zephyr,video-emul-rx + +config DT_HAS_ZEPHYR_VIDEO_EMUL_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_EMUL_RX)) + +DT_COMPAT_ZEPHYR_VIDEO_SW_GENERATOR := zephyr,video-sw-generator + +config DT_HAS_ZEPHYR_VIDEO_SW_GENERATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_SW_GENERATOR)) + +DT_COMPAT_ZEPHYR_W1_GPIO := zephyr,w1-gpio + +config DT_HAS_ZEPHYR_W1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_W1_GPIO)) + +DT_COMPAT_ZEPHYR_W1_SERIAL := zephyr,w1-serial + +config DT_HAS_ZEPHYR_W1_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_W1_SERIAL)) diff --git a/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules new file mode 100644 index 0000000..699e4f3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules @@ -0,0 +1,324 @@ +menu "acpica (C:/Users/iteedi/zephyrproject/modules/lib/acpica)" +osource "$(ZEPHYR_ACPICA_KCONFIG)" +config ZEPHYR_ACPICA_MODULE + bool + default y +endmenu +menu "cmsis (C:/Users/iteedi/zephyrproject/modules/hal/cmsis)" +osource "$(ZEPHYR_CMSIS_KCONFIG)" +config ZEPHYR_CMSIS_MODULE + bool + default y +endmenu +menu "cmsis-dsp (C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp)" +osource "$(ZEPHYR_CMSIS_DSP_KCONFIG)" +config ZEPHYR_CMSIS_DSP_MODULE + bool + default y +endmenu +menu "cmsis-nn (C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn)" +osource "$(ZEPHYR_CMSIS_NN_KCONFIG)" +config ZEPHYR_CMSIS_NN_MODULE + bool + default y +endmenu +menu "cmsis_6 (C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6)" +osource "$(ZEPHYR_CMSIS_6_KCONFIG)" +config ZEPHYR_CMSIS_6_MODULE + bool + default y +endmenu +menu "fatfs (C:/Users/iteedi/zephyrproject/modules/fs/fatfs)" +osource "$(ZEPHYR_FATFS_KCONFIG)" +config ZEPHYR_FATFS_MODULE + bool + default y +endmenu +config ZEPHYR_ADI_MODULE + bool + default y +menu "hal_afbr (C:/Users/iteedi/zephyrproject/modules/hal/afbr)" +osource "$(ZEPHYR_HAL_AFBR_KCONFIG)" +config ZEPHYR_HAL_AFBR_MODULE + bool + default y + +config ZEPHYR_HAL_AFBR_MODULE_BLOBS + bool +endmenu +menu "hal_ambiq (C:/Users/iteedi/zephyrproject/modules/hal/ambiq)" +osource "$(ZEPHYR_HAL_AMBIQ_KCONFIG)" +config ZEPHYR_HAL_AMBIQ_MODULE + bool + default y +endmenu +config ZEPHYR_ATMEL_MODULE + bool + default y +menu "hal_bouffalolab (C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab)" +osource "$(ZEPHYR_HAL_BOUFFALOLAB_KCONFIG)" +config ZEPHYR_HAL_BOUFFALOLAB_MODULE + bool + default y +endmenu +menu "hal_espressif (C:/Users/iteedi/zephyrproject/modules/hal/espressif)" +osource "C:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr/Kconfig" +config ZEPHYR_HAL_ESPRESSIF_MODULE + bool + default y + +config ZEPHYR_HAL_ESPRESSIF_MODULE_BLOBS + bool +endmenu +menu "hal_ethos_u (C:/Users/iteedi/zephyrproject/modules/hal/ethos_u)" +osource "$(ZEPHYR_HAL_ETHOS_U_KCONFIG)" +config ZEPHYR_HAL_ETHOS_U_MODULE + bool + default y +endmenu +menu "hal_gigadevice (C:/Users/iteedi/zephyrproject/modules/hal/gigadevice)" +osource "$(ZEPHYR_HAL_GIGADEVICE_KCONFIG)" +config ZEPHYR_HAL_GIGADEVICE_MODULE + bool + default y +endmenu +menu "hal_infineon (C:/Users/iteedi/zephyrproject/modules/hal/infineon)" +osource "$(ZEPHYR_HAL_INFINEON_KCONFIG)" +config ZEPHYR_HAL_INFINEON_MODULE + bool + default y + +config ZEPHYR_HAL_INFINEON_MODULE_BLOBS + bool +endmenu +menu "hal_intel (C:/Users/iteedi/zephyrproject/modules/hal/intel)" +osource "C:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/Kconfig" +config ZEPHYR_HAL_INTEL_MODULE + bool + default y +endmenu +config ZEPHYR_MICROCHIP_MODULE + bool + default y +menu "hal_nordic (C:/Users/iteedi/zephyrproject/modules/hal/nordic)" +osource "$(ZEPHYR_HAL_NORDIC_KCONFIG)" +config ZEPHYR_HAL_NORDIC_MODULE + bool + default y + +config ZEPHYR_HAL_NORDIC_MODULE_BLOBS + bool +endmenu +config ZEPHYR_NUVOTON_MODULE + bool + default y +menu "hal_nxp (C:/Users/iteedi/zephyrproject/modules/hal/nxp)" +osource "$(ZEPHYR_HAL_NXP_KCONFIG)" +config ZEPHYR_HAL_NXP_MODULE + bool + default y + +config ZEPHYR_HAL_NXP_MODULE_BLOBS + bool +endmenu +config ZEPHYR_OPENISA_MODULE + bool + default y +config ZEPHYR_QUICKLOGIC_MODULE + bool + default y +config ZEPHYR_HAL_RENESAS_MODULE + bool + default y + +config ZEPHYR_HAL_RENESAS_MODULE_BLOBS + bool +menu "hal_rpi_pico (C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico)" +osource "$(ZEPHYR_HAL_RPI_PICO_KCONFIG)" +config ZEPHYR_HAL_RPI_PICO_MODULE + bool + default y +endmenu +menu "hal_sifli (C:/Users/iteedi/zephyrproject/modules/hal/sifli)" +osource "$(ZEPHYR_HAL_SIFLI_KCONFIG)" +config ZEPHYR_HAL_SIFLI_MODULE + bool + default y +endmenu +menu "hal_silabs (C:/Users/iteedi/zephyrproject/modules/hal/silabs)" +osource "$(ZEPHYR_HAL_SILABS_KCONFIG)" +config ZEPHYR_HAL_SILABS_MODULE + bool + default y + +config ZEPHYR_HAL_SILABS_MODULE_BLOBS + bool +endmenu +menu "hal_st (C:/Users/iteedi/zephyrproject/modules/hal/st)" +osource "$(ZEPHYR_HAL_ST_KCONFIG)" +config ZEPHYR_HAL_ST_MODULE + bool + default y +endmenu +config ZEPHYR_HAL_STM32_MODULE + bool + default y + +config ZEPHYR_HAL_STM32_MODULE_BLOBS + bool +menu "hal_tdk (C:/Users/iteedi/zephyrproject/modules/hal/tdk)" +osource "$(ZEPHYR_HAL_TDK_KCONFIG)" +config ZEPHYR_HAL_TDK_MODULE + bool + default y +endmenu +menu "hal_telink (C:/Users/iteedi/zephyrproject/modules/hal/telink)" +osource "C:/Users/iteedi/zephyrproject/modules/hal/telink/Kconfig" +config ZEPHYR_HAL_TELINK_MODULE + bool + default y +endmenu +config ZEPHYR_TI_MODULE + bool + default y +menu "hal_wch (C:/Users/iteedi/zephyrproject/modules/hal/wch)" +osource "$(ZEPHYR_HAL_WCH_KCONFIG)" +config ZEPHYR_HAL_WCH_MODULE + bool + default y +endmenu +config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE + bool + default y +config ZEPHYR_XTENSA_MODULE + bool + default y +menu "hostap (C:/Users/iteedi/zephyrproject/modules/lib/hostap)" +osource "$(ZEPHYR_HOSTAP_KCONFIG)" +config ZEPHYR_HOSTAP_MODULE + bool + default y +endmenu +menu "liblc3 (C:/Users/iteedi/zephyrproject/modules/lib/liblc3)" +osource "$(ZEPHYR_LIBLC3_KCONFIG)" +config ZEPHYR_LIBLC3_MODULE + bool + default y +endmenu +config ZEPHYR_LIBMCTP_MODULE + bool + default y +config ZEPHYR_LIBMETAL_MODULE + bool + default y +menu "libsbc (C:/Users/iteedi/zephyrproject/modules/lib/libsbc)" +osource "$(ZEPHYR_LIBSBC_KCONFIG)" +config ZEPHYR_LIBSBC_MODULE + bool + default y +endmenu +menu "littlefs (C:/Users/iteedi/zephyrproject/modules/fs/littlefs)" +osource "$(ZEPHYR_LITTLEFS_KCONFIG)" +config ZEPHYR_LITTLEFS_MODULE + bool + default y +endmenu +menu "lora-basics-modem (C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem)" +osource "$(ZEPHYR_LORA_BASICS_MODEM_KCONFIG)" +config ZEPHYR_LORA_BASICS_MODEM_MODULE + bool + default y +endmenu +menu "loramac-node (C:/Users/iteedi/zephyrproject/modules/lib/loramac-node)" +osource "$(ZEPHYR_LORAMAC_NODE_KCONFIG)" +config ZEPHYR_LORAMAC_NODE_MODULE + bool + default y +endmenu +menu "lvgl (C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl)" +osource "C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig" +config ZEPHYR_LVGL_MODULE + bool + default y +endmenu +menu "mbedtls (C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls)" +osource "$(ZEPHYR_MBEDTLS_KCONFIG)" +config ZEPHYR_MBEDTLS_MODULE + bool + default y +endmenu +config ZEPHYR_MCUBOOT_MODULE + bool + default y +config ZEPHYR_MIPI_SYS_T_MODULE + bool + default y +menu "nanopb (C:/Users/iteedi/zephyrproject/modules/lib/nanopb)" +osource "$(ZEPHYR_NANOPB_KCONFIG)" +config ZEPHYR_NANOPB_MODULE + bool + default y +endmenu +menu "nrf_wifi (C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi)" +osource "$(ZEPHYR_NRF_WIFI_KCONFIG)" +config ZEPHYR_NRF_WIFI_MODULE + bool + default y + +config ZEPHYR_NRF_WIFI_MODULE_BLOBS + bool +endmenu +config ZEPHYR_OPEN_AMP_MODULE + bool + default y +menu "openthread (C:/Users/iteedi/zephyrproject/modules/lib/openthread)" +osource "$(ZEPHYR_OPENTHREAD_KCONFIG)" +config ZEPHYR_OPENTHREAD_MODULE + bool + default y +endmenu +menu "percepio (C:/Users/iteedi/zephyrproject/modules/debug/percepio)" +osource "C:/Users/iteedi/zephyrproject/modules/debug/percepio/zephyr/Kconfig" +config ZEPHYR_PERCEPIO_MODULE + bool + default y +endmenu +menu "picolibc (C:/Users/iteedi/zephyrproject/modules/lib/picolibc)" +osource "C:/Users/iteedi/zephyrproject/modules/lib/picolibc/zephyr/Kconfig" +config ZEPHYR_PICOLIBC_MODULE + bool + default y +endmenu +menu "segger (C:/Users/iteedi/zephyrproject/modules/debug/segger)" +osource "$(ZEPHYR_SEGGER_KCONFIG)" +config ZEPHYR_SEGGER_MODULE + bool + default y +endmenu +menu "trusted-firmware-a (C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a)" +osource "$(ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG)" +config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE + bool + default y +endmenu +menu "trusted-firmware-m (C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m)" +osource "$(ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG)" +config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE + bool + default y +endmenu +menu "uoscore-uedhoc (C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc)" +osource "$(ZEPHYR_UOSCORE_UEDHOC_KCONFIG)" +config ZEPHYR_UOSCORE_UEDHOC_MODULE + bool + default y +endmenu +menu "zcbor (C:/Users/iteedi/zephyrproject/modules/lib/zcbor)" +osource "$(ZEPHYR_ZCBOR_KCONFIG)" +config ZEPHYR_ZCBOR_MODULE + bool + default y +endmenu +config ZEPHYR_NRF_HW_MODELS_MODULE + bool + default y diff --git a/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.shield b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.shield new file mode 100644 index 0000000..c1836e5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.shield @@ -0,0 +1 @@ +osource "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/shields/*/Kconfig.shield" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.shield.defconfig b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.shield.defconfig new file mode 100644 index 0000000..d533f21 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.shield.defconfig @@ -0,0 +1 @@ +osource "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/shields/*/Kconfig.defconfig" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.sysbuild.modules b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.sysbuild.modules new file mode 100644 index 0000000..3421db1 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.sysbuild.modules @@ -0,0 +1,174 @@ +config ZEPHYR_ACPICA_MODULE + bool + default y +config ZEPHYR_CMSIS_MODULE + bool + default y +config ZEPHYR_CMSIS_DSP_MODULE + bool + default y +config ZEPHYR_CMSIS_NN_MODULE + bool + default y +config ZEPHYR_CMSIS_6_MODULE + bool + default y +config ZEPHYR_FATFS_MODULE + bool + default y +config ZEPHYR_ADI_MODULE + bool + default y +config ZEPHYR_HAL_AFBR_MODULE + bool + default y +config ZEPHYR_HAL_AMBIQ_MODULE + bool + default y +config ZEPHYR_ATMEL_MODULE + bool + default y +config ZEPHYR_HAL_BOUFFALOLAB_MODULE + bool + default y +config ZEPHYR_HAL_ESPRESSIF_MODULE + bool + default y +config ZEPHYR_HAL_ETHOS_U_MODULE + bool + default y +config ZEPHYR_HAL_GIGADEVICE_MODULE + bool + default y +config ZEPHYR_HAL_INFINEON_MODULE + bool + default y +config ZEPHYR_HAL_INTEL_MODULE + bool + default y +config ZEPHYR_MICROCHIP_MODULE + bool + default y +config ZEPHYR_HAL_NORDIC_MODULE + bool + default y +config ZEPHYR_NUVOTON_MODULE + bool + default y +config ZEPHYR_HAL_NXP_MODULE + bool + default y +config ZEPHYR_OPENISA_MODULE + bool + default y +config ZEPHYR_QUICKLOGIC_MODULE + bool + default y +config ZEPHYR_HAL_RENESAS_MODULE + bool + default y +config ZEPHYR_HAL_RPI_PICO_MODULE + bool + default y +config ZEPHYR_HAL_SIFLI_MODULE + bool + default y +config ZEPHYR_HAL_SILABS_MODULE + bool + default y +config ZEPHYR_HAL_ST_MODULE + bool + default y +config ZEPHYR_HAL_STM32_MODULE + bool + default y +config ZEPHYR_HAL_TDK_MODULE + bool + default y +config ZEPHYR_HAL_TELINK_MODULE + bool + default y +config ZEPHYR_TI_MODULE + bool + default y +config ZEPHYR_HAL_WCH_MODULE + bool + default y +config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE + bool + default y +config ZEPHYR_XTENSA_MODULE + bool + default y +config ZEPHYR_HOSTAP_MODULE + bool + default y +config ZEPHYR_LIBLC3_MODULE + bool + default y +config ZEPHYR_LIBMCTP_MODULE + bool + default y +config ZEPHYR_LIBMETAL_MODULE + bool + default y +config ZEPHYR_LIBSBC_MODULE + bool + default y +config ZEPHYR_LITTLEFS_MODULE + bool + default y +config ZEPHYR_LORA_BASICS_MODEM_MODULE + bool + default y +config ZEPHYR_LORAMAC_NODE_MODULE + bool + default y +config ZEPHYR_LVGL_MODULE + bool + default y +config ZEPHYR_MBEDTLS_MODULE + bool + default y +config ZEPHYR_MCUBOOT_MODULE + bool + default y +config ZEPHYR_MIPI_SYS_T_MODULE + bool + default y +config ZEPHYR_NANOPB_MODULE + bool + default y +config ZEPHYR_NRF_WIFI_MODULE + bool + default y +config ZEPHYR_OPEN_AMP_MODULE + bool + default y +config ZEPHYR_OPENTHREAD_MODULE + bool + default y +config ZEPHYR_PERCEPIO_MODULE + bool + default y +config ZEPHYR_PICOLIBC_MODULE + bool + default y +config ZEPHYR_SEGGER_MODULE + bool + default y +config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE + bool + default y +config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE + bool + default y +config ZEPHYR_UOSCORE_UEDHOC_MODULE + bool + default y +config ZEPHYR_ZCBOR_MODULE + bool + default y +config ZEPHYR_NRF_HW_MODELS_MODULE + bool + default y diff --git a/firmware/canfd_cdc_composite/build/Kconfig/arch/Kconfig b/firmware/canfd_cdc_composite/build/Kconfig/arch/Kconfig new file mode 100644 index 0000000..2ba583b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/arch/Kconfig @@ -0,0 +1,11 @@ +# Load Zephyr Arch Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/rx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/x86/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/xtensa/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/sparc/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/riscv/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/posix/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/mips/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/arm64/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/arch/arc/Kconfig" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig new file mode 100644 index 0000000..54d4e03 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig @@ -0,0 +1,2 @@ +# Load Zephyr board Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/Kconfig" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.defconfig b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.defconfig new file mode 100644 index 0000000..fdb9cb0 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.defconfig @@ -0,0 +1,2 @@ +# Load Zephyr board defconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/Kconfig.defconfig" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.ews b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.ews new file mode 100644 index 0000000..89b7a0c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.ews @@ -0,0 +1,2 @@ +# Load board Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/Kconfig.ews" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.sysbuild b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.sysbuild new file mode 100644 index 0000000..9ce9824 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/boards/Kconfig.sysbuild @@ -0,0 +1,2 @@ +# Load Sysbuild board Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/Kconfig.sysbuild" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/kconfig_module_dirs.cmake b/firmware/canfd_cdc_composite/build/Kconfig/kconfig_module_dirs.cmake new file mode 100644 index 0000000..4cf1869 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/kconfig_module_dirs.cmake @@ -0,0 +1,59 @@ +set(kconfig_env_dirs) +list(APPEND kconfig_env_dirs ZEPHYR_ACPICA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/acpica) +list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis) +list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_DSP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp) +list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_NN_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn) +list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_6_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6) +list(APPEND kconfig_env_dirs ZEPHYR_FATFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/fatfs) +list(APPEND kconfig_env_dirs ZEPHYR_ADI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/adi) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_AFBR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/afbr) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_AMBIQ_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ambiq) +list(APPEND kconfig_env_dirs ZEPHYR_ATMEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/atmel) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/espressif) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_ETHOS_U_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ethos_u) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/gigadevice) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_INFINEON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/infineon) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_INTEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/intel) +list(APPEND kconfig_env_dirs ZEPHYR_MICROCHIP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/microchip) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_NORDIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nordic) +list(APPEND kconfig_env_dirs ZEPHYR_NUVOTON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nuvoton) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_NXP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nxp) +list(APPEND kconfig_env_dirs ZEPHYR_OPENISA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/openisa) +list(APPEND kconfig_env_dirs ZEPHYR_QUICKLOGIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/quicklogic) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_RENESAS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/renesas) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_RPI_PICO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_SIFLI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/sifli) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_SILABS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/silabs) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_ST_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/st) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_STM32_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/stm32) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_TDK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/tdk) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_TELINK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/telink) +list(APPEND kconfig_env_dirs ZEPHYR_TI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ti) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_WCH_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wch) +list(APPEND kconfig_env_dirs ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik) +list(APPEND kconfig_env_dirs ZEPHYR_XTENSA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/xtensa) +list(APPEND kconfig_env_dirs ZEPHYR_HOSTAP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/hostap) +list(APPEND kconfig_env_dirs ZEPHYR_LIBLC3_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/liblc3) +list(APPEND kconfig_env_dirs ZEPHYR_LIBMCTP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libmctp) +list(APPEND kconfig_env_dirs ZEPHYR_LIBMETAL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/libmetal) +list(APPEND kconfig_env_dirs ZEPHYR_LIBSBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libsbc) +list(APPEND kconfig_env_dirs ZEPHYR_LITTLEFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/littlefs) +list(APPEND kconfig_env_dirs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem) +list(APPEND kconfig_env_dirs ZEPHYR_LORAMAC_NODE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/loramac-node) +list(APPEND kconfig_env_dirs ZEPHYR_LVGL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl) +list(APPEND kconfig_env_dirs ZEPHYR_MBEDTLS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls) +list(APPEND kconfig_env_dirs ZEPHYR_MCUBOOT_MODULE_DIR=C:/Users/iteedi/zephyrproject/bootloader/mcuboot) +list(APPEND kconfig_env_dirs ZEPHYR_MIPI_SYS_T_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t) +list(APPEND kconfig_env_dirs ZEPHYR_NANOPB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nanopb) +list(APPEND kconfig_env_dirs ZEPHYR_NRF_WIFI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi) +list(APPEND kconfig_env_dirs ZEPHYR_OPEN_AMP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/open-amp) +list(APPEND kconfig_env_dirs ZEPHYR_OPENTHREAD_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/openthread) +list(APPEND kconfig_env_dirs ZEPHYR_PERCEPIO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/percepio) +list(APPEND kconfig_env_dirs ZEPHYR_PICOLIBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/picolibc) +list(APPEND kconfig_env_dirs ZEPHYR_SEGGER_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/segger) +list(APPEND kconfig_env_dirs ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a) +list(APPEND kconfig_env_dirs ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m) +list(APPEND kconfig_env_dirs ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc) +list(APPEND kconfig_env_dirs ZEPHYR_ZCBOR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/zcbor) +list(APPEND kconfig_env_dirs ZEPHYR_NRF_HW_MODELS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models) diff --git a/firmware/canfd_cdc_composite/build/Kconfig/kconfig_module_dirs.env b/firmware/canfd_cdc_composite/build/Kconfig/kconfig_module_dirs.env new file mode 100644 index 0000000..e33108d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/kconfig_module_dirs.env @@ -0,0 +1,58 @@ +ZEPHYR_ACPICA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/acpica +ZEPHYR_CMSIS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis +ZEPHYR_CMSIS_DSP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp +ZEPHYR_CMSIS_NN_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn +ZEPHYR_CMSIS_6_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6 +ZEPHYR_FATFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/fatfs +ZEPHYR_ADI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/adi +ZEPHYR_HAL_AFBR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/afbr +ZEPHYR_HAL_AMBIQ_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ambiq +ZEPHYR_ATMEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/atmel +ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab +ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/espressif +ZEPHYR_HAL_ETHOS_U_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ethos_u +ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/gigadevice +ZEPHYR_HAL_INFINEON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/infineon +ZEPHYR_HAL_INTEL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/intel +ZEPHYR_MICROCHIP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/microchip +ZEPHYR_HAL_NORDIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nordic +ZEPHYR_NUVOTON_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nuvoton +ZEPHYR_HAL_NXP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/nxp +ZEPHYR_OPENISA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/openisa +ZEPHYR_QUICKLOGIC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/quicklogic +ZEPHYR_HAL_RENESAS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/renesas +ZEPHYR_HAL_RPI_PICO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico +ZEPHYR_HAL_SIFLI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/sifli +ZEPHYR_HAL_SILABS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/silabs +ZEPHYR_HAL_ST_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/st +ZEPHYR_HAL_STM32_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/stm32 +ZEPHYR_HAL_TDK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/tdk +ZEPHYR_HAL_TELINK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/telink +ZEPHYR_TI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/ti +ZEPHYR_HAL_WCH_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wch +ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik +ZEPHYR_XTENSA_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/xtensa +ZEPHYR_HOSTAP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/hostap +ZEPHYR_LIBLC3_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/liblc3 +ZEPHYR_LIBMCTP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libmctp +ZEPHYR_LIBMETAL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/hal/libmetal +ZEPHYR_LIBSBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/libsbc +ZEPHYR_LITTLEFS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/fs/littlefs +ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem +ZEPHYR_LORAMAC_NODE_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/loramac-node +ZEPHYR_LVGL_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl +ZEPHYR_MBEDTLS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls +ZEPHYR_MCUBOOT_MODULE_DIR=C:/Users/iteedi/zephyrproject/bootloader/mcuboot +ZEPHYR_MIPI_SYS_T_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t +ZEPHYR_NANOPB_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nanopb +ZEPHYR_NRF_WIFI_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi +ZEPHYR_OPEN_AMP_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/open-amp +ZEPHYR_OPENTHREAD_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/openthread +ZEPHYR_PERCEPIO_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/percepio +ZEPHYR_PICOLIBC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/picolibc +ZEPHYR_SEGGER_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/debug/segger +ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a +ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m +ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc +ZEPHYR_ZCBOR_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/lib/zcbor +ZEPHYR_NRF_HW_MODELS_MODULE_DIR=C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models diff --git a/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig new file mode 100644 index 0000000..5f457cc --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig @@ -0,0 +1,112 @@ +# Load Zephyr SoC Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.defconfig b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.defconfig new file mode 100644 index 0000000..bb94f77 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.defconfig @@ -0,0 +1,112 @@ +# Load Zephyr SoC defconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.soc b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.soc new file mode 100644 index 0000000..eae65bd --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.soc @@ -0,0 +1,112 @@ +# Load SoC Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.soc" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc" diff --git a/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.sysbuild b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.sysbuild new file mode 100644 index 0000000..f840b6d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/Kconfig/soc/Kconfig.sysbuild @@ -0,0 +1,112 @@ +# Load Sysbuild SoC Kconfig descriptions. +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.sysbuild" +osource "C:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.sysbuild" diff --git a/firmware/canfd_cdc_composite/build/app/libapp.a b/firmware/canfd_cdc_composite/build/app/libapp.a new file mode 100644 index 0000000..c778b48 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/app/libapp.a differ diff --git a/firmware/canfd_cdc_composite/build/build.ninja b/firmware/canfd_cdc_composite/build/build.ninja new file mode 100644 index 0000000..d5bf2c2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/build.ninja @@ -0,0 +1,8598 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.1 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: ews_canfd_cdc_composite +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/ + +############################################# +# Utility command for boards + +build boards: phony CMakeFiles/boards + + +############################################# +# Utility command for shields + +build shields: phony CMakeFiles/shields + + +############################################# +# Utility command for snippets + +build snippets: phony CMakeFiles/snippets + + +############################################# +# Utility command for devicetree_target + +build devicetree_target: phony + + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for guiconfig + +build guiconfig: phony CMakeFiles/guiconfig + + +############################################# +# Utility command for hardenconfig + +build hardenconfig: phony CMakeFiles/hardenconfig + + +############################################# +# Utility command for traceconfig + +build traceconfig: phony CMakeFiles/traceconfig + + +############################################# +# Utility command for config-twister + +build config-twister: phony CMakeFiles/config-twister + + +############################################# +# Utility command for asm + +build asm: phony + + +############################################# +# Utility command for compiler + +build compiler: phony + + +############################################# +# Utility command for compiler-cpp + +build compiler-cpp: phony + + +############################################# +# Utility command for linker + +build linker: phony + + +############################################# +# Utility command for bintools + +build bintools: phony + + +############################################# +# Utility command for code_data_relocation_target + +build code_data_relocation_target: phony + + +############################################# +# Utility command for runners_yaml_props_target + +build runners_yaml_props_target: phony + + +############################################# +# Utility command for pristine + +build pristine: phony CMakeFiles/pristine + + +############################################# +# Utility command for zephyr_property_target + +build zephyr_property_target: phony + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target app + + +############################################# +# Order-only phony target for app + +build cmake_object_order_depends_target_app: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build CMakeFiles/app.dir/src/main.c.obj: C_COMPILER__app_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/main.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles\app.dir\src\main.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir\src + TARGET_COMPILE_PDB = CMakeFiles\app.dir\app.pdb + TARGET_PDB = app\libapp.pdb + +build CMakeFiles/app.dir/src/cdc_handler.c.obj: C_COMPILER__app_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/cdc_handler.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles\app.dir\src\cdc_handler.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir\src + TARGET_COMPILE_PDB = CMakeFiles\app.dir\app.pdb + TARGET_PDB = app\libapp.pdb + +build CMakeFiles/app.dir/src/pfet_control.c.obj: C_COMPILER__app_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/pfet_control.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles\app.dir\src\pfet_control.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir\src + TARGET_COMPILE_PDB = CMakeFiles\app.dir\app.pdb + TARGET_PDB = app\libapp.pdb + +build CMakeFiles/app.dir/src/gs_usb_can.c.obj: C_COMPILER__app_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/gs_usb_can.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles\app.dir\src\gs_usb_can.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir\src + TARGET_COMPILE_PDB = CMakeFiles\app.dir\app.pdb + TARGET_PDB = app\libapp.pdb + +build CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj: C_COMPILER__app_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/usb_gs_usb_class.c || cmake_object_order_depends_target_app + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = CMakeFiles\app.dir\src\usb_gs_usb_class.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir\src + TARGET_COMPILE_PDB = CMakeFiles\app.dir\app.pdb + TARGET_PDB = app\libapp.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target app + + +############################################# +# Link the static library app\libapp.a + +build app/libapp.a: C_STATIC_LIBRARY_LINKER__app_ CMakeFiles/app.dir/src/main.c.obj CMakeFiles/app.dir/src/cdc_handler.c.obj CMakeFiles/app.dir/src/pfet_control.c.obj CMakeFiles/app.dir/src/gs_usb_can.c.obj CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = CMakeFiles\app.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\app.dir\app.pdb + TARGET_FILE = app\libapp.a + TARGET_PDB = app\libapp.pdb + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for CMakeFiles\boards + +build CMakeFiles/boards | ${cmake_ninja_workdir}CMakeFiles/boards: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/list_boards.py --board-root=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite --board-root=C:/Users/iteedi/zephyrproject/zephyr --arch-root=C:/Users/iteedi/zephyrproject/zephyr --soc-root=C:/Users/iteedi/zephyrproject/zephyr" + pool = console + + +############################################# +# Custom command for CMakeFiles\shields + +build CMakeFiles/shields | ${cmake_ninja_workdir}CMakeFiles/shields: CUSTOM_COMMAND + COMMAND = CMakeFiles\shields-7b9b338.bat d60d553cedf014be + pool = console + + +############################################# +# Custom command for CMakeFiles\snippets + +build CMakeFiles/snippets | ${cmake_ninja_workdir}CMakeFiles/snippets: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && "C:\Program Files\CMake\bin\cmake.exe" -E echo bt-ll-sw-split && "C:\Program Files\CMake\bin\cmake.exe" -E echo cdc-acm-console && "C:\Program Files\CMake\bin\cmake.exe" -E echo flash-16M && "C:\Program Files\CMake\bin\cmake.exe" -E echo flash-32M && "C:\Program Files\CMake\bin\cmake.exe" -E echo flash-4M && "C:\Program Files\CMake\bin\cmake.exe" -E echo flash-8M && "C:\Program Files\CMake\bin\cmake.exe" -E echo hci-uart-native-sim && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-flpr && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-flpr-xip && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-log-stm && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-log-stm-dict && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-log-stm-tpiu-dict && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-ppr && "C:\Program Files\CMake\bin\cmake.exe" -E echo nordic-ppr-xip && "C:\Program Files\CMake\bin\cmake.exe" -E echo nus-console && "C:\Program Files\CMake\bin\cmake.exe" -E echo psram-2M && "C:\Program Files\CMake\bin\cmake.exe" -E echo psram-4M && "C:\Program Files\CMake\bin\cmake.exe" -E echo psram-8M && "C:\Program Files\CMake\bin\cmake.exe" -E echo psram-reloc && "C:\Program Files\CMake\bin\cmake.exe" -E echo psram-wifi && "C:\Program Files\CMake\bin\cmake.exe" -E echo ram-console && "C:\Program Files\CMake\bin\cmake.exe" -E echo ram-tracing && "C:\Program Files\CMake\bin\cmake.exe" -E echo rp2-boot-mode-retention && "C:\Program Files\CMake\bin\cmake.exe" -E echo rtt-console && "C:\Program Files\CMake\bin\cmake.exe" -E echo rtt-tracing && "C:\Program Files\CMake\bin\cmake.exe" -E echo semihost-tracing && "C:\Program Files\CMake\bin\cmake.exe" -E echo serial-console && "C:\Program Files\CMake\bin\cmake.exe" -E echo silabs-pti && "C:\Program Files\CMake\bin\cmake.exe" -E echo socketcan-native-sim && "C:\Program Files\CMake\bin\cmake.exe" -E echo usbip-native-sim && "C:\Program Files\CMake\bin\cmake.exe" -E echo video-sw-generator && "C:\Program Files\CMake\bin\cmake.exe" -E echo wifi-credentials && "C:\Program Files\CMake\bin\cmake.exe" -E echo wifi-enterprise && "C:\Program Files\CMake\bin\cmake.exe" -E echo wifi-ip && "C:\Program Files\CMake\bin\cmake.exe" -E echo wifi-ipv4 && "C:\Program Files\CMake\bin\cmake.exe" -E echo wifi-ipv6 && "C:\Program Files\CMake\bin\cmake.exe" -E echo xen_dom0 && "C:\Program Files\CMake\bin\cmake.exe" -E echo xiao-serial-console" + pool = console + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = CMakeFiles\menuconfig-5f29641.bat 8ab6df62bf576d5d + pool = console + + +############################################# +# Custom command for CMakeFiles\guiconfig + +build CMakeFiles/guiconfig | ${cmake_ninja_workdir}CMakeFiles/guiconfig: CUSTOM_COMMAND + COMMAND = CMakeFiles\guiconfig-0b59bc5.bat c2b6b3f5b8760021 + pool = console + + +############################################# +# Custom command for CMakeFiles\hardenconfig + +build CMakeFiles/hardenconfig | ${cmake_ninja_workdir}CMakeFiles/hardenconfig: CUSTOM_COMMAND + COMMAND = CMakeFiles\hardenconfig-9a95698.bat 4118b3b6cc4e9ffe + pool = console + + +############################################# +# Custom command for CMakeFiles\traceconfig + +build CMakeFiles/traceconfig | ${cmake_ninja_workdir}CMakeFiles/traceconfig: CUSTOM_COMMAND + COMMAND = CMakeFiles\traceconfig-e7d6fc9.bat cb014534e79bdf39 + pool = console + + +############################################# +# Phony custom command for CMakeFiles\config-twister + +build CMakeFiles/config-twister | ${cmake_ninja_workdir}CMakeFiles/config-twister: phony zephyr/.config + + +############################################# +# Custom command for CMakeFiles\pristine + +build CMakeFiles/pristine | ${cmake_ninja_workdir}CMakeFiles/pristine: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && "C:\Program Files\CMake\bin\cmake.exe" -DBINARY_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build -DSOURCE_DIR=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite -P C:/Users/iteedi/zephyrproject/zephyr/cmake/pristine.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target zephyr + + +############################################# +# Order-only phony target for zephyr + +build cmake_object_order_depends_target_zephyr: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/validate_libc.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\libc\validate_libc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\libc + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/heap/heap.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\heap\heap.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\heap + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/cbprintf_packaged.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\cbprintf_packaged.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/clock.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\clock.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/printk.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\printk.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/sem.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\sem.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/thread_entry.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\thread_entry.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/cbprintf_complete.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\cbprintf_complete.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/assert.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\assert.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/os/mpsc_pbuf.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\os\mpsc_pbuf.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\os + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/dec.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\dec.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/hex.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\hex.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/rb.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\rb.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/timeutil.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\timeutil.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/bitarray.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\bitarray.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/bitmask.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\bitmask.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/ring_buffer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\ring_buffer.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/last_section_id.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\lib\utils\last_section_id.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\lib\utils + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/configs.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\misc\generated\configs.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\misc\generated + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/stm32cube_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\common\stm32cube_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\common + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/soc_config.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\common\soc_config.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\common + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/stm32_backup_domain.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\common\stm32_backup_domain.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\common + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/soc.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\stm32g0x\soc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\soc\st\stm32\stm32g0x + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_core.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\logging\log_core.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\logging + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_mgmt.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\logging\log_mgmt.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\logging + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_cache.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\logging\log_cache.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\logging + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_msg.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\logging\log_msg.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\logging + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_output.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\logging\log_output.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\logging + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/log_backend_uart.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\logging\backends\log_backend_uart.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\logging\backends + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/tracing_none.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\tracing\tracing_none.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\tracing + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/usb_device.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\usb\device\usb_device.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\usb\device + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/usb_descriptor.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\usb\device\usb_descriptor.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\usb\device + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + +build zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj: C_COMPILER__zephyr_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/usb_transfer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr.dir\subsys\usb\device\usb_transfer.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr.dir\subsys\usb\device + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_PDB = zephyr\libzephyr.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target zephyr + + +############################################# +# Link the static library zephyr\libzephyr.a + +build zephyr/libzephyr.a: C_STATIC_LIBRARY_LINKER__zephyr_ zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\CMakeFiles\zephyr.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr.dir\zephyr.pdb + TARGET_FILE = zephyr\libzephyr.a + TARGET_PDB = zephyr\libzephyr.pdb + + +############################################# +# Utility command for version_h + +build zephyr/version_h: phony zephyr/CMakeFiles/version_h zephyr/include/generated/zephyr/version.h + + +############################################# +# Utility command for syscall_list_h_target + +build zephyr/syscall_list_h_target: phony zephyr/CMakeFiles/syscall_list_h_target zephyr/include/generated/zephyr/syscall_dispatch.c zephyr/include/generated/zephyr/syscall_exports_llext.c zephyr/syscall_weakdefs_llext.c zephyr/include/generated/zephyr/syscall_list.h zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json + + +############################################# +# Utility command for driver_validation_h_target + +build zephyr/driver_validation_h_target: phony zephyr/CMakeFiles/driver_validation_h_target zephyr/include/generated/zephyr/driver-validation.h zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json + + +############################################# +# Utility command for kobj_types_h_target + +build zephyr/kobj_types_h_target: phony zephyr/CMakeFiles/kobj_types_h_target zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json + + +############################################# +# Utility command for device_api_ld_target + +build zephyr/device_api_ld_target: phony zephyr/CMakeFiles/device_api_ld_target zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target offsets + + +############################################# +# Order-only phony target for offsets + +build cmake_object_order_depends_target_offsets: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj: C_COMPILER__offsets_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/offsets/offsets.c || cmake_object_order_depends_target_offsets + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\offsets.dir\arch\arm\core\offsets\offsets.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\offsets.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\offsets.dir\arch\arm\core\offsets + TARGET_COMPILE_PDB = zephyr\CMakeFiles\offsets.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library offsets + +build zephyr/offsets: phony zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj + + +############################################# +# Utility command for offsets_h + +build zephyr/offsets_h: phony zephyr/CMakeFiles/offsets_h zephyr/include/generated/zephyr/offsets.h zephyr/offsets + + +############################################# +# Utility command for linker_zephyr_prebuilt_script_target + +build zephyr/linker_zephyr_prebuilt_script_target: phony zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target zephyr/linker_zephyr_pre0.cmd zephyr/offsets_h zephyr/version_h + +# ============================================================================= +# Object build statements for EXECUTABLE target zephyr_pre0 + + +############################################# +# Order-only phony target for zephyr_pre0 + +build cmake_object_order_depends_target_zephyr_pre0: phony || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__arm__core cmake_object_order_depends_target_arch__arm__core__cortex_m cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_drivers__can cmake_object_order_depends_target_drivers__clock_control cmake_object_order_depends_target_drivers__console cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__hwinfo cmake_object_order_depends_target_drivers__interrupt_controller cmake_object_order_depends_target_drivers__pinctrl cmake_object_order_depends_target_drivers__reset cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_drivers__timer cmake_object_order_depends_target_drivers__usb__device cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__common cmake_object_order_depends_target_lib__libc__picolibc cmake_object_order_depends_target_lib__posix__c_lib_ext cmake_object_order_depends_target_offsets cmake_object_order_depends_target_zephyr zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/linker_zephyr_prebuilt_script_target zephyr/syscall_list_h_target + +build zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_pre0_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_pre0 + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr_pre0.dir\misc\empty_file.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr_pre0.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr_pre0.dir\misc + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr_pre0.dir\ + TARGET_PDB = zephyr\zephyr_pre0.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target zephyr_pre0 + + +############################################# +# Link the executable zephyr\zephyr_pre0.elf + +build zephyr/zephyr_pre0.elf zephyr/zephyr_pre0.map | ${cmake_ninja_workdir}zephyr/zephyr_pre0.map: C_EXECUTABLE_LINKER__zephyr_pre0_ zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj | zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj zephyr/linker_zephyr_pre0.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/kernel/libkernel.a zephyr/arch/common/libisr_tables.a zephyr/linker_zephyr_pre0.cmd || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/syscall_list_h_target + LINK_FLAGS = -gdwarf-4 -Os + LINK_LIBRARIES = zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj -T zephyr/linker_zephyr_pre0.cmd -Wl,-Map,C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a -LC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr zephyr/arch/common/libisr_tables.a -fuse-ld=bfd -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -Wl,-X -Wl,-N -Wl,--orphan-handling=warn -Wl,-no-pie -Wl,--undefined=_sw_isr_table -Wl,--undefined=_irq_vector_table -specs=picolibc.specs -DPICOLIBC_LONG_LONG_PRINTF_SCANF + OBJECT_DIR = zephyr\CMakeFiles\zephyr_pre0.dir + POST_BUILD = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && "C:\Program Files\CMake\bin\cmake.exe" -E true" + PRE_LINK = cd . + RESTAT = 1 + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr_pre0.dir\ + TARGET_FILE = zephyr\zephyr_pre0.elf + TARGET_PDB = zephyr\zephyr_pre0.pdb + + +############################################# +# Utility command for linker_zephyr_final_script_target + +build zephyr/linker_zephyr_final_script_target: phony zephyr/CMakeFiles/linker_zephyr_final_script_target zephyr/linker.cmd zephyr/offsets_h zephyr/version_h zephyr/zephyr_pre0.elf + +# ============================================================================= +# Object build statements for EXECUTABLE target zephyr_final + + +############################################# +# Order-only phony target for zephyr_final + +build cmake_object_order_depends_target_zephyr_final: phony || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__arm__core cmake_object_order_depends_target_arch__arm__core__cortex_m cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_drivers__can cmake_object_order_depends_target_drivers__clock_control cmake_object_order_depends_target_drivers__console cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__hwinfo cmake_object_order_depends_target_drivers__interrupt_controller cmake_object_order_depends_target_drivers__pinctrl cmake_object_order_depends_target_drivers__reset cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_drivers__timer cmake_object_order_depends_target_drivers__usb__device cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__common cmake_object_order_depends_target_lib__libc__picolibc cmake_object_order_depends_target_lib__posix__c_lib_ext cmake_object_order_depends_target_offsets cmake_object_order_depends_target_zephyr zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/isr_tables.c zephyr/isr_tables_swi.ld zephyr/isr_tables_vt.ld zephyr/kobj_types_h_target zephyr/linker_zephyr_final_script_target zephyr/syscall_list_h_target zephyr/zephyr_pre0.elf + +build zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_final_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_final + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr_final.dir\misc\empty_file.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr_final.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr_final.dir\misc + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr_final.dir\ + TARGET_PDB = zephyr\zephyr.pdb + +build zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj: C_COMPILER__zephyr_final_unscanned_ C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/isr_tables.c || cmake_object_order_depends_target_zephyr_final + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\CMakeFiles\zephyr_final.dir\isr_tables.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\CMakeFiles\zephyr_final.dir + OBJECT_FILE_DIR = zephyr\CMakeFiles\zephyr_final.dir + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr_final.dir\ + TARGET_PDB = zephyr\zephyr.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target zephyr_final + + +############################################# +# Link the executable zephyr\zephyr.elf + +build zephyr/zephyr.elf zephyr/zephyr.map zephyr/zephyr.hex zephyr/zephyr.bin zephyr/zephyr.stat | ${cmake_ninja_workdir}zephyr/zephyr.map ${cmake_ninja_workdir}zephyr/zephyr.hex ${cmake_ninja_workdir}zephyr/zephyr.bin ${cmake_ninja_workdir}zephyr/zephyr.stat: C_EXECUTABLE_LINKER__zephyr_final_ zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj | zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj zephyr/linker.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/kernel/libkernel.a zephyr/arch/common/libisr_tables.a zephyr/linker.cmd || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/offsets zephyr/syscall_list_h_target zephyr/zephyr_pre0.elf + LINK_FLAGS = -gdwarf-4 -Os + LINK_LIBRARIES = zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj -T zephyr/linker.cmd -Wl,-Map,C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr_final.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a -LC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr -Wl,--print-memory-usage zephyr/arch/common/libisr_tables.a -fuse-ld=bfd -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -Wl,-X -Wl,-N -Wl,--orphan-handling=warn -Wl,-no-pie -Wl,--undefined=_sw_isr_table -Wl,--undefined=_irq_vector_table -specs=picolibc.specs -DPICOLIBC_LONG_LONG_PRINTF_SCANF + OBJECT_DIR = zephyr\CMakeFiles\zephyr_final.dir + POST_BUILD = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && "C:\Program Files\CMake\bin\cmake.exe" -E echo "Generating files from C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf for board: ews" && "C:\Program Files\CMake\bin\cmake.exe" -E copy zephyr_final.map zephyr.map && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-objcopy.exe --output-target=ihex --remove-section=.comment --remove-section=COMMON zephyr.elf zephyr.hex && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-objcopy.exe --gap-fill 0xFF --output-target=binary --remove-section=.comment --remove-section=COMMON zephyr.elf zephyr.bin && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-readelf.exe -e zephyr.elf > zephyr.stat && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/check_init_priorities.py --elf-file=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf" + PRE_LINK = cd . + RESTAT = 1 + TARGET_COMPILE_PDB = zephyr\CMakeFiles\zephyr_final.dir\ + TARGET_FILE = zephyr\zephyr.elf + TARGET_PDB = zephyr\zephyr.pdb + + +############################################# +# Utility command for initlevels + +build zephyr/initlevels: phony zephyr/CMakeFiles/initlevels zephyr/zephyr.elf + + +############################################# +# Utility command for run + +build zephyr/run: phony zephyr/CMakeFiles/run + + +############################################# +# Utility command for build_info_yaml_saved + +build zephyr/build_info_yaml_saved: phony zephyr/CMakeFiles/build_info_yaml_saved + + +############################################# +# Utility command for edit_cache + +build zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/edit_cache: phony zephyr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/rebuild_cache: phony zephyr/CMakeFiles/rebuild_cache.util + + +############################################# +# Phony custom command for zephyr\CMakeFiles\version_h + +build zephyr/CMakeFiles/version_h | ${cmake_ninja_workdir}zephyr/CMakeFiles/version_h: phony zephyr/include/generated/zephyr/version.h + + +############################################# +# Custom command for zephyr\include\generated\zephyr\version.h + +build zephyr/include/generated/zephyr/version.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/version.h: CUSTOM_COMMAND C$:/Users/iteedi/zephyrproject/zephyr/VERSION C$:/Users/iteedi/zephyrproject/zephyr/.git/index + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && "C:\Program Files\CMake\bin\cmake.exe" -DZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr -DOUT_FILE=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/version.h -DVERSION_TYPE=KERNEL -DVERSION_FILE=C:/Users/iteedi/zephyrproject/zephyr/VERSION -DKERNEL_VERSION_CUSTOMIZATION="" -P C:/Users/iteedi/zephyrproject/zephyr/cmake/gen_version_h.cmake" + DESC = Generating include/generated/zephyr/version.h + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\syscall_list_h_target + +build zephyr/CMakeFiles/syscall_list_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/syscall_list_h_target: phony zephyr/include/generated/zephyr/syscall_list.h + + +############################################# +# Custom command for zephyr\include\generated\zephyr\syscall_dispatch.c + +build zephyr/include/generated/zephyr/syscall_dispatch.c zephyr/include/generated/zephyr/syscall_exports_llext.c zephyr/syscall_weakdefs_llext.c zephyr/include/generated/zephyr/syscall_list.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_dispatch.c ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_exports_llext.c ${cmake_ninja_workdir}zephyr/syscall_weakdefs_llext.c ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_list.h: CUSTOM_COMMAND zephyr/misc/generated/syscalls.json + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_syscalls.py --json-file C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls.json --base-output include/generated/zephyr/syscalls --syscall-dispatch include/generated/zephyr/syscall_dispatch.c --syscall-exports-llext include/generated/zephyr/syscall_exports_llext.c --syscall-weakdefs-llext syscall_weakdefs_llext.c --syscall-list C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_list.h --split-type k_timeout_t --split-type k_ticks_t && "C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_list.h C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/syscall_list.h" + DESC = Generating include/generated/zephyr/syscall_dispatch.c, include/generated/zephyr/syscall_exports_llext.c, syscall_weakdefs_llext.c, include/generated/zephyr/syscall_list.h + restat = 1 + + +############################################# +# Custom command for zephyr\misc\generated\syscalls.json + +build zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls.json ${cmake_ninja_workdir}zephyr/misc/generated/struct_tags.json: CUSTOM_COMMAND zephyr/misc/generated/syscalls_subdirs.trigger C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/acpi/acpi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/acpi/acpi_osal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/app_memory/app_memdomain.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/app_memory/mem_domain.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/app_memory/partitions.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/arc_addr_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-32-bit-gnu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-32-bit-mwdt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-64-bit-gnu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-64-bit-mwdt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/assembler.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/cluster.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/sys-io-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/tool-compat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/arc_connect.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/arcv2_irq_unit.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/asm_inline.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/asm_inline_gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/aux_regs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/dsp/arc_dsp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/error.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/misc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu/arc_core_mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu/arc_mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/secureshield/arc_secure.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/vpx/arc_vpx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arch_interface.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/asm_inline.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/asm_inline_gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/barrier.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/armv7_v8_timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/cpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/lib_helpers.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/tpidruro.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/cpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/fpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/memory_map.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/nvic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/error.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/gdbstub.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/misc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mmu/arm_mem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mmu/arm_mmu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu_mem_cfg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu_v7m.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu_v8.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/nxp_mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/nmi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/arm-smccc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/arm_mem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/arm_mmu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/asm_inline.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/asm_inline_gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/barrier.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/cache.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/cortex_r/arm_mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/cpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/error.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/hypercall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/lib_helpers.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/misc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/mm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/thread_stack.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/tpidrro_el0.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/cache.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/addr_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/exc_handle.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/ffs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/init.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/pm_s2ram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/semihost.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/sys_bitops.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/xip.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/cpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/mips/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/mips/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/mips/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/mips/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/asm_inline.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/asm_inline_gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/posix_soc_if.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/posix_trace.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/atomic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/csr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/elf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/error.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged/asm_inline.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged/asm_inline_gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/error.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/misc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/sw_nmi_table.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc/sparc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/cet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/cpuid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/efi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/asm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/gdbstub.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/segmentation.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel_vtd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/legacy_bios.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/memmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/mmustructs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/msr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/multiboot.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/multiboot_info.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/thread_stack.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/x86_acpi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/x86_acpi_osal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/arch_inlines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/atomic_xtensa.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/cache.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/exception.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/gdbstub.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/mpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/thread_stack.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa/xtensa_mmu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/audio/codec.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/audio/dmic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/audio/midi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bindesc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/addr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/assigned_numbers.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/att.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/aics.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/audio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/bap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/bap_lc3_preset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/cap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/ccid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/ccp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/csip.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/gmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/gmap_lc3_preset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/has.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/lc3.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/mcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/mcs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/media_proxy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/micp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/pacs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/pbp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/tbs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/tmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/vcp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio/vocs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/bluetooth.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/buf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/byteorder.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/a2dp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/a2dp_codec_sbc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/avdtp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/avrcp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/classic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/goep.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/hfp_ag.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/hfp_hf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/l2cap_br.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/obex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/rfcomm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic/sdp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/conn.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/controller.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/crypto.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/cs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/direction.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/ead.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/gap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/gatt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/hci.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/hci_raw.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/hci_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/hci_vs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/iso.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/l2cap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/access.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob_io_flash.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/brg_cfg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/brg_cfg_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/brg_cfg_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cdb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cfg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cfg_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cfg_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfd_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu_metadata.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/health_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/health_faults.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/health_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/heartbeat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/keys.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/large_comp_data_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/large_comp_data_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/main.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/msg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/od_priv_proxy_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/od_priv_proxy_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/op_agg_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/op_agg_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/priv_beacon_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/priv_beacon_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/proxy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/rpr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/rpr_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/rpr_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sar_cfg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sar_cfg_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sar_cfg_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/shell.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sol_pdu_rpl_cli.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sol_pdu_rpl_srv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/statistic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/bas.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/cts.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/dis.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/hrs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/ias.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus/inst.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/ots.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/testing.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/uuid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/cache.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/canbus/isotp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/console/console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/console/tty.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/cpu_freq/cpu_freq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/cpu_freq/policy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/cpu_freq/pstate.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/crypto/cipher.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/crypto/crypto.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/crypto/hash.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/data/cobs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/data/json.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/data/jwt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/data/navigation.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/coredump.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/coresight/cs_trace_defmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/cpu_load.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/gcov.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/gdbstub.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/mipi_stp_decoder.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/object_tracing.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/sparse.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/stack.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/symtab.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/thread_analyzer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/device.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/can.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/display.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/fixed-partitions.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/hwspinlock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/interrupt_controller.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/io-channels.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/mbox.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/nvmem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/ordinals.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/port-endpoint.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/pwms.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/spi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dfu/flash_img.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dfu/mcuboot.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/display/cfb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/display/mb_display.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/display/mipi_display.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/display/ssd16xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/adc_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/adc_npcx_threshold.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/ads131m02.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/ads1x4s0x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/current_sense_amplifier.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/current_sense_shunt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/lmp90xxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/mcp356xr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc/voltage_divider.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/auxdisplay.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/bbram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/bluetooth.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/bluetooth/hci_driver_bluenrg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/cache.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can/can_fake.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can/can_mcan.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can/can_sja1000.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can/transceiver.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/cellular.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/charger.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/adi_max32_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/arm_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/atmel_sam_pmc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_agilex_ll.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_adsp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_ambiq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_bflb_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_ifx_cat1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_litex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_numaker.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_rts5912.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_silabs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/esp32_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/gd32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/lpc11u6x_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_sam_d5x_e5x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_sam_pmc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_xec_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mspm0_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/nrf_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/nxp_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/nxp_clock_controller_sources.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_cpg_mssr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_ra_cgc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_rx_cgc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_rz_cgc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/sf32lb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/smartbond_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control/stm32_clock_control.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator/fake_comp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator/mcux_acmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator/nrf_comp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator/nrf_lpcomp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console/console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console/ipm_console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console/native_posix_console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console/posix_arch_console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console/uart_console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console/uart_mcumgr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/coredump.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/counter.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/crc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dac.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dac/dac161s997.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dai.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/debug/debug_nrf_etr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/debug/stmesp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/disk.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/disk/sdmmc_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/display.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_esp32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_gd32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_intel_lpss.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_mcux_lpc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_mcux_pxp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_mcux_smartdma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_npcx_gdma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_silabs_ldma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_smartbond.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma/sf32lb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/edac.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/edac/edac_synopsys.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/eeprom.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/eeprom/eeprom_fake.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/emul_bbram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/emul_fuel_gauge.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/emul_sensor.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/emul_stub_device.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/entropy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/espi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/espi_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/espi_saf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_adin2111.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_intel_plat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_lan865x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_nxp_enet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_nxp_enet_qos.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet/nxp_imx_netc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/clk.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/nxp/cpu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/power.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/protocol.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/shmem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/transport.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/util.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/tisci/tisci.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/andes_flash_xip_api_ex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/flash_simulator.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/it51xxx_flash_api_ex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/mchp_flash.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/mchp_nvmctrl_g1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/npcx_flash_api_ex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/nrf_qspi_nor.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/ra_flash_api_extensions.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/rts5912_flash_api_ex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash/stm32_flash_api_extensions.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/fpga.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/fuel_gauge.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gnss.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gnss/gnss_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gnss/gnss_publish.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_ambiq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_cmsdk_ahb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_intel.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_mcux_lpc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_nct38xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_pcal64xxa.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_rts5912.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_sx1509b.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_utils.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/haptics.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/haptics/drv2605.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/hwinfo.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/hwspinlock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c/i2c_nrfx_twim.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c/rtio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c/stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c/target/eeprom.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2s.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/addresses.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/ccc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/devicetree.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/error_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/hdr_ddr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/ibi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/rtio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c/target_device.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ieee802154/cc1200.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/dw_ace.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gd32_exti.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gicv3_its.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gpio_intc_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_esp32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_exti_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_mchp_xec_ecia.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_nxp_siul2_eirq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_rx_icu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_rz_ext_irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_vim.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_wkpu_nxp_s32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_xmc4xxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intel_vtd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/ioapic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/loapic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/nxp_pint.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/riscv_clic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/riscv_plic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/sam0_eic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/sysapic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/wch_exti.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/wuc_ite_it51xxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/wuc_ite_it8xxx2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ipm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led/is31fl3733.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led/lp50xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led_strip.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led_strip/tlc5971.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/loopback_disk.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/lora.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mbox.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mdio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/memc/memc_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/ad559x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/adp5585.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/aw9523b.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/axp192.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/bd8lb600fs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/ds3231.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/max22017.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/max31790.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/mc146818.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/mfd_ite_it8801.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/mfd_maxq10xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/nct38xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/npm13xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/npm2100.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/nxp_lp_flexcomm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/pca9422.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd/tle9104.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy/intel/mic_privacy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mipi_dbi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi/mipi_dsi_mcux_2l.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/devmux/devmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/flexram/nxp_flexram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_copro.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_dl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_memory.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_reference_api.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/grove_lcd/grove_lcd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn/renesas_elc/renesas_elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_flexio/nxp_flexio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/nxp_rtxxx_dsp_ctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/pio_rpi_pico/pio_rpi_pico.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_ra_external_interrupt/renesas_ra_external_interrupt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_dtc/renesas_rx_dtc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_external_interrupt/renesas_rx_external_interrupt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/stm32_wkup_pins/stm32_wkup_pins.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/timeaware_gpio/timeaware_gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mm/mm_drv_bank.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mm/mm_drv_intel_adsp_mtl_tlb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mm/rat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mm/system_mm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/modem/hl7800.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/modem/hl78xx_apis.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/modem/simcom-sim7080.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mspi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mspi/devicetree.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mspi/mspi_dw.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mspi_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/opamp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/cap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/controller.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/endpoint/pcie_ep.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/msi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/pcie.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/ptm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/vc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/peci.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_esp32_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_nxp_port_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_nxp_siul2_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_rcar_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_soc_bflb_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_soc_sam_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops/psci.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/power/atmel_sam_supc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ps2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/psi5/psi5.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ptp_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pwm/max31790.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pwm/pwm_fake.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/regulator.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/regulator/fake.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/regulator/pca9420.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/reset/mchp_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/reset/mchp_rstc_g1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/retained_mem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/retained_mem/nrf_retained_mem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc/maxim_ds3231.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc/mcp7940n.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc/mcux_snvs_rtc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc/rtc_fake.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sdhc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/adc_cmp_npcx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/adltc2990.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/afbr_s50.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/battery.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/bd8lb600fs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/bmm350.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/bmp581_user.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/ccs811.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/ens160.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/explorir_m.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/f75303.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/fcx_mldx5.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/fdc2x1x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/grow_r502a.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/icm4268x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/icm42x70.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/ina2xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/it8xxx2_vcmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/lis2dh.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/lm95234.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/max17055.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/max31790.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/max31865.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/max32664c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mcp9600.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mcux_acmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mcux_lpcmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mhz19b.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mlx90394.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mmc56x3.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/mtch9010.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/npm13xx_charger.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/npm2100_vbat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/paj7620.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/pat9136.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/pzem004t.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/qdec_mcux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/qdec_nxp_tpm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/scd4x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/sgp40.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/sht4x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tcs3400.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tdk_apex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/ti_hdc302x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tle9104.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tmag5273.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tmp108.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tmp11x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tsl2540.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/tsl2591.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/veaa_x_3.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml6031.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml6046.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml60xx-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml7700.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/vl53l0x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/w1_sensor.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/wsen_hids_2525020210002.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/wsen_pads_2511020213301.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/wsen_tids_2521020222501.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor/xbr818.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor_attribute_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor_data_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sent/sent.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_altera.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_async_rx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_async_to_irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_ifx_cat1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_intel_lw.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_ns16550.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_agilex_mailbox.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_agilex_smc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_driver.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_proto.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/smbus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/spi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/spi/rtio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/spi_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/stepper.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_drv84xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_fake.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_trinamic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/swdp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/syscon.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/tee.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer/arm_arch_timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer/ifx_tcpwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer/nrf_grtc_timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer/nrf_rtc_timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer/nxp_os_timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer/system_timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart/cdc_acm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart/serial_test.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart/uart_bridge.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart/uart_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart_emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart_pipe.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb/emul_bc12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb/udc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb/udc_buf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb/uhc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb/usb_bc12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb/usb_dc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c/tcpci_priv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_pd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_ppc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_tc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_tcpc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_vbus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/video-controls.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/video.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/video/stm32_dcmipp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtio/virtio_config.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtio/virtqueue.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtualization/ivshmem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/w1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/watchdog.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus/qspi_if.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus/rpu_hw_if.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx/off_raw_tx_api.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp/basicmath.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp/basicmath_f16.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp/dsp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp/print_format.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp/types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp/utils.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/acpi/acpi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ad4130-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ad4170-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ad7124-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ads1x4s0x_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/b91-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/gd32f3x0.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mcp356xr-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mcux-adc16.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mcux-lpadc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-haltium.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-nrf54l.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc-v3.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nxp,gau-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/silabs-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/smartbond-adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32f1_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32f4_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32h7_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32u5_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/battery/battery.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/adi_max32_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ast10x0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/atmel_sam_pmc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl60x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl61x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl70x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_clock_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ch32v00x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ch32v20x_30x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c2_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c3_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c6_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32h2_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s2_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s3_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32-clocks-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32a50x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32e10x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32e50x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32f3x0-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32f403-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32f4xx-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32l23x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32vf103-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_boards.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_psc3xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_pse8xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx8ulp_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx943_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx95_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx_ccm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx_ccm_rev2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/intel_socfpga_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ite-it51xxx-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_mcg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_pcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_scg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_sim.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/lpc11u6x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_sam_d5x_e5x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_xec_pcr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mcux_lpc_syscon_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/microchip_sam_pmc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mspm0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/npcm_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/npcx_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nrf-auxpll.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nrfs-audiopll.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m2l31x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m333x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m46x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m55m1x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_mc_cgm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k146_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k148_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k344_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32z2_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/r8a7795_cpg_mssr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/r8a779f0_cpg_mssr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ra_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_cpg_mssr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rza2m_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rza_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rzg_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rztn_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rzv_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rpi_pico_clock_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rpi_pico_rp2040_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rpi_pico_rp2350_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rts5912_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rx_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/scg_k4.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/sf32lb-clocks-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/sf32lb52x-clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/common-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/siwx91x-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg21-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg22-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg23-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg24-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg26-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg27-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg28-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg29-clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32c0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f10x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f1_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f37x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f3_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f410_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f427_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f4_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f7_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_b1x_c1x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g4_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32h5_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32h7_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32h7rs_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l1_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l4_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l4plus_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l5_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32mp13_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32mp2_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32n6_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32u0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32u3_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32u5_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wb0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wb_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wba_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wl_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator/it51xxx-vcmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator/nrf-comp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator/silabs-acmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dac/dacx0508.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dac/silabs-vdac.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dai/esai.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/display/ili9xxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/display/panel.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/atmel_samx7x_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/ch32v003-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/dma_smartbond.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/gd32_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/infineon-xmc4xxx-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32650_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32655_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32657_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32660_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32662_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32666_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32670_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32672_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32675_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32680_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32690_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max78000_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max78002_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/renesas_rz_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/rpi-pico-dma-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/rpi-pico-dma-rp2040.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/rpi-pico-dma-rp2350.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/sf32lb-dma-config.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/sf32lb52x-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/common-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg21-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg22-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg23-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg24-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg26-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg27-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg28-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg29-dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/espi/npcx_espi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet/dsa_tag_proto.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet/nxp_enet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet/xlnx_gem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller/npcx_fiu_qspi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller/ospi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller/xspi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/adi-max32-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/adi-sdp-120.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/andestech-atcgpio100.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arducam-ffc-40pin-connector.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-header-r3.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-mkr-header.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-nano-header.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/atmel-sam-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/atmel-sam0-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/digilent-pmod.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/dvp-20pin-connector.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ene-kb106x-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ene-kb1200-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/espressif-esp32-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/infineon-xmc4xxx-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ite-it8xxx2-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/microchip-sam-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/microchip-xec-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-npm13xx-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-npm2100-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-npm6001-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-nrf-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/numicro-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nuvoton-npcx-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nxp-imx-igpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nxp-kinetis-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nxp-siul2-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/pca-series-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/raspberrypi-csi-connector.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/realtek-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-ra-gpio-ioport.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rtk0eg0019b01002bj.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rz-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rza2m-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rzt2m-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rztn-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/semtech-sx1509b.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/snps-designware-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/st-morpho-header.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/stm32-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ti-cc13xx-cc26xx-gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/it51xxx-i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/it8xxx2-i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/npcx-i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/cst816s-gesture-codes.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/esp32-touch-sensor-input.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/keymap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/stm32-tsc-defines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/inputmux/inputmux_trigger_ports.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/arm-gic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c2-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c3-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c6-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32h2-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-xtensa-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s2-xtensa-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/infineon-xmc4xxx-intc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/intel-ioapic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/it8xxx2-wuc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ite-intc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ite-it51xxx-intc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ite-it51xxx-wuc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/mchp-xec-ecia.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/openisa-intmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ti-vim.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ipc_service/static_vrings.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/led/led.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/led/seagate_legend_b1414.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/led/worldsemi_ws2812c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/lora/sx126x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/lvgl/lvgl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-arm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-riscv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-sw.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-xtensa.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/adi-max32-hpb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/nxp,flexram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/renesas,ra-sdram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/stm32-fmc-nor-psram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/stm32-fmc-sdram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd/mfd_it8801_altctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd/mfd_mchp_sam_flexcom.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dbi/mipi_dbi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dsi/mipi_dsi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/ifx_cyw20829.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-domain-id-nrf54h20.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-domain-id-nrf9230.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-nrf-ficr-nrf54h20.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-nrf-ficr-nrf9230-engb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-owner-id-nrf54h20.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-owner-id-nrf9230.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nxp_rtxxx_dsp_ctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra2a1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra2l1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4e1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4e2-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4l1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4m1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4m2-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4m3-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4w1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6e1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6e2-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m2-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m3-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m4-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m5-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8d1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8m1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8t1-elc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/opamp/opamp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pcie/pcie.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo3-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo4-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo5-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-mps2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-mps3-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-mps4-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-v2m_beetle-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/b91-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/cc13xx_cc26xx-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/cc23x0-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ch32v003-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ch32v00x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ch32v20x_30x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/emsdp-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ene-kb106x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ene-kb1200-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c2-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c3-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c3-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c6-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c6-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32h2-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32h2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s2-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/gecko-pinctrl-s1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/gecko-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ifx_cat1-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/imx8qm-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/imx8qxp-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/it8xxx2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/lpc11u6x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/max32-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/mchp-xec-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/mspm0-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/npcx-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/numaker-m46x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/numicro-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/nxp-siul2-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/pinctrl-zynq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/pinctrl-zynqmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/quicklogic-eos-s3-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/realtek-rts5912-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas-rzt2m-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a77951.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a77961.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a779f0.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-ra.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rcar-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rza-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rza2m.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzg-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzg2-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzn-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzt-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzv-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzv2h.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzv2n.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-pinctrl-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2040-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2350-pinctrl-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2350a-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2350b-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rv32m1-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sf32lb-common-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sf32lb52x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/si32-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sifive-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs-pinctrl-dbus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs-pinctrl-siwx91x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/siwx91x-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg21-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg22-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg23-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg24-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg26-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg27-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg28-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg29-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/smartbond-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32f1-afio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32f1-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sy1xx-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ti-cc32xx-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ti-k3-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/xmc4xxx-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/atmel_sam_supc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx943_power.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx95_power.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx_scu_rsrc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx_spc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/nxp_rw_pmu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32_pwr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/it51xxx_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/it8xxx2_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm_ifx_tcpwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/ra_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/renesas_rz_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/rx_mtu_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/qspi/nxp-s32-qspi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/rdc/imx_rdc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/adp5360.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/axp192.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/max20335.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm1100.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm13xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm2100.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm6001.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/nxp_vref.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/rpi_pico.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/silabs_dcdc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reserved-memory/nordic-owned-memory.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/ast10x0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32a50x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32e10x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32e50x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32f3x0.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32f403.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32f4xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32l23x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32vf103.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/intel_socfpga_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/mchp_mss_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/npcx4_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/npcx7_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/npcx9_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m2l31x_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m333x_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m46x_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m55m1x_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/nxp_syscon_reset_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/rp2040_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/rp2350_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/sf32lb_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32c0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32f0_1_3_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32f2_4_7_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g4_l4_5_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32h5_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32h7_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32h7rs_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32l0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32l1_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32mp13_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32mp1_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32mp2_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32n6_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32u0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32u3_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32u5_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32wb0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32wb_l_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32wba_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl345.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl362.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl367.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl372.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/afbr_s50.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/apds9253.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/bmp581.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/bq274xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm42686.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm42688.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm4268x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm45686.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/iis2dlpc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/iis2iclx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/iis3dwb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ina226.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ina230.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ina237.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ism330dhcx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/it51xxx_tach.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/it8xxx2_tach.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/it8xxx2_vcmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2de12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2dh.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2ds12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2du12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2dux12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2dw12.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lps22hh.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lps2xdf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dso.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dso16is.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dsv16x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm9ds1.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/mc3419.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/mcp9600.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/mtch9010.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/npcx_tach.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_nrf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_nxp_s32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/rm3100.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/sensor_axis_align.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/stts22h.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/tmag5273.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/tmp114.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/tmp11x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sent/sent.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/spi/spi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/timer/nuclei-systimer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/timer/stm32-timer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c/nxp_nx20p3483.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c/pd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb/audio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb/usb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/video/video-interfaces.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fatal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fatal_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/ext2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/fcb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/fs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/fs_interface.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/fs_sys.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/littlefs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/nvs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/virtiofs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs/zms.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss/rtk/decoder.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss/rtk/rtk.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss/rtk/rtk_publish.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/init.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/cy8cmbr3xxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_analog_axis.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_analog_axis_settings.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_hid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_kbd_matrix.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_keymap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_pat912x.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_paw32xx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_pmw3610.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_renesas_ra_ctsu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_renesas_rx_ctsu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input/input_touch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/instrumentation/instrumentation.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/internal/syscall_handler.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/backends/intel_adsp_host_ipc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/icmsg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/icmsg_me.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/ipc_rpmsg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/ipc_service.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/ipc_service_backend.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/ipc_static_vrings.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/pbuf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/rpmsg_service.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/irq_multilevel.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/irq_nextlevel.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/irq_offload.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/internal/mm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/mm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/mm/demand_paging.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/obj_core.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/smp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/stats.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/thread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/thread_stack.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel_includes.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel_structs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel_version.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/libsbc/sbc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/devicetree_regions.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/iterable_sections.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-defs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-devnull.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool-gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool-lld.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool-mwdt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/section_tags.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/sections.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/utils.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/buf_loader.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/elf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/fs_loader.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/inspect.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/llext.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/llext_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/loader.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext/symbol.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_adsp_hda.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_adsp_mtrace.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_ble.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_mqtt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_net.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_std.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_backend_ws.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_core.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_ctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_frontend.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_frontend_stmesp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_frontend_stmesp_demux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_instance.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_link.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_msg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_multidomain_helper.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_output.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_output_custom.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_output_dict.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/lorawan/emul.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/lorawan/lorawan.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/math/ilog2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/math/interpolation.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mem_mgmt/mem_attr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mem_mgmt/mem_attr_heap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd/backend.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd/ec_host_cmd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd/simulator.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/autohandler.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/config.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/event.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/hawkbit.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt/enum_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt/enum_mgmt_callbacks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt_callbacks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt_hash_checksum.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt_callbacks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt_client.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt_callbacks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt_client.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt/settings_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt/settings_mgmt_callbacks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt/shell_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/stat_mgmt/stat_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/zephyr/zephyr_basic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/callbacks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/handlers.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/mgmt_defines.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp/smp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp/smp_client.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/serial.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_bt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_dummy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_shell.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_udp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/osdp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/updatehub.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/misc/lorem_ipsum.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modbus/modbus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/at/user_pipe.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/backend/tty.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/backend/uart.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/chat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/cmux.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/pipe.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/pipelink.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ppp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/stats.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ubx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ubx/checksum.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ubx/keys.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ubx/protocol.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/multi_heap/shared_multi_heap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/canbus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/capture.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/coap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/coap_client.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/coap_link_format.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/coap_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/coap_service.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/conn_mgr/connectivity_wifi_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/conn_mgr_connectivity.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/conn_mgr_connectivity_impl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/conn_mgr_monitor.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dhcpv4.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dhcpv4_server.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dhcpv6.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dns_resolve.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dns_sd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dsa.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dsa_core.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dsa_tag_netc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/dummy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ethernet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ethernet_bridge.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ethernet_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ethernet_vlan.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/gptp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/hdlc_rcp_if/hdlc_rcp_if.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/hostname.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/client.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/frame.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/hpack.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/method.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/parser.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/parser_state.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/parser_url.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/server.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/service.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http/status.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/icmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ieee802154.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ieee802154_ie.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ieee802154_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ieee802154_pkt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ieee802154_radio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ieee802154_radio_openthread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/igmp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ipv4_autoconf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/latmon.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/lldp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/loopback.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/lwm2m.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/lwm2m_path.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/mdio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/mdns_responder.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/midi2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/mii.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/mld.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/mqtt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/mqtt_sn.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_config.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_context.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_core.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_event.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_if.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_ip.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_l2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_linkaddr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_offload.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_pkt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_pkt_filter.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_stats.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_time.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/net_timeout.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ocpp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/offloaded_netdev.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/openthread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/phy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ppp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/collector.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/counter.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/formatter.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/gauge.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/histogram.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/label.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/metric.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus/summary.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/promiscuous.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ptp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/ptp_time.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/sntp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket_net_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket_offload.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket_poll.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket_select.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket_service.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socket_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socketcan.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socketcan_utils.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/socketutils.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/tftp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/tls_credentials.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/trickle.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/udp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/virtual.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/virtual_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/websocket.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/wifi.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/wifi_certs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/wifi_credentials.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/wifi_mgmt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/wifi_nm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/wifi_utils.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/zperf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net_buf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/nvmem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/platform/hooks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm/device.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm/device_runtime.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm/pm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm/policy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm/state.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i2c_gpio_common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i2c_gpio_controller.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i2c_gpio_target.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_uart.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_usb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/portability/cmsis_os.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/portability/cmsis_os2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/portability/cmsis_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/aio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/arpa/inet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/dirent.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/fcntl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/fnmatch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/grp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/mqueue.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/net/if.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/net/if_arp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/netdb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/netinet/in.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/netinet/tcp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/poll.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/posix_features.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/posix_limits.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/posix_signal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/posix_time.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/posix_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/pthread.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/pwd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sched.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/semaphore.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/stropts.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/confstr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/dirent.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/eventfd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/ioctl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/mman.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/select.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/socket.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/stat.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/sysconf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/time.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/times.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys/utsname.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/syslog.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/unistd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/psa/its_ids.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/psa/key_ids.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/random/random.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/retention/blinfo.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/retention/bootmode.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/retention/retention.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/rtio/regmap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/rtio/rtio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/rtio/work.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd/mmc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd/sd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd/sd_spec.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd/sdio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd/sdmmc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sensing/sensing.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sensing/sensing_datatypes.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sensing/sensing_sensor.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sensing/sensing_sensor_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/settings/settings.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shared_irq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_adsp_memory_window.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_backend.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_dummy.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_fprintf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_history.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_log_backend.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_mqtt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_rpmsg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_rtt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_string_conv.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_telnet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_uart.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell/shell_websocket.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sip_svc/sip_svc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sip_svc/sip_svc_controller.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/smf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/spinlock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/stats/stats.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/storage/disk_access.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/storage/flash_map.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/storage/stream_flash.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sw_isr_table.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/__assert.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/atomic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/atomic_arch.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/atomic_builtin.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/atomic_c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/atomic_types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/barrier.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/barrier_builtin.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/base64.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/bitarray.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/byteorder.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/cbprintf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/cbprintf_cxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/cbprintf_enums.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/cbprintf_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/check.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/cpu_load.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/crc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/device_mmio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/dlist.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/errno_private.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/fdtable.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/hash_function.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/hash_map.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/hash_map_api.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/hash_map_cxx.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/hash_map_oa_lp.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/hash_map_sc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/heap_listener.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/internal/kobject_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/iterable_sections.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/kobject.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/libc-hooks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/linear_range.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/list_gen.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/math_extras.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/math_extras_impl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mem_blocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mem_manage.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mem_stats.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/min_heap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mpsc_lockfree.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mpsc_packet.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mpsc_pbuf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/multi_heap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mutex.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/notify.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/onoff.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/p4wq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/poweroff.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/printk-hooks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/printk.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/rb.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/reboot.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/ring_buffer.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/sem.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/sflist.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/slist.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/speculation.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/spsc_lockfree.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/spsc_pbuf.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/sys_heap.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/sys_io.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/time_units.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/timeutil.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_utf8.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/uuid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/winstream.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/task_wdt/task_wdt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/timing/timing.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/timing/types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/armclang.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/gcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/iar.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/iar/iar_missing_defs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/iar/iccarm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/llvm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/mwdt.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/xcc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/xcc_missing_defs.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing/tracing.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing/tracing_format.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing/tracing_macros.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing/tracing_syscall.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing/tracking.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/types.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/bos.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/hid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usb_audio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usb_cdc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usb_dfu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usb_hid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usb_hub.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usbd_dfu.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usbd_hid.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usbd_midi2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usbd_msc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usbd_uac2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class/usbd_uvc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/msos_desc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/usb_ch9.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/usb_device.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/usbd.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/usbd_msg.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/usbh.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb_c/tcpci.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb_c/usbc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/dom0/domctl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/events.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/generic.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/gnttab.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/hvm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/memory.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/arch-arm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/domctl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/event_channel.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/grant_table.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/hvm/hvm_op.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/hvm/params.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/io/console.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/memory.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/sched.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/xen.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/zbus/zbus.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/zvfs/eventfd.h zephyr/misc/generated/syscalls_file_list.txt + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/parse_syscalls.py --scan C:/Users/iteedi/zephyrproject/zephyr/include --scan C:/Users/iteedi/zephyrproject/zephyr/drivers --scan C:/Users/iteedi/zephyrproject/zephyr/subsys/net --json-file C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls.json --tag-struct-file C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json --file-list C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_file_list.txt " + DESC = Generating misc/generated/syscalls.json, misc/generated/struct_tags.json + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\driver_validation_h_target + +build zephyr/CMakeFiles/driver_validation_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/driver_validation_h_target: phony zephyr/include/generated/zephyr/driver-validation.h + + +############################################# +# Custom command for zephyr\include\generated\zephyr\driver-validation.h + +build zephyr/include/generated/zephyr/driver-validation.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/driver-validation.h: CUSTOM_COMMAND zephyr/misc/generated/struct_tags.json C$:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py --validation-output C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/driver-validation.h --include-subsystem-list C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json " + DESC = Generating include/generated/zephyr/driver-validation.h + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\kobj_types_h_target + +build zephyr/CMakeFiles/kobj_types_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/kobj_types_h_target: phony zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h + + +############################################# +# Custom command for zephyr\include\generated\zephyr\kobj-types-enum.h + +build zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/kobj-types-enum.h ${cmake_ninja_workdir}zephyr/include/generated/zephyr/otype-to-str.h ${cmake_ninja_workdir}zephyr/include/generated/zephyr/otype-to-size.h: CUSTOM_COMMAND zephyr/misc/generated/struct_tags.json C$:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_kobject_list.py --kobj-types-output C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/kobj-types-enum.h --kobj-otype-output C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-str.h --kobj-size-output C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-size.h --include-subsystem-list C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json " + DESC = Generating include/generated/zephyr/kobj-types-enum.h, include/generated/zephyr/otype-to-str.h, include/generated/zephyr/otype-to-size.h + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\device_api_ld_target + +build zephyr/CMakeFiles/device_api_ld_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/device_api_ld_target: phony zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake + + +############################################# +# Custom command for zephyr\include\generated\device-api-sections.ld + +build zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake | ${cmake_ninja_workdir}zephyr/include/generated/device-api-sections.ld ${cmake_ninja_workdir}zephyr/include/generated/device-api-sections.cmake: CUSTOM_COMMAND C$:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_iter_sections.py zephyr/misc/generated/struct_tags.json + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_iter_sections.py --alignment 4 --input C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json --tag __subsystem --ld-output C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld --cmake-output C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.cmake" + DESC = Generating include/generated/device-api-sections.ld, include/generated/device-api-sections.cmake + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\offsets_h + +build zephyr/CMakeFiles/offsets_h | ${cmake_ninja_workdir}zephyr/CMakeFiles/offsets_h: phony zephyr/include/generated/zephyr/offsets.h || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/syscall_list_h_target + + +############################################# +# Custom command for zephyr\include\generated\zephyr\offsets.h + +build zephyr/include/generated/zephyr/offsets.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/offsets.h: CUSTOM_COMMAND zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/syscall_list_h_target + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_offset_header.py -i C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj -o C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h" + DESC = Generating include/generated/zephyr/offsets.h + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\linker_zephyr_prebuilt_script_target + +build zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target: phony zephyr/linker_zephyr_pre0.cmd || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + + +############################################# +# Custom command for zephyr\linker_zephyr_pre0.cmd + +build zephyr/linker_zephyr_pre0.cmd | ${cmake_ninja_workdir}zephyr/linker_zephyr_pre0.cmd: CUSTOM_COMMAND C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld zephyr/include/generated/zephyr/autoconf.h || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe -x assembler-with-cpp -undef -MD -MF linker_zephyr_pre0.cmd.dep -MT linker_zephyr_pre0.cmd -D_LINKER -D_ASMLANGUAGE -D__GCC_LINKER_CMD__ -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -IC:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts -DLINKER_ZEPHYR_PREBUILT -E C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld -P -o linker_zephyr_pre0.cmd && "C:\Program Files\CMake\bin\cmake.exe" -E cmake_transform_depfile Ninja gccdepfile C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd.dep C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/d/1ce5e98d93e9e3f0c2abdfc0ea8260f6f11613b66eb32cd82aaf6e22e38d78e4.d" + DESC = Generating linker_zephyr_pre0.cmd + depfile = CMakeFiles\d\1ce5e98d93e9e3f0c2abdfc0ea8260f6f11613b66eb32cd82aaf6e22e38d78e4.d + deps = gcc + restat = 1 + + +############################################# +# Phony custom command for zephyr\CMakeFiles\linker_zephyr_final_script_target + +build zephyr/CMakeFiles/linker_zephyr_final_script_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/linker_zephyr_final_script_target: phony zephyr/linker.cmd || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_pre0.elf + + +############################################# +# Custom command for zephyr\linker.cmd + +build zephyr/linker.cmd | ${cmake_ninja_workdir}zephyr/linker.cmd: CUSTOM_COMMAND C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld zephyr/include/generated/zephyr/autoconf.h zephyr/zephyr_pre0.elf || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe -x assembler-with-cpp -undef -MD -MF linker.cmd.dep -MT linker.cmd -D_LINKER -D_ASMLANGUAGE -D__GCC_LINKER_CMD__ -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -IC:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts -DLINKER_ZEPHYR_FINAL -E C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld -P -o linker.cmd && "C:\Program Files\CMake\bin\cmake.exe" -E cmake_transform_depfile Ninja gccdepfile C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/linker.cmd.dep C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/d/01c66be6cf027f608f63cec7ac51e890fb3772f50b5b5c69d06f6994d71b1db3.d" + DESC = Generating linker.cmd + depfile = CMakeFiles\d\01c66be6cf027f608f63cec7ac51e890fb3772f50b5b5c69d06f6994d71b1db3.d + deps = gcc + restat = 1 + + +############################################# +# Custom command for zephyr\isr_tables.c + +build zephyr/isr_tables.c zephyr/isr_tables_vt.ld zephyr/isr_tables_swi.ld | ${cmake_ninja_workdir}zephyr/isr_tables.c ${cmake_ninja_workdir}zephyr/isr_tables_vt.ld ${cmake_ninja_workdir}zephyr/isr_tables_swi.ld: CUSTOM_COMMAND zephyr/zephyr_pre0.elf || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/gen_isr_tables.py --output-source isr_tables.c --linker-output-files isr_tables_vt.ld isr_tables_swi.ld --kernel C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.elf --intlist-section .intList --intlist-section intList --sw-isr-table --vector-table" + DESC = Generating isr_tables.c, isr_tables_vt.ld, isr_tables_swi.ld + restat = 1 + + +############################################# +# Custom command for zephyr\CMakeFiles\initlevels + +build zephyr/CMakeFiles/initlevels | ${cmake_ninja_workdir}zephyr/CMakeFiles/initlevels: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/build/check_init_priorities.py --elf-file=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf --initlevels" + pool = console + + +############################################# +# Custom command for zephyr\CMakeFiles\run + +build zephyr/CMakeFiles/run | ${cmake_ninja_workdir}zephyr/CMakeFiles/run: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr && "C:\Program Files\CMake\bin\cmake.exe" -E echo =================================================== "Emulation/Simulation not supported with this board." ===================================================" + + +############################################# +# Phony custom command for zephyr\CMakeFiles\build_info_yaml_saved + +build zephyr/CMakeFiles/build_info_yaml_saved | ${cmake_ninja_workdir}zephyr/CMakeFiles/build_info_yaml_saved: phony build_info.yml + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/edit_cache: phony zephyr/arch/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/rebuild_cache: phony zephyr/arch/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/arch/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__common + + +############################################# +# Order-only phony target for arch__common + +build cmake_object_order_depends_target_arch__common: phony || cmake_object_order_depends_target_isr_tables zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj: C_COMPILER__arch__common_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/common/sw_isr_common.c || cmake_object_order_depends_target_arch__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\common\CMakeFiles\arch__common.dir\sw_isr_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + OBJECT_FILE_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + TARGET_COMPILE_PDB = zephyr\arch\common\CMakeFiles\arch__common.dir\arch__common.pdb + TARGET_PDB = zephyr\arch\common\libarch__common.pdb + +build zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj: C_COMPILER__arch__common_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/common/init.c || cmake_object_order_depends_target_arch__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\common\CMakeFiles\arch__common.dir\init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + OBJECT_FILE_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + TARGET_COMPILE_PDB = zephyr\arch\common\CMakeFiles\arch__common.dir\arch__common.pdb + TARGET_PDB = zephyr\arch\common\libarch__common.pdb + +build zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj: C_COMPILER__arch__common_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/common/xip.c || cmake_object_order_depends_target_arch__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\common\CMakeFiles\arch__common.dir\xip.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + OBJECT_FILE_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + TARGET_COMPILE_PDB = zephyr\arch\common\CMakeFiles\arch__common.dir\arch__common.pdb + TARGET_PDB = zephyr\arch\common\libarch__common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__common + + +############################################# +# Link the static library zephyr\arch\common\libarch__common.a + +build zephyr/arch/common/libarch__common.a: C_STATIC_LIBRARY_LINKER__arch__common_ zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj || zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\arch\common\CMakeFiles\arch__common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\arch\common\CMakeFiles\arch__common.dir\arch__common.pdb + TARGET_FILE = zephyr\arch\common\libarch__common.a + TARGET_PDB = zephyr\arch\common\libarch__common.pdb + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target isr_tables + + +############################################# +# Order-only phony target for isr_tables + +build cmake_object_order_depends_target_isr_tables: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj: C_COMPILER__isr_tables_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/common/isr_tables.c || cmake_object_order_depends_target_isr_tables + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\common\CMakeFiles\isr_tables.dir\isr_tables.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\common\CMakeFiles\isr_tables.dir + OBJECT_FILE_DIR = zephyr\arch\common\CMakeFiles\isr_tables.dir + TARGET_COMPILE_PDB = zephyr\arch\common\CMakeFiles\isr_tables.dir\isr_tables.pdb + TARGET_PDB = zephyr\arch\common\libisr_tables.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target isr_tables + + +############################################# +# Link the static library zephyr\arch\common\libisr_tables.a + +build zephyr/arch/common/libisr_tables.a: C_STATIC_LIBRARY_LINKER__isr_tables_ zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\arch\common\CMakeFiles\isr_tables.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\arch\common\CMakeFiles\isr_tables.dir\isr_tables.pdb + TARGET_FILE = zephyr\arch\common\libisr_tables.a + TARGET_PDB = zephyr\arch\common\libisr_tables.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\common && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/common/edit_cache: phony zephyr/arch/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\common && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/common/rebuild_cache: phony zephyr/arch/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/arch/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\arch\arm && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/edit_cache: phony zephyr/arch/arch/arm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\arch\arm && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/rebuild_cache: phony zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/arch/arm/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__arm__core + + +############################################# +# Order-only phony target for arch__arm__core + +build cmake_object_order_depends_target_arch__arm__core: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj: C_COMPILER__arch__arm__core_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/fatal.c || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\fatal.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\arch__arm__core.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\libarch__arm__core.pdb + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj: C_COMPILER__arch__arm__core_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/nmi.c || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\nmi.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\arch__arm__core.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\libarch__arm__core.pdb + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj: ASM_COMPILER__arch__arm__core_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/nmi_on_reset.S || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\nmi_on_reset.S.obj.d + FLAGS = -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\arch__arm__core.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\libarch__arm__core.pdb + +build zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj: C_COMPILER__arch__arm__core_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/tls.c || cmake_object_order_depends_target_arch__arm__core + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\tls.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\arch__arm__core.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\libarch__arm__core.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__arm__core + + +############################################# +# Link the static library zephyr\arch\arch\arm\core\libarch__arm__core.a + +build zephyr/arch/arch/arm/core/libarch__arm__core.a: C_STATIC_LIBRARY_LINKER__arch__arm__core_ zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\CMakeFiles\arch__arm__core.dir\arch__arm__core.pdb + TARGET_FILE = zephyr\arch\arch\arm\core\libarch__arm__core.a + TARGET_PDB = zephyr\arch\arch\arm\core\libarch__arm__core.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\arch\arm\core && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/edit_cache: phony zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\arch\arm\core && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/rebuild_cache: phony zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__arm__core__cortex_m + + +############################################# +# Order-only phony target for arch__arm__core__cortex_m + +build cmake_object_order_depends_target_arch__arm__core__cortex_m: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/exc_exit.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\exc_exit.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/fault.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\fault.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/fault_s.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\fault_s.S.obj.d + FLAGS = -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/fpu.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\fpu.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/reset.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\reset.S.obj.d + FLAGS = -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/scb.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\scb.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/thread_abort.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\thread_abort.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/vector_table.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\vector_table.S.obj.d + FLAGS = -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/swap_helper.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\swap_helper.S.obj.d + FLAGS = -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_manage.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\irq_manage.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/prep_c.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\prep_c.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/thread.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\thread.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/cpu_idle.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\cpu_idle.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_init.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\irq_init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj: C_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/isr_wrapper.c || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\isr_wrapper.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj: ASM_COMPILER__arch__arm__core__cortex_m_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S || cmake_object_order_depends_target_arch__arm__core__cortex_m + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\__aeabi_read_tp.S.obj.d + FLAGS = -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + OBJECT_FILE_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__arm__core__cortex_m + + +############################################# +# Link the static library zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.a + +build zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a: C_STATIC_LIBRARY_LINKER__arch__arm__core__cortex_m_ zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\arch\arch\arm\core\cortex_m\CMakeFiles\arch__arm__core__cortex_m.dir\arch__arm__core__cortex_m.pdb + TARGET_FILE = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.a + TARGET_PDB = zephyr\arch\arch\arm\core\cortex_m\libarch__arm__core__cortex_m.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\arch\arm\core\cortex_m && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/cortex_m/edit_cache: phony zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\arch\arch\arm\core\cortex_m && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/arm/core/cortex_m/rebuild_cache: phony zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/edit_cache: phony zephyr/lib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/rebuild_cache: phony zephyr/lib/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\libc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/edit_cache: phony zephyr/lib/libc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\libc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/rebuild_cache: phony zephyr/lib/libc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/libc/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__libc__picolibc + + +############################################# +# Order-only phony target for lib__libc__picolibc + +build cmake_object_order_depends_target_lib__libc__picolibc: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/assert.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\assert.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\cbprintf.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\chk_fail.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\errno_wrap.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/exit.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\exit.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/locks.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\locks.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/stdio.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\stdio.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__libc__picolibc + + +############################################# +# Link the static library zephyr\lib\libc\picolibc\liblib__libc__picolibc.a + +build zephyr/lib/libc/picolibc/liblib__libc__picolibc.a: C_STATIC_LIBRARY_LINKER__lib__libc__picolibc_ zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\lib\libc\picolibc\CMakeFiles\lib__libc__picolibc.dir\lib__libc__picolibc.pdb + TARGET_FILE = zephyr\lib\libc\picolibc\liblib__libc__picolibc.a + TARGET_PDB = zephyr\lib\libc\picolibc\liblib__libc__picolibc.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\libc\picolibc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/picolibc/edit_cache: phony zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\libc\picolibc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/picolibc/rebuild_cache: phony zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/libc/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__libc__common + + +############################################# +# Order-only phony target for lib__libc__common + +build cmake_object_order_depends_target_lib__libc__common: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj: C_COMPILER__lib__libc__common_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\source\stdlib\abort.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir + OBJECT_FILE_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\source\stdlib + TARGET_COMPILE_PDB = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\lib__libc__common.pdb + TARGET_PDB = zephyr\lib\libc\common\liblib__libc__common.pdb + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj: C_COMPILER__lib__libc__common_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/source/time/time.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\source\time\time.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir + OBJECT_FILE_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\source\time + TARGET_COMPILE_PDB = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\lib__libc__common.pdb + TARGET_PDB = zephyr\lib\libc\common\liblib__libc__common.pdb + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj: C_COMPILER__lib__libc__common_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\source\stdlib\malloc.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir + OBJECT_FILE_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\source\stdlib + TARGET_COMPILE_PDB = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\lib__libc__common.pdb + TARGET_PDB = zephyr\lib\libc\common\liblib__libc__common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__libc__common + + +############################################# +# Link the static library zephyr\lib\libc\common\liblib__libc__common.a + +build zephyr/lib/libc/common/liblib__libc__common.a: C_STATIC_LIBRARY_LINKER__lib__libc__common_ zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\lib\libc\common\CMakeFiles\lib__libc__common.dir\lib__libc__common.pdb + TARGET_FILE = zephyr\lib\libc\common\liblib__libc__common.a + TARGET_PDB = zephyr\lib\libc\common\liblib__libc__common.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\libc\common && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/common/edit_cache: phony zephyr/lib/libc/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\libc\common && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/common/rebuild_cache: phony zephyr/lib/libc/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\posix && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/edit_cache: phony zephyr/lib/posix/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\posix && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/rebuild_cache: phony zephyr/lib/posix/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/posix/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/c_lang_support_r/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\posix\c_lang_support_r && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lang_support_r/edit_cache: phony zephyr/lib/posix/c_lang_support_r/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/c_lang_support_r/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\posix\c_lang_support_r && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lang_support_r/rebuild_cache: phony zephyr/lib/posix/c_lang_support_r/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/posix/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__posix__c_lib_ext + + +############################################# +# Order-only phony target for lib__posix__c_lib_ext + +build cmake_object_order_depends_target_lib__posix__c_lib_ext: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/fnmatch.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\fnmatch.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + TARGET_COMPILE_PDB = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.pdb + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getentropy.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\getentropy.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + TARGET_COMPILE_PDB = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.pdb + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt/getopt.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\getopt\getopt.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\getopt + TARGET_COMPILE_PDB = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.pdb + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt/getopt_common.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\getopt\getopt_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\getopt + TARGET_COMPILE_PDB = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__posix__c_lib_ext + + +############################################# +# Link the static library zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.a + +build zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a: C_STATIC_LIBRARY_LINKER__lib__posix__c_lib_ext_ zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\lib\posix\c_lib_ext\CMakeFiles\lib__posix__c_lib_ext.dir\lib__posix__c_lib_ext.pdb + TARGET_FILE = zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.a + TARGET_PDB = zephyr\lib\posix\c_lib_ext\liblib__posix__c_lib_ext.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\posix\c_lib_ext && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lib_ext/edit_cache: phony zephyr/lib/posix/c_lib_ext/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\posix\c_lib_ext && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lib_ext/rebuild_cache: phony zephyr/lib/posix/c_lib_ext/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/hash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\hash && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/hash/edit_cache: phony zephyr/lib/hash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/hash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\hash && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/hash/rebuild_cache: phony zephyr/lib/hash/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\heap && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/heap/edit_cache: phony zephyr/lib/heap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\heap && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/heap/rebuild_cache: phony zephyr/lib/heap/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/mem_blocks/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\mem_blocks && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/mem_blocks/edit_cache: phony zephyr/lib/mem_blocks/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\mem_blocks && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/mem_blocks/rebuild_cache: phony zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/midi2/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\midi2 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/midi2/edit_cache: phony zephyr/lib/midi2/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/midi2/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\midi2 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/midi2/rebuild_cache: phony zephyr/lib/midi2/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/os/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\os && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/os/edit_cache: phony zephyr/lib/os/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/os/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\os && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/os/rebuild_cache: phony zephyr/lib/os/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/utils/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\utils && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/utils/edit_cache: phony zephyr/lib/utils/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/utils/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\utils && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/utils/rebuild_cache: phony zephyr/lib/utils/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/uuid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\uuid && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/uuid/edit_cache: phony zephyr/lib/uuid/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/uuid/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\lib\uuid && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/uuid/rebuild_cache: phony zephyr/lib/uuid/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/edit_cache: phony zephyr/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/rebuild_cache: phony zephyr/soc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\common && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/common/edit_cache: phony zephyr/soc/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\common && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/common/rebuild_cache: phony zephyr/soc/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/stm32g0b1xx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\soc\stm32g0b1xx && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/stm32g0b1xx/edit_cache: phony zephyr/soc/soc/stm32g0b1xx/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/stm32g0b1xx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\soc\stm32g0b1xx && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/stm32g0b1xx/rebuild_cache: phony zephyr/soc/soc/stm32g0b1xx/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/stm32g0b1xx/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\soc\stm32g0b1xx\common && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/stm32g0b1xx/common/edit_cache: phony zephyr/soc/soc/stm32g0b1xx/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/stm32g0b1xx/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\soc\stm32g0b1xx\common && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/stm32g0b1xx/common/rebuild_cache: phony zephyr/soc/soc/stm32g0b1xx/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/stm32g0b1xx/stm32g0x/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\soc\stm32g0b1xx\stm32g0x && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/stm32g0b1xx/stm32g0x/edit_cache: phony zephyr/soc/soc/stm32g0b1xx/stm32g0x/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/stm32g0b1xx/stm32g0x/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\soc\soc\stm32g0b1xx\stm32g0x && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/stm32g0b1xx/stm32g0x/rebuild_cache: phony zephyr/soc/soc/stm32g0b1xx/stm32g0x/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/boards/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\boards && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/boards/edit_cache: phony zephyr/boards/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/boards/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\boards && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/boards/rebuild_cache: phony zephyr/boards/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/boards/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/boards/shields/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\boards\shields && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/boards/shields/edit_cache: phony zephyr/boards/shields/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/boards/shields/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\boards\shields && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/boards/shields/rebuild_cache: phony zephyr/boards/shields/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/edit_cache: phony zephyr/subsys/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/rebuild_cache: phony zephyr/subsys/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/canbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\canbus && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/canbus/edit_cache: phony zephyr/subsys/canbus/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/canbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\canbus && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/canbus/rebuild_cache: phony zephyr/subsys/canbus/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/debug/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\debug && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/debug/edit_cache: phony zephyr/subsys/debug/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/debug/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\debug && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/debug/rebuild_cache: phony zephyr/subsys/debug/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/fb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\fb && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/fb/edit_cache: phony zephyr/subsys/fb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/fb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\fb && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/fb/rebuild_cache: phony zephyr/subsys/fb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/fs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\fs && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/fs/edit_cache: phony zephyr/subsys/fs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/fs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\fs && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/fs/rebuild_cache: phony zephyr/subsys/fs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/gnss/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\gnss && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/gnss/edit_cache: phony zephyr/subsys/gnss/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/gnss/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\gnss && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/gnss/rebuild_cache: phony zephyr/subsys/gnss/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/instrumentation/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\instrumentation && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/instrumentation/edit_cache: phony zephyr/subsys/instrumentation/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\instrumentation && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/instrumentation/rebuild_cache: phony zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/ipc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\ipc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/ipc/edit_cache: phony zephyr/subsys/ipc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/ipc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\ipc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/ipc/rebuild_cache: phony zephyr/subsys/ipc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\logging && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/edit_cache: phony zephyr/subsys/logging/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\logging && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/rebuild_cache: phony zephyr/subsys/logging/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/backends/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\logging\backends && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/backends/edit_cache: phony zephyr/subsys/logging/backends/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\logging\backends && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/backends/rebuild_cache: phony zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\logging\frontends && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/frontends/edit_cache: phony zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\logging\frontends && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/frontends/rebuild_cache: phony zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\mem_mgmt && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/mem_mgmt/edit_cache: phony zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\mem_mgmt && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/mem_mgmt/rebuild_cache: phony zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/mgmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\mgmt && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/mgmt/edit_cache: phony zephyr/subsys/mgmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\mgmt && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/mgmt/rebuild_cache: phony zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/modbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\modbus && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/modbus/edit_cache: phony zephyr/subsys/modbus/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/modbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\modbus && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/modbus/rebuild_cache: phony zephyr/subsys/modbus/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\pm && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pm/edit_cache: phony zephyr/subsys/pm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\pm && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pm/rebuild_cache: phony zephyr/subsys/pm/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/pm/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pm/policy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\pm\policy && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pm/policy/edit_cache: phony zephyr/subsys/pm/policy/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\pm\policy && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pm/policy/rebuild_cache: phony zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pmci/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\pmci && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pmci/edit_cache: phony zephyr/subsys/pmci/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pmci/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\pmci && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pmci/rebuild_cache: phony zephyr/subsys/pmci/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/portability/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\portability && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/portability/edit_cache: phony zephyr/subsys/portability/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/portability/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\portability && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/portability/rebuild_cache: phony zephyr/subsys/portability/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/random/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\random && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/random/edit_cache: phony zephyr/subsys/random/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/random/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\random && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/random/rebuild_cache: phony zephyr/subsys/random/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/rtio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\rtio && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/rtio/edit_cache: phony zephyr/subsys/rtio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/rtio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\rtio && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/rtio/rebuild_cache: phony zephyr/subsys/rtio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/sd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\sd && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/sd/edit_cache: phony zephyr/subsys/sd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/sd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\sd && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/sd/rebuild_cache: phony zephyr/subsys/sd/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/stats/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\stats && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/stats/edit_cache: phony zephyr/subsys/stats/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/stats/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\stats && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/stats/rebuild_cache: phony zephyr/subsys/stats/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/storage/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\storage && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/storage/edit_cache: phony zephyr/subsys/storage/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/storage/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\storage && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/storage/rebuild_cache: phony zephyr/subsys/storage/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/task_wdt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\task_wdt && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/task_wdt/edit_cache: phony zephyr/subsys/task_wdt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\task_wdt && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/task_wdt/rebuild_cache: phony zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/testsuite/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\testsuite && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/testsuite/edit_cache: phony zephyr/subsys/testsuite/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\testsuite && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/testsuite/rebuild_cache: phony zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/tracing/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\tracing && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/tracing/edit_cache: phony zephyr/subsys/tracing/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/tracing/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\tracing && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/tracing/rebuild_cache: phony zephyr/subsys/tracing/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\usb && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/edit_cache: phony zephyr/subsys/usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\usb && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/rebuild_cache: phony zephyr/subsys/usb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/device/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\usb\device && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/edit_cache: phony zephyr/subsys/usb/device/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/device/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\usb\device && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/rebuild_cache: phony zephyr/subsys/usb/device/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/device/class/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\usb\device\class && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/class/edit_cache: phony zephyr/subsys/usb/device/class/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/device/class/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\subsys\usb\device\class && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/device/class/rebuild_cache: phony zephyr/subsys/usb/device/class/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/edit_cache: phony zephyr/drivers/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/rebuild_cache: phony zephyr/drivers/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/disk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\disk && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/disk/edit_cache: phony zephyr/drivers/disk/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/disk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\disk && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/disk/rebuild_cache: phony zephyr/drivers/disk/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/firmware/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\firmware && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/firmware/edit_cache: phony zephyr/drivers/firmware/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/firmware/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\firmware && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/firmware/rebuild_cache: phony zephyr/drivers/firmware/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__interrupt_controller + + +############################################# +# Order-only phony target for drivers__interrupt_controller + +build cmake_object_order_depends_target_drivers__interrupt_controller: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj: C_COMPILER__drivers__interrupt_controller_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/intc_gpio_stm32.c || cmake_object_order_depends_target_drivers__interrupt_controller + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir\intc_gpio_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir + OBJECT_FILE_DIR = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir + TARGET_COMPILE_PDB = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir\drivers__interrupt_controller.pdb + TARGET_PDB = zephyr\drivers\interrupt_controller\libdrivers__interrupt_controller.pdb + +build zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj: C_COMPILER__drivers__interrupt_controller_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/intc_exti_stm32.c || cmake_object_order_depends_target_drivers__interrupt_controller + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir\intc_exti_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir + OBJECT_FILE_DIR = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir + TARGET_COMPILE_PDB = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir\drivers__interrupt_controller.pdb + TARGET_PDB = zephyr\drivers\interrupt_controller\libdrivers__interrupt_controller.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__interrupt_controller + + +############################################# +# Link the static library zephyr\drivers\interrupt_controller\libdrivers__interrupt_controller.a + +build zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a: C_STATIC_LIBRARY_LINKER__drivers__interrupt_controller_ zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\interrupt_controller\CMakeFiles\drivers__interrupt_controller.dir\drivers__interrupt_controller.pdb + TARGET_FILE = zephyr\drivers\interrupt_controller\libdrivers__interrupt_controller.a + TARGET_PDB = zephyr\drivers\interrupt_controller\libdrivers__interrupt_controller.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\interrupt_controller && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/interrupt_controller/edit_cache: phony zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\interrupt_controller && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/interrupt_controller/rebuild_cache: phony zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/misc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\misc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/misc/edit_cache: phony zephyr/drivers/misc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/misc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\misc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/misc/rebuild_cache: phony zephyr/drivers/misc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/misc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\misc\interconn && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/misc/interconn/edit_cache: phony zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\misc\interconn && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/misc/interconn/rebuild_cache: phony zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pcie/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\pcie && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pcie/edit_cache: phony zephyr/drivers/pcie/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pcie/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\pcie && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pcie/rebuild_cache: phony zephyr/drivers/pcie/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/edit_cache: phony zephyr/drivers/usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/rebuild_cache: phony zephyr/drivers/usb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/usb/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__usb__device + + +############################################# +# Order-only phony target for drivers__usb__device + +build cmake_object_order_depends_target_drivers__usb__device: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj: C_COMPILER__drivers__usb__device_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device/usb_dc_stm32.c || cmake_object_order_depends_target_drivers__usb__device + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\usb\device\CMakeFiles\drivers__usb__device.dir\usb_dc_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\usb\device\CMakeFiles\drivers__usb__device.dir + OBJECT_FILE_DIR = zephyr\drivers\usb\device\CMakeFiles\drivers__usb__device.dir + TARGET_COMPILE_PDB = zephyr\drivers\usb\device\CMakeFiles\drivers__usb__device.dir\drivers__usb__device.pdb + TARGET_PDB = zephyr\drivers\usb\device\libdrivers__usb__device.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__usb__device + + +############################################# +# Link the static library zephyr\drivers\usb\device\libdrivers__usb__device.a + +build zephyr/drivers/usb/device/libdrivers__usb__device.a: C_STATIC_LIBRARY_LINKER__drivers__usb__device_ zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\usb\device\CMakeFiles\drivers__usb__device.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\usb\device\CMakeFiles\drivers__usb__device.dir\drivers__usb__device.pdb + TARGET_FILE = zephyr\drivers\usb\device\libdrivers__usb__device.a + TARGET_PDB = zephyr\drivers\usb\device\libdrivers__usb__device.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/device/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb\device && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/device/edit_cache: phony zephyr/drivers/usb/device/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/device/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb\device && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/device/rebuild_cache: phony zephyr/drivers/usb/device/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb\common && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/edit_cache: phony zephyr/drivers/usb/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb\common && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/rebuild_cache: phony zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb_c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb_c && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb_c/edit_cache: phony zephyr/drivers/usb_c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\usb_c && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb_c/rebuild_cache: phony zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__can + + +############################################# +# Order-only phony target for drivers__can + +build cmake_object_order_depends_target_drivers__can: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj: C_COMPILER__drivers__can_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/can_common.c || cmake_object_order_depends_target_drivers__can + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\can\CMakeFiles\drivers__can.dir\can_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + OBJECT_FILE_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + TARGET_COMPILE_PDB = zephyr\drivers\can\CMakeFiles\drivers__can.dir\drivers__can.pdb + TARGET_PDB = zephyr\drivers\can\libdrivers__can.pdb + +build zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj: C_COMPILER__drivers__can_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/can_mcan.c || cmake_object_order_depends_target_drivers__can + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\can\CMakeFiles\drivers__can.dir\can_mcan.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + OBJECT_FILE_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + TARGET_COMPILE_PDB = zephyr\drivers\can\CMakeFiles\drivers__can.dir\drivers__can.pdb + TARGET_PDB = zephyr\drivers\can\libdrivers__can.pdb + +build zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj: C_COMPILER__drivers__can_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/can_stm32_fdcan.c || cmake_object_order_depends_target_drivers__can + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\can\CMakeFiles\drivers__can.dir\can_stm32_fdcan.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + OBJECT_FILE_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + TARGET_COMPILE_PDB = zephyr\drivers\can\CMakeFiles\drivers__can.dir\drivers__can.pdb + TARGET_PDB = zephyr\drivers\can\libdrivers__can.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__can + + +############################################# +# Link the static library zephyr\drivers\can\libdrivers__can.a + +build zephyr/drivers/can/libdrivers__can.a: C_STATIC_LIBRARY_LINKER__drivers__can_ zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\can\CMakeFiles\drivers__can.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\can\CMakeFiles\drivers__can.dir\drivers__can.pdb + TARGET_FILE = zephyr\drivers\can\libdrivers__can.a + TARGET_PDB = zephyr\drivers\can\libdrivers__can.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/can/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\can && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/can/edit_cache: phony zephyr/drivers/can/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/can/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\can && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/can/rebuild_cache: phony zephyr/drivers/can/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/can/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__can__transceiver + + +############################################# +# Order-only phony target for drivers__can__transceiver + +build cmake_object_order_depends_target_drivers__can__transceiver: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/drivers/can/transceiver/CMakeFiles/drivers__can__transceiver.dir/C_/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c.obj: C_COMPILER__drivers__can__transceiver_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c || cmake_object_order_depends_target_drivers__can__transceiver + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\can\transceiver\CMakeFiles\drivers__can__transceiver.dir\C_\Users\iteedi\zephyrproject\zephyr\misc\empty_file.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\can\transceiver\CMakeFiles\drivers__can__transceiver.dir + OBJECT_FILE_DIR = zephyr\drivers\can\transceiver\CMakeFiles\drivers__can__transceiver.dir\C_\Users\iteedi\zephyrproject\zephyr\misc + TARGET_COMPILE_PDB = zephyr\drivers\can\transceiver\CMakeFiles\drivers__can__transceiver.dir\drivers__can__transceiver.pdb + TARGET_PDB = zephyr\drivers\can\transceiver\libdrivers__can__transceiver.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__can__transceiver + + +############################################# +# Link the static library zephyr\drivers\can\transceiver\libdrivers__can__transceiver.a + +build zephyr/drivers/can/transceiver/libdrivers__can__transceiver.a: C_STATIC_LIBRARY_LINKER__drivers__can__transceiver_ zephyr/drivers/can/transceiver/CMakeFiles/drivers__can__transceiver.dir/C_/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + OBJECT_DIR = zephyr\drivers\can\transceiver\CMakeFiles\drivers__can__transceiver.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\can\transceiver\CMakeFiles\drivers__can__transceiver.dir\drivers__can__transceiver.pdb + TARGET_FILE = zephyr\drivers\can\transceiver\libdrivers__can__transceiver.a + TARGET_PDB = zephyr\drivers\can\transceiver\libdrivers__can__transceiver.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/can/transceiver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\can\transceiver && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/can/transceiver/edit_cache: phony zephyr/drivers/can/transceiver/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/can/transceiver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\can\transceiver && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/can/transceiver/rebuild_cache: phony zephyr/drivers/can/transceiver/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__clock_control + + +############################################# +# Order-only phony target for drivers__clock_control + +build cmake_object_order_depends_target_drivers__clock_control: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj: C_COMPILER__drivers__clock_control_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/clock_stm32_ll_common.c || cmake_object_order_depends_target_drivers__clock_control + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir\clock_stm32_ll_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir + OBJECT_FILE_DIR = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir + TARGET_COMPILE_PDB = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir\drivers__clock_control.pdb + TARGET_PDB = zephyr\drivers\clock_control\libdrivers__clock_control.pdb + +build zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj: C_COMPILER__drivers__clock_control_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/clock_stm32g0_u0.c || cmake_object_order_depends_target_drivers__clock_control + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir\clock_stm32g0_u0.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir + OBJECT_FILE_DIR = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir + TARGET_COMPILE_PDB = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir\drivers__clock_control.pdb + TARGET_PDB = zephyr\drivers\clock_control\libdrivers__clock_control.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__clock_control + + +############################################# +# Link the static library zephyr\drivers\clock_control\libdrivers__clock_control.a + +build zephyr/drivers/clock_control/libdrivers__clock_control.a: C_STATIC_LIBRARY_LINKER__drivers__clock_control_ zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\clock_control\CMakeFiles\drivers__clock_control.dir\drivers__clock_control.pdb + TARGET_FILE = zephyr\drivers\clock_control\libdrivers__clock_control.a + TARGET_PDB = zephyr\drivers\clock_control\libdrivers__clock_control.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/clock_control/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\clock_control && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/clock_control/edit_cache: phony zephyr/drivers/clock_control/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\clock_control && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/clock_control/rebuild_cache: phony zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__console + + +############################################# +# Order-only phony target for drivers__console + +build cmake_object_order_depends_target_drivers__console: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj: C_COMPILER__drivers__console_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/console/uart_console.c || cmake_object_order_depends_target_drivers__console + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\console\CMakeFiles\drivers__console.dir\uart_console.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\console\CMakeFiles\drivers__console.dir + OBJECT_FILE_DIR = zephyr\drivers\console\CMakeFiles\drivers__console.dir + TARGET_COMPILE_PDB = zephyr\drivers\console\CMakeFiles\drivers__console.dir\drivers__console.pdb + TARGET_PDB = zephyr\drivers\console\libdrivers__console.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__console + + +############################################# +# Link the static library zephyr\drivers\console\libdrivers__console.a + +build zephyr/drivers/console/libdrivers__console.a: C_STATIC_LIBRARY_LINKER__drivers__console_ zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\console\CMakeFiles\drivers__console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\console\CMakeFiles\drivers__console.dir\drivers__console.pdb + TARGET_FILE = zephyr\drivers\console\libdrivers__console.a + TARGET_PDB = zephyr\drivers\console\libdrivers__console.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\console && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/console/edit_cache: phony zephyr/drivers/console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\console && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/console/rebuild_cache: phony zephyr/drivers/console/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__gpio + + +############################################# +# Order-only phony target for drivers__gpio + +build cmake_object_order_depends_target_drivers__gpio: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj: C_COMPILER__drivers__gpio_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/gpio_stm32.c || cmake_object_order_depends_target_drivers__gpio + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\gpio\CMakeFiles\drivers__gpio.dir\gpio_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\gpio\CMakeFiles\drivers__gpio.dir + OBJECT_FILE_DIR = zephyr\drivers\gpio\CMakeFiles\drivers__gpio.dir + TARGET_COMPILE_PDB = zephyr\drivers\gpio\CMakeFiles\drivers__gpio.dir\drivers__gpio.pdb + TARGET_PDB = zephyr\drivers\gpio\libdrivers__gpio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__gpio + + +############################################# +# Link the static library zephyr\drivers\gpio\libdrivers__gpio.a + +build zephyr/drivers/gpio/libdrivers__gpio.a: C_STATIC_LIBRARY_LINKER__drivers__gpio_ zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\gpio\CMakeFiles\drivers__gpio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\gpio\CMakeFiles\drivers__gpio.dir\drivers__gpio.pdb + TARGET_FILE = zephyr\drivers\gpio\libdrivers__gpio.a + TARGET_PDB = zephyr\drivers\gpio\libdrivers__gpio.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\gpio && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/gpio/edit_cache: phony zephyr/drivers/gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\gpio && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/gpio/rebuild_cache: phony zephyr/drivers/gpio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__hwinfo + + +############################################# +# Order-only phony target for drivers__hwinfo + +build cmake_object_order_depends_target_drivers__hwinfo: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj: C_COMPILER__drivers__hwinfo_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/hwinfo_weak_impl.c || cmake_object_order_depends_target_drivers__hwinfo + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir\hwinfo_weak_impl.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir + OBJECT_FILE_DIR = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir + TARGET_COMPILE_PDB = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir\drivers__hwinfo.pdb + TARGET_PDB = zephyr\drivers\hwinfo\libdrivers__hwinfo.pdb + +build zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj: C_COMPILER__drivers__hwinfo_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/hwinfo_stm32.c || cmake_object_order_depends_target_drivers__hwinfo + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir\hwinfo_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir + OBJECT_FILE_DIR = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir + TARGET_COMPILE_PDB = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir\drivers__hwinfo.pdb + TARGET_PDB = zephyr\drivers\hwinfo\libdrivers__hwinfo.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__hwinfo + + +############################################# +# Link the static library zephyr\drivers\hwinfo\libdrivers__hwinfo.a + +build zephyr/drivers/hwinfo/libdrivers__hwinfo.a: C_STATIC_LIBRARY_LINKER__drivers__hwinfo_ zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\hwinfo\CMakeFiles\drivers__hwinfo.dir\drivers__hwinfo.pdb + TARGET_FILE = zephyr\drivers\hwinfo\libdrivers__hwinfo.a + TARGET_PDB = zephyr\drivers\hwinfo\libdrivers__hwinfo.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/hwinfo/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\hwinfo && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/hwinfo/edit_cache: phony zephyr/drivers/hwinfo/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/hwinfo/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\hwinfo && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/hwinfo/rebuild_cache: phony zephyr/drivers/hwinfo/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__pinctrl + + +############################################# +# Order-only phony target for drivers__pinctrl + +build cmake_object_order_depends_target_drivers__pinctrl: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj: C_COMPILER__drivers__pinctrl_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/common.c || cmake_object_order_depends_target_drivers__pinctrl + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir\common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir + OBJECT_FILE_DIR = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir + TARGET_COMPILE_PDB = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir\drivers__pinctrl.pdb + TARGET_PDB = zephyr\drivers\pinctrl\libdrivers__pinctrl.pdb + +build zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj: C_COMPILER__drivers__pinctrl_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/pinctrl_stm32.c || cmake_object_order_depends_target_drivers__pinctrl + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir\pinctrl_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir + OBJECT_FILE_DIR = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir + TARGET_COMPILE_PDB = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir\drivers__pinctrl.pdb + TARGET_PDB = zephyr\drivers\pinctrl\libdrivers__pinctrl.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__pinctrl + + +############################################# +# Link the static library zephyr\drivers\pinctrl\libdrivers__pinctrl.a + +build zephyr/drivers/pinctrl/libdrivers__pinctrl.a: C_STATIC_LIBRARY_LINKER__drivers__pinctrl_ zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\pinctrl\CMakeFiles\drivers__pinctrl.dir\drivers__pinctrl.pdb + TARGET_FILE = zephyr\drivers\pinctrl\libdrivers__pinctrl.a + TARGET_PDB = zephyr\drivers\pinctrl\libdrivers__pinctrl.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pinctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\pinctrl && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/edit_cache: phony zephyr/drivers/pinctrl/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\pinctrl && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/rebuild_cache: phony zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\pinctrl\renesas && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/renesas/edit_cache: phony zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\pinctrl\renesas && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/renesas/rebuild_cache: phony zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__reset + + +############################################# +# Order-only phony target for drivers__reset + +build cmake_object_order_depends_target_drivers__reset: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj: C_COMPILER__drivers__reset_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/reset_stm32.c || cmake_object_order_depends_target_drivers__reset + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\reset\CMakeFiles\drivers__reset.dir\reset_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\reset\CMakeFiles\drivers__reset.dir + OBJECT_FILE_DIR = zephyr\drivers\reset\CMakeFiles\drivers__reset.dir + TARGET_COMPILE_PDB = zephyr\drivers\reset\CMakeFiles\drivers__reset.dir\drivers__reset.pdb + TARGET_PDB = zephyr\drivers\reset\libdrivers__reset.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__reset + + +############################################# +# Link the static library zephyr\drivers\reset\libdrivers__reset.a + +build zephyr/drivers/reset/libdrivers__reset.a: C_STATIC_LIBRARY_LINKER__drivers__reset_ zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\reset\CMakeFiles\drivers__reset.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\reset\CMakeFiles\drivers__reset.dir\drivers__reset.pdb + TARGET_FILE = zephyr\drivers\reset\libdrivers__reset.a + TARGET_PDB = zephyr\drivers\reset\libdrivers__reset.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/reset/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\reset && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/reset/edit_cache: phony zephyr/drivers/reset/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/reset/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\reset && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/reset/rebuild_cache: phony zephyr/drivers/reset/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__serial + + +############################################# +# Order-only phony target for drivers__serial + +build cmake_object_order_depends_target_drivers__serial: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj: C_COMPILER__drivers__serial_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/uart_stm32.c || cmake_object_order_depends_target_drivers__serial + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\serial\CMakeFiles\drivers__serial.dir\uart_stm32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\serial\CMakeFiles\drivers__serial.dir + OBJECT_FILE_DIR = zephyr\drivers\serial\CMakeFiles\drivers__serial.dir + TARGET_COMPILE_PDB = zephyr\drivers\serial\CMakeFiles\drivers__serial.dir\drivers__serial.pdb + TARGET_PDB = zephyr\drivers\serial\libdrivers__serial.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__serial + + +############################################# +# Link the static library zephyr\drivers\serial\libdrivers__serial.a + +build zephyr/drivers/serial/libdrivers__serial.a: C_STATIC_LIBRARY_LINKER__drivers__serial_ zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\serial\CMakeFiles\drivers__serial.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\serial\CMakeFiles\drivers__serial.dir\drivers__serial.pdb + TARGET_FILE = zephyr\drivers\serial\libdrivers__serial.a + TARGET_PDB = zephyr\drivers\serial\libdrivers__serial.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/serial/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\serial && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/serial/edit_cache: phony zephyr/drivers/serial/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/serial/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\serial && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/serial/rebuild_cache: phony zephyr/drivers/serial/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__timer + + +############################################# +# Order-only phony target for drivers__timer + +build cmake_object_order_depends_target_drivers__timer: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj: C_COMPILER__drivers__timer_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/sys_clock_init.c || cmake_object_order_depends_target_drivers__timer + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir\sys_clock_init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir + OBJECT_FILE_DIR = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir + TARGET_COMPILE_PDB = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir\drivers__timer.pdb + TARGET_PDB = zephyr\drivers\timer\libdrivers__timer.pdb + +build zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj: C_COMPILER__drivers__timer_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/cortex_m_systick.c || cmake_object_order_depends_target_drivers__timer + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir\cortex_m_systick.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir + OBJECT_FILE_DIR = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir + TARGET_COMPILE_PDB = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir\drivers__timer.pdb + TARGET_PDB = zephyr\drivers\timer\libdrivers__timer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__timer + + +############################################# +# Link the static library zephyr\drivers\timer\libdrivers__timer.a + +build zephyr/drivers/timer/libdrivers__timer.a: C_STATIC_LIBRARY_LINKER__drivers__timer_ zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\drivers\timer\CMakeFiles\drivers__timer.dir\drivers__timer.pdb + TARGET_FILE = zephyr\drivers\timer\libdrivers__timer.a + TARGET_PDB = zephyr\drivers\timer\libdrivers__timer.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\timer && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/timer/edit_cache: phony zephyr/drivers/timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\drivers\timer && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/timer/rebuild_cache: phony zephyr/drivers/timer/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/acpica/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\acpica && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/acpica/edit_cache: phony modules/acpica/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/acpica/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\acpica && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/acpica/rebuild_cache: phony modules/acpica/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis/edit_cache: phony modules/cmsis/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis/rebuild_cache: phony modules/cmsis/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis-dsp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis-dsp && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis-dsp/edit_cache: phony modules/cmsis-dsp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis-dsp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis-dsp && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis-dsp/rebuild_cache: phony modules/cmsis-dsp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis-nn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis-nn && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis-nn/edit_cache: phony modules/cmsis-nn/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis-nn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis-nn && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis-nn/rebuild_cache: phony modules/cmsis-nn/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis_6/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis_6/edit_cache: phony modules/cmsis_6/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis_6/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis_6/rebuild_cache: phony modules/cmsis_6/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis_6/cmsis_6/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6\cmsis_6 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis_6/cmsis_6/edit_cache: phony modules/cmsis_6/cmsis_6/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis_6/cmsis_6/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6\cmsis_6 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis_6/cmsis_6/rebuild_cache: phony modules/cmsis_6/cmsis_6/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis_6/cmsis_6/CMSIS/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6\cmsis_6\CMSIS && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis_6/cmsis_6/CMSIS/edit_cache: phony modules/cmsis_6/cmsis_6/CMSIS/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis_6/cmsis_6/CMSIS/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6\cmsis_6\CMSIS && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis_6/cmsis_6/CMSIS/rebuild_cache: phony modules/cmsis_6/cmsis_6/CMSIS/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis_6/cmsis_6/CMSIS/Core/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6\cmsis_6\CMSIS\Core && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis_6/cmsis_6/CMSIS/Core/edit_cache: phony modules/cmsis_6/cmsis_6/CMSIS/Core/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis_6/cmsis_6/CMSIS/Core/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\cmsis_6\cmsis_6\CMSIS\Core && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis_6/cmsis_6/CMSIS/Core/rebuild_cache: phony modules/cmsis_6/cmsis_6/CMSIS/Core/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\fatfs && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/fatfs/edit_cache: phony modules/fatfs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\fatfs && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/fatfs/rebuild_cache: phony modules/fatfs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/adi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\adi && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/adi/edit_cache: phony modules/adi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/adi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\adi && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/adi/rebuild_cache: phony modules/adi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_afbr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_afbr && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_afbr/edit_cache: phony modules/hal_afbr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_afbr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_afbr && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_afbr/rebuild_cache: phony modules/hal_afbr/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_ambiq/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_ambiq && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_ambiq/edit_cache: phony modules/hal_ambiq/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_ambiq/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_ambiq && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_ambiq/rebuild_cache: phony modules/hal_ambiq/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/edit_cache: phony modules/atmel/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/rebuild_cache: phony modules/atmel/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/atmel/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/edit_cache: phony modules/atmel/asf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/rebuild_cache: phony modules/atmel/asf/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf\common && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/common/edit_cache: phony modules/atmel/asf/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf\common && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/common/rebuild_cache: phony modules/atmel/asf/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/common/components/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf\common\components && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/edit_cache: phony modules/atmel/asf/common/components/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf\common\components && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/rebuild_cache: phony modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf\common\components\wifi && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/wifi/edit_cache: phony modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\atmel\asf\common\components\wifi && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/wifi/rebuild_cache: phony modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_bouffalolab/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_bouffalolab && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_bouffalolab/edit_cache: phony modules/hal_bouffalolab/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_bouffalolab/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_bouffalolab && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_bouffalolab/rebuild_cache: phony modules/hal_bouffalolab/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_espressif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_espressif && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_espressif/edit_cache: phony modules/hal_espressif/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_espressif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_espressif && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_espressif/rebuild_cache: phony modules/hal_espressif/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_ethos_u/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_ethos_u && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_ethos_u/edit_cache: phony modules/hal_ethos_u/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_ethos_u/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_ethos_u && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_ethos_u/rebuild_cache: phony modules/hal_ethos_u/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_gigadevice/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_gigadevice && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_gigadevice/edit_cache: phony modules/hal_gigadevice/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_gigadevice/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_gigadevice && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_gigadevice/rebuild_cache: phony modules/hal_gigadevice/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_infineon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_infineon && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_infineon/edit_cache: phony modules/hal_infineon/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_infineon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_infineon && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_infineon/rebuild_cache: phony modules/hal_infineon/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_intel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_intel && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_intel/edit_cache: phony modules/hal_intel/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_intel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_intel && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_intel/rebuild_cache: phony modules/hal_intel/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/microchip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\microchip && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/microchip/edit_cache: phony modules/microchip/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/microchip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\microchip && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/microchip/rebuild_cache: phony modules/microchip/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/microchip/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/microchip/packs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\microchip\packs && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/microchip/packs/edit_cache: phony modules/microchip/packs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/microchip/packs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\microchip\packs && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/microchip/packs/rebuild_cache: phony modules/microchip/packs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_nordic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_nordic && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nordic/edit_cache: phony modules/hal_nordic/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nordic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_nordic && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nordic/rebuild_cache: phony modules/hal_nordic/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nuvoton/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nuvoton && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nuvoton/edit_cache: phony modules/nuvoton/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nuvoton/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nuvoton && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nuvoton/rebuild_cache: phony modules/nuvoton/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_nxp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_nxp && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nxp/edit_cache: phony modules/hal_nxp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nxp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_nxp && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nxp/rebuild_cache: phony modules/hal_nxp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_nxp\hal_nxp && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nxp/hal_nxp/edit_cache: phony modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_nxp\hal_nxp && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nxp/hal_nxp/rebuild_cache: phony modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/openisa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\openisa && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/openisa/edit_cache: phony modules/openisa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/openisa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\openisa && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/openisa/rebuild_cache: phony modules/openisa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/quicklogic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\quicklogic && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/quicklogic/edit_cache: phony modules/quicklogic/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/quicklogic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\quicklogic && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/quicklogic/rebuild_cache: phony modules/quicklogic/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_renesas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_renesas && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_renesas/edit_cache: phony modules/hal_renesas/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_renesas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_renesas && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_renesas/rebuild_cache: phony modules/hal_renesas/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/renesas/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_renesas/zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_renesas\zephyr && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_renesas/zephyr/edit_cache: phony modules/hal_renesas/zephyr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_renesas\zephyr && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_renesas/zephyr/rebuild_cache: phony modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/renesas/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_renesas/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_renesas\drivers && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_renesas/drivers/edit_cache: phony modules/hal_renesas/drivers/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_renesas\drivers && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_renesas/drivers/rebuild_cache: phony modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_rpi_pico/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_rpi_pico && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_rpi_pico/edit_cache: phony modules/hal_rpi_pico/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_rpi_pico/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_rpi_pico && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_rpi_pico/rebuild_cache: phony modules/hal_rpi_pico/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_sifli/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_sifli && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_sifli/edit_cache: phony modules/hal_sifli/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_sifli/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_sifli && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_sifli/rebuild_cache: phony modules/hal_sifli/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_silabs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_silabs && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_silabs/edit_cache: phony modules/hal_silabs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_silabs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_silabs && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_silabs/rebuild_cache: phony modules/hal_silabs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_st/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_st && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_st/edit_cache: phony modules/hal_st/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_st/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_st && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_st/rebuild_cache: phony modules/hal_st/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_stm32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_stm32 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_stm32/edit_cache: phony modules/hal_stm32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_stm32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_stm32 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_stm32/rebuild_cache: phony modules/hal_stm32/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/stm32/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target ..__modules__hal__stm32__stm32cube + + +############################################# +# Order-only phony target for ..__modules__hal__stm32__stm32cube + +build cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc/system_stm32g0xx.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\soc\system_stm32g0xx.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\soc + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_hal_rcc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_hal_rcc_ex.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_hal_pcd.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_hal_pcd_ex.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_ll_usb.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + +build modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj: C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_ C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c || cmake_object_order_depends_target_..__modules__hal__stm32__stm32cube + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 + DEP_FILE = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src\stm32g0xx_ll_utils.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + OBJECT_FILE_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\stm32g0xx\drivers\src + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target ..__modules__hal__stm32__stm32cube + + +############################################# +# Link the static library modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.a + +build modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a: C_STATIC_LIBRARY_LINKER__.2e.2e__modules__hal__stm32__stm32cube_ modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = modules\hal_stm32\stm32cube\CMakeFiles\..__modules__hal__stm32__stm32cube.dir\..__modules__hal__stm32__stm32cube.pdb + TARGET_FILE = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.a + TARGET_PDB = modules\hal_stm32\stm32cube\lib..__modules__hal__stm32__stm32cube.pdb + + +############################################# +# Utility command for edit_cache + +build modules/hal_stm32/stm32cube/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_stm32\stm32cube && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_stm32/stm32cube/edit_cache: phony modules/hal_stm32/stm32cube/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_stm32/stm32cube/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_stm32\stm32cube && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_stm32/stm32cube/rebuild_cache: phony modules/hal_stm32/stm32cube/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_stm32/stm32cube/stm32g0xx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_stm32\stm32cube\stm32g0xx && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_stm32/stm32cube/stm32g0xx/edit_cache: phony modules/hal_stm32/stm32cube/stm32g0xx/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_stm32/stm32cube/stm32g0xx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_stm32\stm32cube\stm32g0xx && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_stm32/stm32cube/stm32g0xx/rebuild_cache: phony modules/hal_stm32/stm32cube/stm32g0xx/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_tdk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_tdk && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_tdk/edit_cache: phony modules/hal_tdk/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_tdk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_tdk && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_tdk/rebuild_cache: phony modules/hal_tdk/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_telink/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_telink && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_telink/edit_cache: phony modules/hal_telink/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_telink/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_telink && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_telink/rebuild_cache: phony modules/hal_telink/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/edit_cache: phony modules/ti/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/rebuild_cache: phony modules/ti/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink/edit_cache: phony modules/ti/simplelink/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink/rebuild_cache: phony modules/ti/simplelink/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink\source\ti\devices && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink/source/ti/devices/edit_cache: phony modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink\source\ti\devices && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink/source/ti/devices/rebuild_cache: phony modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink_lpf3 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/edit_cache: phony modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink_lpf3 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/rebuild_cache: phony modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink_lpf3\source\ti\devices && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/devices/edit_cache: phony modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink_lpf3\source\ti\devices && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/devices/rebuild_cache: phony modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink_lpf3\source\ti\boards && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/boards/edit_cache: phony modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\simplelink_lpf3\source\ti\boards && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/boards/rebuild_cache: phony modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/mspm0/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\mspm0 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/mspm0/edit_cache: phony modules/ti/mspm0/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/mspm0/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\mspm0 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/mspm0/rebuild_cache: phony modules/ti/mspm0/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/mspm0/source/ti/devices/msp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\mspm0\source\ti\devices\msp && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/mspm0/source/ti/devices/msp/edit_cache: phony modules/ti/mspm0/source/ti/devices/msp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/mspm0/source/ti/devices/msp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\ti\mspm0\source\ti\devices\msp && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/mspm0/source/ti/devices/msp/rebuild_cache: phony modules/ti/mspm0/source/ti/devices/msp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_wch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_wch && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_wch/edit_cache: phony modules/hal_wch/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_wch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_wch && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_wch/rebuild_cache: phony modules/hal_wch/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_wurthelektronik/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_wurthelektronik && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_wurthelektronik/edit_cache: phony modules/hal_wurthelektronik/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hal_wurthelektronik && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_wurthelektronik/rebuild_cache: phony modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\xtensa && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/xtensa/edit_cache: phony modules/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\xtensa && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/xtensa/rebuild_cache: phony modules/xtensa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hostap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hostap && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hostap/edit_cache: phony modules/hostap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hostap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\hostap && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hostap/rebuild_cache: phony modules/hostap/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/liblc3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\liblc3 && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/liblc3/edit_cache: phony modules/liblc3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/liblc3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\liblc3 && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/liblc3/rebuild_cache: phony modules/liblc3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/libmctp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\libmctp && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libmctp/edit_cache: phony modules/libmctp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/libmctp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\libmctp && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libmctp/rebuild_cache: phony modules/libmctp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/libmetal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\libmetal && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libmetal/edit_cache: phony modules/libmetal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/libmetal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\libmetal && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libmetal/rebuild_cache: phony modules/libmetal/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/libsbc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\libsbc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libsbc/edit_cache: phony modules/libsbc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/libsbc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\libsbc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libsbc/rebuild_cache: phony modules/libsbc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/littlefs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\littlefs && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/littlefs/edit_cache: phony modules/littlefs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/littlefs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\littlefs && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/littlefs/rebuild_cache: phony modules/littlefs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/lora-basics-modem/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\lora-basics-modem && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/lora-basics-modem/edit_cache: phony modules/lora-basics-modem/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/lora-basics-modem/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\lora-basics-modem && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/lora-basics-modem/rebuild_cache: phony modules/lora-basics-modem/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/loramac-node/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\loramac-node && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/loramac-node/edit_cache: phony modules/loramac-node/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/loramac-node/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\loramac-node && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/loramac-node/rebuild_cache: phony modules/loramac-node/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/lvgl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\lvgl && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/lvgl/edit_cache: phony modules/lvgl/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/lvgl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\lvgl && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/lvgl/rebuild_cache: phony modules/lvgl/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\mbedtls && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mbedtls/edit_cache: phony modules/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\mbedtls && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mbedtls/rebuild_cache: phony modules/mbedtls/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/mcuboot/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\mcuboot && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mcuboot/edit_cache: phony modules/mcuboot/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/mcuboot/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\mcuboot && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mcuboot/rebuild_cache: phony modules/mcuboot/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/mipi-sys-t/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\mipi-sys-t && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mipi-sys-t/edit_cache: phony modules/mipi-sys-t/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/mipi-sys-t/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\mipi-sys-t && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mipi-sys-t/rebuild_cache: phony modules/mipi-sys-t/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nanopb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nanopb && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nanopb/edit_cache: phony modules/nanopb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nanopb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nanopb && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nanopb/rebuild_cache: phony modules/nanopb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nrf_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nrf_wifi && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf_wifi/edit_cache: phony modules/nrf_wifi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nrf_wifi && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf_wifi/rebuild_cache: phony modules/nrf_wifi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/open-amp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\open-amp && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/open-amp/edit_cache: phony modules/open-amp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/open-amp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\open-amp && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/open-amp/rebuild_cache: phony modules/open-amp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\openthread && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/openthread/edit_cache: phony modules/openthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\openthread && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/openthread/rebuild_cache: phony modules/openthread/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/percepio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\percepio && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/percepio/edit_cache: phony modules/percepio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/percepio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\percepio && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/percepio/rebuild_cache: phony modules/percepio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/picolibc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\picolibc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/picolibc/edit_cache: phony modules/picolibc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/picolibc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\picolibc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/picolibc/rebuild_cache: phony modules/picolibc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/segger/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\segger && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/segger/edit_cache: phony modules/segger/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/segger/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\segger && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/segger/rebuild_cache: phony modules/segger/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/trusted-firmware-a/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\trusted-firmware-a && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/trusted-firmware-a/edit_cache: phony modules/trusted-firmware-a/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/trusted-firmware-a/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\trusted-firmware-a && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/trusted-firmware-a/rebuild_cache: phony modules/trusted-firmware-a/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/trusted-firmware-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\trusted-firmware-m && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/trusted-firmware-m/edit_cache: phony modules/trusted-firmware-m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/trusted-firmware-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\trusted-firmware-m && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/trusted-firmware-m/rebuild_cache: phony modules/trusted-firmware-m/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/uoscore-uedhoc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\uoscore-uedhoc && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/uoscore-uedhoc/edit_cache: phony modules/uoscore-uedhoc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\uoscore-uedhoc && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/uoscore-uedhoc/rebuild_cache: phony modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/zcbor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\zcbor && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/zcbor/edit_cache: phony modules/zcbor/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/zcbor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\zcbor && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/zcbor/rebuild_cache: phony modules/zcbor/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nrf_hw_models/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nrf_hw_models && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf_hw_models/edit_cache: phony modules/nrf_hw_models/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf_hw_models/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\modules\nrf_hw_models && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf_hw_models/rebuild_cache: phony modules/nrf_hw_models/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target kernel + + +############################################# +# Order-only phony target for kernel + +build cmake_object_order_depends_target_kernel: phony || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/main_weak.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\main_weak.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/banner.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\banner.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/busy_wait.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\busy_wait.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/device.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\device.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/errno.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\errno.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/fatal.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\fatal.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/init.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/kheap.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\kheap.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/mem_slab.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\mem_slab.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/float.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\float.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/version.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\version.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/idle.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\idle.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/mailbox.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\mailbox.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/msg_q.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\msg_q.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/mutex.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\mutex.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/queue.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\queue.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/sem.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\sem.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/stack.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\stack.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/system_work_q.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\system_work_q.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/work.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\work.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/condvar.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\condvar.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/thread.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\thread.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/sched.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\sched.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/pipe.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\pipe.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/timeslicing.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\timeslicing.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/timeout.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\timeout.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/timer.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\timer.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/atomic_c.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\atomic_c.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/mempool.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\mempool.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + +build zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj: C_COMPILER__kernel_unscanned_ C$:/Users/iteedi/zephyrproject/zephyr/kernel/dynamic_disabled.c || cmake_object_order_depends_target_kernel + DEFINES = -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 + DEP_FILE = zephyr\kernel\CMakeFiles\kernel.dir\dynamic_disabled.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 + INCLUDES = -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + OBJECT_FILE_DIR = zephyr\kernel\CMakeFiles\kernel.dir + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_PDB = zephyr\kernel\libkernel.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target kernel + + +############################################# +# Link the static library zephyr\kernel\libkernel.a + +build zephyr/kernel/libkernel.a: C_STATIC_LIBRARY_LINKER__kernel_ zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj || zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr\kernel\CMakeFiles\kernel.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = zephyr\kernel\CMakeFiles\kernel.dir\kernel.pdb + TARGET_FILE = zephyr\kernel\libkernel.a + TARGET_PDB = zephyr\kernel\libkernel.pdb + + +############################################# +# Utility command for edit_cache + +build zephyr/kernel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\kernel && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/kernel/edit_cache: phony zephyr/kernel/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/kernel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\kernel && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/kernel/rebuild_cache: phony zephyr/kernel/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for flash + +build zephyr/cmake/flash/flash: phony zephyr/cmake/flash/CMakeFiles/flash + + +############################################# +# Utility command for debug + +build zephyr/cmake/flash/debug: phony zephyr/cmake/flash/CMakeFiles/debug + + +############################################# +# Utility command for debugserver + +build zephyr/cmake/flash/debugserver: phony zephyr/cmake/flash/CMakeFiles/debugserver + + +############################################# +# Utility command for attach + +build zephyr/cmake/flash/attach: phony zephyr/cmake/flash/CMakeFiles/attach + + +############################################# +# Utility command for rtt + +build zephyr/cmake/flash/rtt: phony zephyr/cmake/flash/CMakeFiles/rtt + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\flash && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/flash/edit_cache: phony zephyr/cmake/flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\flash && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/flash/rebuild_cache: phony zephyr/cmake/flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for zephyr\cmake\flash\CMakeFiles\flash + +build zephyr/cmake/flash/CMakeFiles/flash | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && cmake -E echo "WARNING: CMake flash target is deprecated, call west directly instead" && "C:\Program Files\CMake\bin\cmake.exe" -DTARGET=flash -DDEPENDENCIES="" -P C:/Users/iteedi/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && "C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe -m west flash" + DESC = Flashing ews + pool = console + + +############################################# +# Custom command for zephyr\cmake\flash\CMakeFiles\debug + +build zephyr/cmake/flash/CMakeFiles/debug | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/debug: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && cmake -E echo "WARNING: CMake debug target is deprecated, call west directly instead" && "C:\Program Files\CMake\bin\cmake.exe" -DTARGET=debug -DDEPENDENCIES="" -P C:/Users/iteedi/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && "C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe -m west debug" + DESC = Debugging ews + pool = console + + +############################################# +# Custom command for zephyr\cmake\flash\CMakeFiles\debugserver + +build zephyr/cmake/flash/CMakeFiles/debugserver | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/debugserver: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && cmake -E echo "WARNING: CMake debugserver target is deprecated, call west directly instead" && "C:\Program Files\CMake\bin\cmake.exe" -DTARGET=debugserver -DDEPENDENCIES="" -P C:/Users/iteedi/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && "C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe -m west debugserver" + DESC = Debugging ews + pool = console + + +############################################# +# Custom command for zephyr\cmake\flash\CMakeFiles\attach + +build zephyr/cmake/flash/CMakeFiles/attach | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/attach: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && cmake -E echo "WARNING: CMake attach target is deprecated, call west directly instead" && "C:\Program Files\CMake\bin\cmake.exe" -DTARGET=attach -DDEPENDENCIES="" -P C:/Users/iteedi/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && "C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe -m west attach" + DESC = Debugging ews + pool = console + + +############################################# +# Custom command for zephyr\cmake\flash\CMakeFiles\rtt + +build zephyr/cmake/flash/CMakeFiles/rtt | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/rtt: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && cmake -E echo "WARNING: CMake rtt target is deprecated, call west directly instead" && "C:\Program Files\CMake\bin\cmake.exe" -DTARGET=rtt -DDEPENDENCIES="" -P C:/Users/iteedi/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && "C:\Program Files\CMake\bin\cmake.exe" -E env ZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr C:/Users/iteedi/zephyrproject/.venv/Scripts/python.exe -m west rtt" + DESC = RTT ews + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for usage + +build zephyr/cmake/usage/usage: phony zephyr/cmake/usage/CMakeFiles/usage + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/usage/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\usage && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/usage/edit_cache: phony zephyr/cmake/usage/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/usage/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\usage && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/usage/rebuild_cache: phony zephyr/cmake/usage/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for zephyr\cmake\usage\CMakeFiles\usage + +build zephyr/cmake/usage/CMakeFiles/usage | ${cmake_ninja_workdir}zephyr/cmake/usage/CMakeFiles/usage: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\usage && "C:\Program Files\CMake\bin\cmake.exe" -DZEPHYR_BASE=C:/Users/iteedi/zephyrproject/zephyr -DCMAKE_MAKE_PROGRAM=C:/Users/iteedi/AppData/Local/Microsoft/WinGet/Links/ninja.exe -P C:/Users/iteedi/zephyrproject/zephyr/cmake/usage/usage.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for ram_report + +build zephyr/cmake/reports/ram_report: phony zephyr/cmake/reports/CMakeFiles/ram_report zephyr/zephyr.elf + + +############################################# +# Utility command for ram_plot + +build zephyr/cmake/reports/ram_plot: phony zephyr/cmake/reports/CMakeFiles/ram_plot zephyr/cmake/reports/ram_report + + +############################################# +# Utility command for rom_report + +build zephyr/cmake/reports/rom_report: phony zephyr/cmake/reports/CMakeFiles/rom_report zephyr/zephyr.elf + + +############################################# +# Utility command for rom_plot + +build zephyr/cmake/reports/rom_plot: phony zephyr/cmake/reports/CMakeFiles/rom_plot zephyr/cmake/reports/rom_report + + +############################################# +# Utility command for footprint + +build zephyr/cmake/reports/footprint: phony zephyr/cmake/reports/CMakeFiles/footprint zephyr/cmake/reports/ram_report zephyr/cmake/reports/rom_report + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/reports/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\reports && "C:\Program Files\CMake\bin\cmake-gui.exe" -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/reports/edit_cache: phony zephyr/cmake/reports/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/reports/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\zephyr\cmake\reports && "C:\Program Files\CMake\bin\cmake.exe" --regenerate-during-build -SC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite -BC:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/reports/rebuild_cache: phony zephyr/cmake/reports/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for zephyr\cmake\reports\CMakeFiles\ram_report + +build zephyr/cmake/reports/CMakeFiles/ram_report | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/ram_report: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/footprint/size_report -k C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf -z C:/Users/iteedi/zephyrproject/zephyr -o C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build --workspace=C:/Users/iteedi/zephyrproject -d 99 --json ram.json ram" + pool = console + + +############################################# +# Custom command for zephyr\cmake\reports\CMakeFiles\ram_plot + +build zephyr/cmake/reports/CMakeFiles/ram_plot | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/ram_plot: CUSTOM_COMMAND || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/ram_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/footprint/plot.py ram.json" + pool = console + + +############################################# +# Custom command for zephyr\cmake\reports\CMakeFiles\rom_report + +build zephyr/cmake/reports/CMakeFiles/rom_report | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/rom_report: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/footprint/size_report -k C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf -z C:/Users/iteedi/zephyrproject/zephyr -o C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build --workspace=C:/Users/iteedi/zephyrproject -d 99 --json rom.json rom" + pool = console + + +############################################# +# Custom command for zephyr\cmake\reports\CMakeFiles\rom_plot + +build zephyr/cmake/reports/CMakeFiles/rom_plot | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/rom_plot: CUSTOM_COMMAND || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/rom_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build && C:\Users\iteedi\zephyrproject\.venv\Scripts\python.exe C:/Users/iteedi/zephyrproject/zephyr/scripts/footprint/plot.py rom.json" + pool = console + + +############################################# +# Phony custom command for zephyr\cmake\reports\CMakeFiles\footprint + +build zephyr/cmake/reports/CMakeFiles/footprint | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/footprint: phony || app/libapp.a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/ram_report zephyr/cmake/reports/rom_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/can/libdrivers__can.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/hwinfo/libdrivers__hwinfo.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/reset/libdrivers__reset.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/timer/libdrivers__timer.a zephyr/drivers/usb/device/libdrivers__usb__device.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + +# ============================================================================= +# Target aliases. + +build ..__modules__hal__stm32__stm32cube: phony modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a + +build app: phony app/libapp.a + +build arch__arm__core: phony zephyr/arch/arch/arm/core/libarch__arm__core.a + +build arch__arm__core__cortex_m: phony zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +build arch__common: phony zephyr/arch/common/libarch__common.a + +build attach: phony zephyr/cmake/flash/attach + +build build_info_yaml_saved: phony zephyr/build_info_yaml_saved + +build debug: phony zephyr/cmake/flash/debug + +build debugserver: phony zephyr/cmake/flash/debugserver + +build device_api_ld_target: phony zephyr/device_api_ld_target + +build driver_validation_h_target: phony zephyr/driver_validation_h_target + +build drivers__can: phony zephyr/drivers/can/libdrivers__can.a + +build drivers__can__transceiver: phony zephyr/drivers/can/transceiver/libdrivers__can__transceiver.a + +build drivers__clock_control: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +build drivers__console: phony zephyr/drivers/console/libdrivers__console.a + +build drivers__gpio: phony zephyr/drivers/gpio/libdrivers__gpio.a + +build drivers__hwinfo: phony zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +build drivers__interrupt_controller: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build drivers__pinctrl: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build drivers__reset: phony zephyr/drivers/reset/libdrivers__reset.a + +build drivers__serial: phony zephyr/drivers/serial/libdrivers__serial.a + +build drivers__timer: phony zephyr/drivers/timer/libdrivers__timer.a + +build drivers__usb__device: phony zephyr/drivers/usb/device/libdrivers__usb__device.a + +build flash: phony zephyr/cmake/flash/flash + +build footprint: phony zephyr/cmake/reports/footprint + +build initlevels: phony zephyr/initlevels + +build isr_tables: phony zephyr/arch/common/libisr_tables.a + +build kernel: phony zephyr/kernel/libkernel.a + +build kobj_types_h_target: phony zephyr/kobj_types_h_target + +build lib..__modules__hal__stm32__stm32cube.a: phony modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a + +build lib__libc__common: phony zephyr/lib/libc/common/liblib__libc__common.a + +build lib__libc__picolibc: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build lib__posix__c_lib_ext: phony zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +build libapp.a: phony app/libapp.a + +build libarch__arm__core.a: phony zephyr/arch/arch/arm/core/libarch__arm__core.a + +build libarch__arm__core__cortex_m.a: phony zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +build libarch__common.a: phony zephyr/arch/common/libarch__common.a + +build libdrivers__can.a: phony zephyr/drivers/can/libdrivers__can.a + +build libdrivers__can__transceiver.a: phony zephyr/drivers/can/transceiver/libdrivers__can__transceiver.a + +build libdrivers__clock_control.a: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +build libdrivers__console.a: phony zephyr/drivers/console/libdrivers__console.a + +build libdrivers__gpio.a: phony zephyr/drivers/gpio/libdrivers__gpio.a + +build libdrivers__hwinfo.a: phony zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +build libdrivers__interrupt_controller.a: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build libdrivers__pinctrl.a: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build libdrivers__reset.a: phony zephyr/drivers/reset/libdrivers__reset.a + +build libdrivers__serial.a: phony zephyr/drivers/serial/libdrivers__serial.a + +build libdrivers__timer.a: phony zephyr/drivers/timer/libdrivers__timer.a + +build libdrivers__usb__device.a: phony zephyr/drivers/usb/device/libdrivers__usb__device.a + +build libisr_tables.a: phony zephyr/arch/common/libisr_tables.a + +build libkernel.a: phony zephyr/kernel/libkernel.a + +build liblib__libc__common.a: phony zephyr/lib/libc/common/liblib__libc__common.a + +build liblib__libc__picolibc.a: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build liblib__posix__c_lib_ext.a: phony zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +build libzephyr.a: phony zephyr/libzephyr.a + +build linker_zephyr_final_script_target: phony zephyr/linker_zephyr_final_script_target + +build linker_zephyr_prebuilt_script_target: phony zephyr/linker_zephyr_prebuilt_script_target + +build offsets: phony zephyr/offsets + +build offsets_h: phony zephyr/offsets_h + +build ram_plot: phony zephyr/cmake/reports/ram_plot + +build ram_report: phony zephyr/cmake/reports/ram_report + +build rom_plot: phony zephyr/cmake/reports/rom_plot + +build rom_report: phony zephyr/cmake/reports/rom_report + +build rtt: phony zephyr/cmake/flash/rtt + +build run: phony zephyr/run + +build syscall_list_h_target: phony zephyr/syscall_list_h_target + +build usage: phony zephyr/cmake/usage/usage + +build version_h: phony zephyr/version_h + +build zephyr: phony zephyr/libzephyr.a + +build zephyr.elf: phony zephyr/zephyr.elf + +build zephyr_final: phony zephyr/zephyr.elf + +build zephyr_pre0: phony zephyr/zephyr_pre0.elf + +build zephyr_pre0.elf: phony zephyr/zephyr_pre0.elf + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build + +build all: phony app/libapp.a zephyr/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica + +build modules/acpica/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi + +build modules/adi/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel + +build modules/atmel/all: phony modules/atmel/asf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf + +build modules/atmel/asf/all: phony modules/atmel/asf/common/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common + +build modules/atmel/asf/common/all: phony modules/atmel/asf/common/components/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components + +build modules/atmel/asf/common/components/all: phony modules/atmel/asf/common/components/wifi/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi + +build modules/atmel/asf/common/components/wifi/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis + +build modules/cmsis/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp + +build modules/cmsis-dsp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn + +build modules/cmsis-nn/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6 + +build modules/cmsis_6/all: phony modules/cmsis_6/cmsis_6/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6 + +build modules/cmsis_6/cmsis_6/all: phony modules/cmsis_6/cmsis_6/CMSIS/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS + +build modules/cmsis_6/cmsis_6/CMSIS/all: phony modules/cmsis_6/cmsis_6/CMSIS/Core/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core + +build modules/cmsis_6/cmsis_6/CMSIS/Core/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs + +build modules/fatfs/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr + +build modules/hal_afbr/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq + +build modules/hal_ambiq/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab + +build modules/hal_bouffalolab/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif + +build modules/hal_espressif/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u + +build modules/hal_ethos_u/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice + +build modules/hal_gigadevice/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon + +build modules/hal_infineon/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel + +build modules/hal_intel/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic + +build modules/hal_nordic/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp + +build modules/hal_nxp/all: phony modules/hal_nxp/hal_nxp/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp + +build modules/hal_nxp/hal_nxp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas + +build modules/hal_renesas/all: phony modules/hal_renesas/zephyr/all modules/hal_renesas/drivers/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers + +build modules/hal_renesas/drivers/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr + +build modules/hal_renesas/zephyr/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico + +build modules/hal_rpi_pico/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli + +build modules/hal_sifli/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs + +build modules/hal_silabs/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st + +build modules/hal_st/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32 + +build modules/hal_stm32/all: phony modules/hal_stm32/stm32cube/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube + +build modules/hal_stm32/stm32cube/all: phony modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a modules/hal_stm32/stm32cube/stm32g0xx/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx + +build modules/hal_stm32/stm32cube/stm32g0xx/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk + +build modules/hal_tdk/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink + +build modules/hal_telink/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch + +build modules/hal_wch/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik + +build modules/hal_wurthelektronik/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap + +build modules/hostap/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3 + +build modules/liblc3/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp + +build modules/libmctp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal + +build modules/libmetal/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc + +build modules/libsbc/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs + +build modules/littlefs/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem + +build modules/lora-basics-modem/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node + +build modules/loramac-node/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl + +build modules/lvgl/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls + +build modules/mbedtls/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot + +build modules/mcuboot/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip + +build modules/microchip/all: phony modules/microchip/packs/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs + +build modules/microchip/packs/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t + +build modules/mipi-sys-t/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb + +build modules/nanopb/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models + +build modules/nrf_hw_models/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi + +build modules/nrf_wifi/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton + +build modules/nuvoton/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp + +build modules/open-amp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa + +build modules/openisa/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread + +build modules/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio + +build modules/percepio/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc + +build modules/picolibc/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic + +build modules/quicklogic/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger + +build modules/segger/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti + +build modules/ti/all: phony modules/ti/simplelink/all modules/ti/simplelink_lpf3/all modules/ti/mspm0/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0 + +build modules/ti/mspm0/all: phony modules/ti/mspm0/source/ti/devices/msp/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp + +build modules/ti/mspm0/source/ti/devices/msp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink + +build modules/ti/simplelink/all: phony modules/ti/simplelink/source/ti/devices/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices + +build modules/ti/simplelink/source/ti/devices/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3 + +build modules/ti/simplelink_lpf3/all: phony modules/ti/simplelink_lpf3/source/ti/devices/all modules/ti/simplelink_lpf3/source/ti/boards/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards + +build modules/ti/simplelink_lpf3/source/ti/boards/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices + +build modules/ti/simplelink_lpf3/source/ti/devices/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a + +build modules/trusted-firmware-a/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m + +build modules/trusted-firmware-m/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc + +build modules/uoscore-uedhoc/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa + +build modules/xtensa/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor + +build modules/zcbor/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr + +build zephyr/all: phony zephyr/libzephyr.a zephyr/offsets zephyr/zephyr_pre0.elf zephyr/zephyr.elf zephyr/build_info_yaml_saved zephyr/arch/all zephyr/lib/all zephyr/soc/all zephyr/boards/all zephyr/subsys/all zephyr/drivers/all modules/acpica/all modules/cmsis/all modules/cmsis-dsp/all modules/cmsis-nn/all modules/cmsis_6/all modules/fatfs/all modules/adi/all modules/hal_afbr/all modules/hal_ambiq/all modules/atmel/all modules/hal_bouffalolab/all modules/hal_espressif/all modules/hal_ethos_u/all modules/hal_gigadevice/all modules/hal_infineon/all modules/hal_intel/all modules/microchip/all modules/hal_nordic/all modules/nuvoton/all modules/hal_nxp/all modules/openisa/all modules/quicklogic/all modules/hal_renesas/all modules/hal_rpi_pico/all modules/hal_sifli/all modules/hal_silabs/all modules/hal_st/all modules/hal_stm32/all modules/hal_tdk/all modules/hal_telink/all modules/ti/all modules/hal_wch/all modules/hal_wurthelektronik/all modules/xtensa/all modules/hostap/all modules/liblc3/all modules/libmctp/all modules/libmetal/all modules/libsbc/all modules/littlefs/all modules/lora-basics-modem/all modules/loramac-node/all modules/lvgl/all modules/mbedtls/all modules/mcuboot/all modules/mipi-sys-t/all modules/nanopb/all modules/nrf_wifi/all modules/open-amp/all modules/openthread/all modules/percepio/all modules/picolibc/all modules/segger/all modules/trusted-firmware-a/all modules/trusted-firmware-m/all modules/uoscore-uedhoc/all modules/zcbor/all modules/nrf_hw_models/all zephyr/kernel/all zephyr/cmake/flash/all zephyr/cmake/usage/all zephyr/cmake/reports/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch + +build zephyr/arch/all: phony zephyr/arch/common/all zephyr/arch/arch/arm/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm + +build zephyr/arch/arch/arm/all: phony zephyr/arch/arch/arm/core/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core + +build zephyr/arch/arch/arm/core/all: phony zephyr/arch/arch/arm/core/libarch__arm__core.a zephyr/arch/arch/arm/core/cortex_m/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m + +build zephyr/arch/arch/arm/core/cortex_m/all: phony zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common + +build zephyr/arch/common/all: phony zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards + +build zephyr/boards/all: phony zephyr/boards/shields/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields + +build zephyr/boards/shields/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash + +build zephyr/cmake/flash/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports + +build zephyr/cmake/reports/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage + +build zephyr/cmake/usage/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers + +build zephyr/drivers/all: phony zephyr/drivers/disk/all zephyr/drivers/firmware/all zephyr/drivers/interrupt_controller/all zephyr/drivers/misc/all zephyr/drivers/pcie/all zephyr/drivers/usb/all zephyr/drivers/usb_c/all zephyr/drivers/can/all zephyr/drivers/clock_control/all zephyr/drivers/console/all zephyr/drivers/gpio/all zephyr/drivers/hwinfo/all zephyr/drivers/pinctrl/all zephyr/drivers/reset/all zephyr/drivers/serial/all zephyr/drivers/timer/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can + +build zephyr/drivers/can/all: phony zephyr/drivers/can/libdrivers__can.a zephyr/drivers/can/transceiver/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver + +build zephyr/drivers/can/transceiver/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control + +build zephyr/drivers/clock_control/all: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console + +build zephyr/drivers/console/all: phony zephyr/drivers/console/libdrivers__console.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk + +build zephyr/drivers/disk/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware + +build zephyr/drivers/firmware/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio + +build zephyr/drivers/gpio/all: phony zephyr/drivers/gpio/libdrivers__gpio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo + +build zephyr/drivers/hwinfo/all: phony zephyr/drivers/hwinfo/libdrivers__hwinfo.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller + +build zephyr/drivers/interrupt_controller/all: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc + +build zephyr/drivers/misc/all: phony zephyr/drivers/misc/interconn/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn + +build zephyr/drivers/misc/interconn/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie + +build zephyr/drivers/pcie/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl + +build zephyr/drivers/pinctrl/all: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/pinctrl/renesas/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas + +build zephyr/drivers/pinctrl/renesas/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset + +build zephyr/drivers/reset/all: phony zephyr/drivers/reset/libdrivers__reset.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial + +build zephyr/drivers/serial/all: phony zephyr/drivers/serial/libdrivers__serial.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer + +build zephyr/drivers/timer/all: phony zephyr/drivers/timer/libdrivers__timer.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb + +build zephyr/drivers/usb/all: phony zephyr/drivers/usb/device/all zephyr/drivers/usb/common/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common + +build zephyr/drivers/usb/common/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device + +build zephyr/drivers/usb/device/all: phony zephyr/drivers/usb/device/libdrivers__usb__device.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c + +build zephyr/drivers/usb_c/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel + +build zephyr/kernel/all: phony zephyr/kernel/libkernel.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib + +build zephyr/lib/all: phony zephyr/lib/libc/all zephyr/lib/posix/all zephyr/lib/hash/all zephyr/lib/heap/all zephyr/lib/mem_blocks/all zephyr/lib/midi2/all zephyr/lib/os/all zephyr/lib/utils/all zephyr/lib/uuid/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash + +build zephyr/lib/hash/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap + +build zephyr/lib/heap/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc + +build zephyr/lib/libc/all: phony zephyr/lib/libc/picolibc/all zephyr/lib/libc/common/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common + +build zephyr/lib/libc/common/all: phony zephyr/lib/libc/common/liblib__libc__common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc + +build zephyr/lib/libc/picolibc/all: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks + +build zephyr/lib/mem_blocks/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2 + +build zephyr/lib/midi2/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os + +build zephyr/lib/os/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix + +build zephyr/lib/posix/all: phony zephyr/lib/posix/c_lang_support_r/all zephyr/lib/posix/c_lib_ext/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r + +build zephyr/lib/posix/c_lang_support_r/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext + +build zephyr/lib/posix/c_lib_ext/all: phony zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils + +build zephyr/lib/utils/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid + +build zephyr/lib/uuid/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc + +build zephyr/soc/all: phony zephyr/soc/common/all zephyr/soc/soc/stm32g0b1xx/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common + +build zephyr/soc/common/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx + +build zephyr/soc/soc/stm32g0b1xx/all: phony zephyr/soc/soc/stm32g0b1xx/common/all zephyr/soc/soc/stm32g0b1xx/stm32g0x/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common + +build zephyr/soc/soc/stm32g0b1xx/common/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x + +build zephyr/soc/soc/stm32g0b1xx/stm32g0x/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys + +build zephyr/subsys/all: phony zephyr/subsys/canbus/all zephyr/subsys/debug/all zephyr/subsys/fb/all zephyr/subsys/fs/all zephyr/subsys/gnss/all zephyr/subsys/instrumentation/all zephyr/subsys/ipc/all zephyr/subsys/logging/all zephyr/subsys/mem_mgmt/all zephyr/subsys/mgmt/all zephyr/subsys/modbus/all zephyr/subsys/pm/all zephyr/subsys/pmci/all zephyr/subsys/portability/all zephyr/subsys/random/all zephyr/subsys/rtio/all zephyr/subsys/sd/all zephyr/subsys/stats/all zephyr/subsys/storage/all zephyr/subsys/task_wdt/all zephyr/subsys/testsuite/all zephyr/subsys/tracing/all zephyr/subsys/usb/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus + +build zephyr/subsys/canbus/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug + +build zephyr/subsys/debug/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb + +build zephyr/subsys/fb/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs + +build zephyr/subsys/fs/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss + +build zephyr/subsys/gnss/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation + +build zephyr/subsys/instrumentation/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc + +build zephyr/subsys/ipc/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging + +build zephyr/subsys/logging/all: phony zephyr/subsys/logging/backends/all zephyr/subsys/logging/frontends/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends + +build zephyr/subsys/logging/backends/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends + +build zephyr/subsys/logging/frontends/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt + +build zephyr/subsys/mem_mgmt/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt + +build zephyr/subsys/mgmt/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus + +build zephyr/subsys/modbus/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm + +build zephyr/subsys/pm/all: phony zephyr/subsys/pm/policy/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy + +build zephyr/subsys/pm/policy/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci + +build zephyr/subsys/pmci/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability + +build zephyr/subsys/portability/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random + +build zephyr/subsys/random/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio + +build zephyr/subsys/rtio/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd + +build zephyr/subsys/sd/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats + +build zephyr/subsys/stats/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage + +build zephyr/subsys/storage/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt + +build zephyr/subsys/task_wdt/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite + +build zephyr/subsys/testsuite/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing + +build zephyr/subsys/tracing/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb + +build zephyr/subsys/usb/all: phony zephyr/subsys/usb/device/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device + +build zephyr/subsys/usb/device/all: phony zephyr/subsys/usb/device/class/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class + +build zephyr/subsys/usb/device/class/all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/cmake_install.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/cmake_install.cmake: RERUN_CMAKE | C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeASMCompiler.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeASMInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCCompiler.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCXXCompiler.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCXXInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCommonLanguageInclude.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCompilerIdDetection.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineASMCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeGenericSystem.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeInitializeConfigs.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeLanguageInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeNinjaFindMake.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeSystem.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeSystemSpecificInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeSystemSpecificInitialize.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeTestASMCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCCompilerFlag.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCSourceCompiles.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCXXCompilerFlag.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCXXSourceCompiles.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Diab-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-ASM.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-C.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-CXX.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Renesas-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/ExternalProject.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/ExternalProject/shared_internal_commands.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPackageHandleStandardArgs.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPackageMessage.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPython3.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPython/Support.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectASMLinker.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectCLinker.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectCXXLinker.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CheckCompilerFlag.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CheckSourceCompiles.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Platform/Generic.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/Zephyr-sdkConfig.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/Zephyr-sdkConfigVersion.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/Kconfig C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/generic.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/host-tools.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/target.cmake C$:/Users/iteedi/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/adi/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ambiq/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components/wifi/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/bsp_sedi/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/subsys/logging/backends/Kconfig.i2c C$:/Users/iteedi/zephyrproject/modules/hal/libmetal/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/microchip/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/microchip/packs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/nuvoton/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/nxp/zephyr/src/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/openisa/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/quicklogic/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/renesas/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/renesas/drivers/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/renesas/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/st/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/stm32/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/stm32/dts/st/g0/stm32g0b1r(b-c-e)tx-pinctrl.dtsi C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/tdk/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/telink/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/telink/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/telink/tlsr9/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/ti/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink/source/ti/devices/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/xtensa/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl/Kconfig C$:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/lib/libmctp/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/open-amp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/picolibc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/picolibc/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/CMakeLists.txt C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/Kconfig.ews C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/board.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/board.yml C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews_defconfig C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf C$:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/Kconfig.constants C$:/Users/iteedi/zephyrproject/zephyr/Kconfig.zephyr C$:/Users/iteedi/zephyrproject/zephyr/VERSION C$:/Users/iteedi/zephyrproject/zephyr/arch/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arc/core/dsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arc/core/mpu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/core/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/core/cortex_r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/core/xen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/Kconfig.vfp C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_a_r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/tz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/mmu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/mpu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/mips/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/posix/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/posix/Kconfig.natsim_optional C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/Kconfig.isa C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/andes/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig.core C$:/Users/iteedi/zephyrproject/zephyr/arch/rx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/sparc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/x86/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/x86/core/Kconfig.ia32 C$:/Users/iteedi/zephyrproject/zephyr/arch/x86/core/Kconfig.intel64 C$:/Users/iteedi/zephyrproject/zephyr/arch/xtensa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/boards/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/Kconfig.v2 C$:/Users/iteedi/zephyrproject/zephyr/boards/common/jlink.board.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/common/openocd.board.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/common/pyocd.board.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/deprecated.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/abrobot_esp32c3_oled/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_24lc32/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_8chan_solenoid/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ad5693r/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_aht20/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_apds9960/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_dps310/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_drv2605l/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ds2484/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ht16k33/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ina219/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ina228/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ina237/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lis2mdl/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lis3dh/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lis3mdl/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lps22/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ltr329/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_mcp9808/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_pcf8523/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_sht4x/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_tsl2591/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_vcnl4040/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_veml7700/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/amg88xx/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arducam_cu450_ov5640/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_buttons/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_movement/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_pixels/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_thermo/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_uno_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/canis_canpico/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/dac80508_evm/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/dvp_20pin_ov7670/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ek_ra8d1_rtk7eka6m3b00001bu/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_ad4052_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_adxl367_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_kw41z/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/max3421e/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/max7219/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mcp2515/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_3d_hall_3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_air_quality_3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ambient_2_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_h_bridge_4_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_illuminance_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ir_gesture_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_lsm6dsl_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_mcp2518fd_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_pressure_3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_proximity_9_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_rtc_18_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_stepper_18_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_stepper_19_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm1100_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm1300_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm1304_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm2100_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm6001_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nrf7002eb/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nrf7002ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_adtja1101/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/olimex_shield_midi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/pmod_acl/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/pmod_sd/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/reyax_lora/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8d2_r7ka8d2kflcac_cm85.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_environmental_combo/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_rv8803/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_shtc3/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_cams_omv_mb1683/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h757i_eval_stm32h757xx_m7.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_mb1897_cam/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_stm32f4dis_cam/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/swir_hl78xx_ev_kit/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/tcan4550evm/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/v2c_daplink/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_ups/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/bintools_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target_bintools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/compiler_features.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/compiler_flags_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/compiler_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/target_arm.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/target_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/extra_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/flash/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/cmake/gcc-m-cpu.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/gcc-m-fpu.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/kobj.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/gcc/linker_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/linker_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/linker_libraries.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/target_configure.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/target_relocation.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/linker_flags_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/linker_libraries_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/target_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/arm/linker.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/common-ram.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/common-rom.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/debug-sections.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/kobject-data.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/kobject-rom.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/kobject-text.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/ram-end.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/thread-local-storage.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindDeprecated.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindDtc.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindGnuLd.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindScaTools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindZephyr-sdk.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/arch.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/basic_settings.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/boards.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/ccache.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/configuration_files.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/extensions.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/generated_file_directories.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/hwm_v2.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kconfig.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/pre_dt.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/python.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/root.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/shields.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/snippets.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/soc.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/user_cache.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/version.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/west.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/yaml.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_module.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/reports/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/cmake/target_toolchain_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/toolchain/zephyr/generic.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/toolchain/zephyr/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/usage/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad405x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad4114 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad4130 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad4170 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad7124 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.adc_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1112 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1119 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads131m02 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x1x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x4s0x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads7052 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ch32v00x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ifx_autanalog_sar C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ifx_hppass_sar C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.lmp90xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ltc2451 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.max11102_17 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.max1125x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.mcp320x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.mcp356xr C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.sam_afec C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ti_am335x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.tla202x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.vf610 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.cs43l22 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.da7212 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_ambiq_pdm C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_nxp_micfil C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.max98091 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.mpxxdtyy C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.pcm1681 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.tas6422dac C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320aic3110 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320dac C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.wm8904 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.wm8962 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/mic_privacy/intel/Kconfig.mic_privacy C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.hd44780 C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.itron C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.jhd1313 C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.pt6314 C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.serlcd C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.tm1637 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.bbram_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.mc146818 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.microchip C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.infineon C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.aspeed C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_xcache C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.kvaser C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.loopback C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcan C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcp2515 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcp251xfd C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.native_linux C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.sja1000 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.tcan4x5x C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/transceiver/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/transceiver/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.axp2101 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.bq24190 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.bq25180 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.bq25713 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.max20335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.pca9422 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.pf1550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.sbs_charger C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.agilex5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.arm_scmi C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.aspeed C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.beetle C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.cavs C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.fixed C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_ccm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_ccm_rev2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_mcg C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_pcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_scg C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_syscon C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp_mc_cgm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.pwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rx_cgc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cgc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cpg C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_hxt48 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_rcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.wch_rcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.fake_comp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.it51xxx_vcmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.mcux_acmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_comp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_lpcomp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_cmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.silabs_acmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.stm32_comp C$:/Users/iteedi/zephyrproject/zephyr/drivers/console/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/console/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/coredump/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ace C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.andes_atcpit100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_lgpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.cmos C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_tmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ifx_tcpwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.imx_epit C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.max32_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.max32_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.max32_wut C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.maxim_ds3231 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcp7940n C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ctimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ftm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_gpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpit C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lptmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_qtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_snvs C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_stm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_tpm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.native_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_mrt C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_pit C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912_slwtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.smartbond_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/crc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/crc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.ataes132a C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.mcux_dcp C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.nrf_ecb C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad569x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad56x1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad56xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dac161s997 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0501 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0508 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dacx3608 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ltc166x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.max22017 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4725 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4728 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.samd5x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/alh/Kconfig.alh C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/dmic/Kconfig.dmic C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/hda/Kconfig.hda C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/ssp/Kconfig.ssp C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/nxp/esai/Kconfig.esai C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/nxp/micfil/Kconfig.micfil C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/nxp/sai/Kconfig.sai C$:/Users/iteedi/zephyrproject/zephyr/drivers/debug/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/debug/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/debug/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.flash C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.loopback C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.mmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.ram C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.sdmmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/nvme/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.co5300 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.dummy C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.gc9x01x C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.hub12 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.hx8379c C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.hx8394 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ili9806e_dsi C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ili9xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.intel_multibootfb C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ist3931 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.led_strip_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.lpm013m126 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ls0xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.max7219 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.mcux_elcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.microbit C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.nrf_led_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.nt35510 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.otm8009a C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.renesas_lcdc C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.rm67162 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.rm68200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.sdl C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.sh1122 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1306 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1320 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1322 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1327 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1331 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd135x C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1363 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd16xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st730x C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st75256 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7567 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7701 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7735r C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7789v C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7796s C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.stm32_ltdc C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.uc81xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.waveshare_dsi_lcd C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.andes_atcdmacx00 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dma_pl330 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dw_axi_dmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dw_common C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_hda C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.intel_lpss C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.iproc_pax C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_edma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_lpc C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_pxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_smartdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nios2_msgdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_edma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sam_xdmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.ti_cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.xilinx_axi_dma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/dp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/edac/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.eeprom_emu C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.fm25xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rcxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rsxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.tmp11x C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.bt_hci C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.maxq10xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.native_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf_cracen C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.psa_crypto C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.virtio C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.espi_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.adin2111 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.cyclonev C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.dwmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.e1000 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc28j60 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc424j600 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.ivshmem C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan865x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan9250 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.native_tap C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_enet C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.sam_gmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc911x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.stellaris C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.stm32_hal C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.sy1xx_mac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.virtio_net C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.w5500 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axienet C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.xlnx_gem C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/dsa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/dwc_xgmac/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig.intel_igc C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/nxp_imx_netc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.dm8806 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.microchip_t1s C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja1103 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja11xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/scmi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/scmi/nxp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/tisci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.adi_max32_spixf C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.at25xv021a C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.at45 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_nand C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_qspi_nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.it51xxx_m1k C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.lpc C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.mspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nordic_qspi_nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.npcx_fiu C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mram C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mramc C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_rram C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.numaker_rmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_ospi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rz_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.sf32lb_mpi_qspi_nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.simulator C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_ospi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_xspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.ice40 C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.mpfs C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.slg471x5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.zynqmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/axp2101/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/bq27z746/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/bq40z50/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/composite/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/lc709203f/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/ltc2959/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/max17048/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/sy24561/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.generic C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.luatos_air530z C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.quectel_lcx6g C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.u_blox_f9p C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.u_blox_m8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.adp5585 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ads1x4s0x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.aesc C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.altera C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.aw9523b C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.bcm2711 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.bd8lb600fs C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.brcmstb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cmsdk_ahb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.creg_gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cy8c95xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.davinci C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.efinix_sapphire C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.emul_sdl C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.fxl6408 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.grgpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.lmp90xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max14906 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max14916 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max14917 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max22017 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max2219x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcp23xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_igpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_lpc C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_rgpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mfxstm32l152 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mmio32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.nct38xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.numicro C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.nxp_siul2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pca953x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pca95xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pca_series C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal64xxa C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal9722 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pcf857x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rza2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rp1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rt1718s C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rzt2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18im704 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sn74hc595 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.stellaris C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.stmpe1600 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sx1509b C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.tca6424a C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.tle9104 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.wch_ch32v00x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx_ps C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/haptics/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/haptics/Kconfig.drv2605 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.spi C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.uart C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.imxrt C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_mcx_cmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rcm C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rstctl C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src_rev2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_syscon C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.native C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker_rmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rw61x C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam4l C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam_rstc C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.silabs_series2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwspinlock/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.sqn C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.andes_atciic100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.bcm_iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.i2c_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ifx_xmc4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.omap C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sam_twihs C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sbcon C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sc18im704 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.tca954x C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.xilinx_axi C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/target/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/target/Kconfig.eeprom C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux_flexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.sam_ssc C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.renesas C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc1200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc2520 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.dw1000 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.kw41z C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcr20a C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcxw C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.nrf5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.rf2xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.stm32wba C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.uart_pipe C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.adc_keys C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.analog_axis C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cap12xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cf1133 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.chsc5x C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.chsc6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cst816s C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cy8cmbr3xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.evdev C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.ft5336 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gpio_kbd_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gpio_keys C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gpio_qdec C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gt911 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.ili2132a C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.kbd_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.mcux_kpp C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.modulino C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.nunchuk C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.pat912x C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.paw32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.pinnacle C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.pmw3610 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.sbus C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.sdl C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.stmpe811 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.touch C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.tsc_keys C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.vs1838b C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.xpt2046 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.cavs C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.clic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.loapic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_siul2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.plic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.shared_irq C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.vim C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_exti C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.ivshmem C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.dac C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.ht16k33 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3194 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3216a C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3733 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.leds-group-multicolor C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp3943 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp50xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp5562 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp5569 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.modulino C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.ncp5623 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.pca9533 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.pca9633 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.pwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.tlc59108 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.apa102 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.lpd880x C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.modulino C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc5971 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc59731 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.ws2812 C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/Kconfig.rylrxxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/Kconfig.sx12xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/lora_basics_modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.ivshmem C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.mhuv3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_bellboard C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_event C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_task C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_mailbox C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.stm32_hsem C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_omap C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_secproxy C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.adin2111 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.dwcxgmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.intel_igc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.lan865x C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_enet C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_enet_qos C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_imx_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_s32_gmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_s32_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.stm32_hal C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.xilinx_axienet C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.max32_hpb C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.mspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.siwx91x_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.adp5585 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.aw9523b C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.axp2101 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.bd8lb600fs C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.ds3231 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.lpflexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.max20335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.max22017 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.max31790 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.maxq10xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.mc146818 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.mchp_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.nct38xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.pca9422 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.pf1550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.tle9104 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bitbang C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_dcnano_lcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.spi C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/devmux/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/ethos_u/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/ft8xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/grove_lcd_rgb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig.renesas_ra_elc C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/mcux_flexio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_flexram/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_imx93_mediamix/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_inputmux/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_s32_emios/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/pio_rpi_pico/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/renesas_rx_dtc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/renesas_rx_external_interrupt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/stm32n6_axisram/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/mm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.at_shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.cellular C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.hl7800 C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.quectel-bg9x C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.ublox-sara-r4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.wncm14a2a C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/hl78xx/Kconfig.hl78xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/hl78xx/hl78xx_evt_monitor/Kconfig.hl78xx_evt_monitor C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/simcom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/simcom/sim7080/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig.mspi_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/net/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/opamp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp C$:/Users/iteedi/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp_fast C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/controller/Kconfig.brcmstb C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig.iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/host/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_v2m_beetle C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.emsdp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.lpc_iocon C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mci_io_mux C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numicro C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_port C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_siul2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sf32lb52x C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.silabs_dbus C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_k3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_00x_afio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_20x_30x_afio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_afio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.zynqmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/ra/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/rcar/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/rx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/rz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pm_cpu_ops/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_gdpwr C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_swext C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig.silabs_siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ps2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ps2/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ps2/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/psi5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/psi5/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ptp_clock/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_enet C$:/Users/iteedi/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.ambiq_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.cc23x0_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.ifx_tcpwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.intel_blinky C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.max31790 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ctimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ftm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_pwt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_qtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_sctimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_tpm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nrf_sw C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_flexio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_s32_emios C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.pca9685 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rx_mtu C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rv32m1_tpm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0_tc C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.adp5360 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.cp9314 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.da1469x C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.fixed C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.max20335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.mpm54304 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm1100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vref C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vrefv1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9420 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9422 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.pf1550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.aspeed C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.intel_socfpga C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.lpc_syscon C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.mmio C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_mrcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_rstctl C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig.zephyr C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.am1805 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.bq32002 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.counter C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1307 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1337 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ds3231 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.mc146818 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.nxp_irtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf2123 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf85063a C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8523 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8563 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3028 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3032 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8263 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8803 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rx8130ce C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ti_mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.mcux_sdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_hsmci C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_sdmmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.sdhc_cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.spi C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/Kconfig.sensor_clock C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/Kconfig.trigger_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/a01nyub/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/ad2s1210/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adltc2990/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adt7310/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adt7420/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl345/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl362/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl367/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl372/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/max32664c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/als31300/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/amd_sb_tsi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/amg88xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ams_as5600/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ccs811/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ens210/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tcs3400/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tmd2620/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tsl2540/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tsl2561/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tsl2591/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/ags10/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/dht20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/dht/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/apds9253/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/apds9306/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/apds9960/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/asahi_kasei/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bma280/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bma4xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bme280/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bme680/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmg160/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi08x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi160/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi270/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi323/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmm150/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmm350/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmp180/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmp388/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmp581/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/broadcom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/broadcom/afbr_s50/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/current_amp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ens160/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/espressif/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/everlight/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/everlight/als_pt19/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/explorir_m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/f75303/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/fcx_mldx5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/grow_r502a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/hc_sr04/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/mpr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/hp206c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/dps310/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/tle9104/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ist8310/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it51xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/jedec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/jedec/jc42/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/liteon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/liteon/ltr329/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/liteon/ltrf216a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/lm35/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/lm75/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/lm77/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/ds18b20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/ds3231/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max17055/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max17262/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max30101/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31790/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31855/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31865/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31875/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max44009/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max6675/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/mb7040/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/meas/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/meas/ms5607/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/meas/ms5837/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/melexis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/melexis/mlx90394/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/memsic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/memsic/mc3419/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/mhz19b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mcp9600/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mcp970x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mtch9010/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/tcn75a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nct75/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/npm13xx_charger/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ntc_thermistor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nuvoton/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/fxas21002/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/fxls8974/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/fxos8700/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_lpadc_temp40/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_pmc_tmpsns/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tmpsns/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/p3t1755/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/qdec_tpm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/omron/2smpb_02e/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/omron/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/omron/d6f/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/paa3905/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/paj7620/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/pat9136/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pms7003/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pni/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pni/rm3100/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pzem004t/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/qdec_sam/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/realtek/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/realtek/rts5912/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/hs300x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/hs400x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/isl29035/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bh1730/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bh1750/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bh1790/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rpi_pico_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/s11059/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sbs_gauge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/seeed/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/seeed/grove/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/seeed/hm330x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/scd4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sgp40/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sht4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/shtcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sts4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7006/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7055/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7060/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7210/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/hts221/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/i3g4250d/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2dh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2dlpc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2iclx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2mdc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis328dq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis3dhhc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis3dwb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/ism330dhcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2de12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2dh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2ds12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2du12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2dux12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2dw12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2mdl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis3mdl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps22hb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps22hh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps25hb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps2xdf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6ds0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dsl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dso/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1_mag/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/qdec_stm32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_vbat/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_vref/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stmemsc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stts22h/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stts751/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/vl53l0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/vl53l1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sx9500/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tach_gpio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm40627/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm42605/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm4268x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm42x70/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm45686/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icp101xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icp201xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/mpu6050/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/mpu9250/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/th02/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/bq274xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina219/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina2xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina3221/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina7xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/lm95234/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/opt3001/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc302x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmag5170/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmag5273/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp007/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp1075/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp108/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp112/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp114/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp11x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp435/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tsic_xx6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/veaa_x_3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/veml6031/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/veml6046/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/veml7700/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/voltage_divider/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_isds_2536030320001/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_itds_2533020201601/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pads_2511020213301/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdms_25131308XXX05/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdus_25131308XXXXX/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_tids_2521020222501/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/xbr818/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sent/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sent/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.aesc C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.altera C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.altera_jtag C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.apbuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bcm2711 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bitbang C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bridge C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bt C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.efinix_sapphire C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.hostlink C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.intel_lw C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.leuart_gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_flexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_iuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpsci C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.miv C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.msp432p4xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.native_pty C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.native_tty C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx_uart_instance C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ns16550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.numicro C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.opentitan C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.pl011 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.realtek_rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx_qemu C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rtt C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rv32m1_lpuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rzt2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_eusart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_usart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.stellaris C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.uart_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.usart_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.virtio_console C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.wch_usart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xen C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sip_svc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex C$:/Users/iteedi/zephyrproject/zephyr/drivers/smbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.andes_atcspi200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.bitbang C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.egis_et171 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.grlib_spimctrl C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_dspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_ecspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexio C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.oc_simple C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.omap C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.opentitan C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.pl022 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.pw C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.rv32m1_lpspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sc18is606 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_eusart C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_siwx91x_gspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_usart C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.spi_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.xec_qmspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig.h_bridge C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig.stepper_event_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc22xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc50xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/bus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc51xx/Kconfig.tmc51xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig.a4979 C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/step_dir/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/ti/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/ti/Kconfig.drv84xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/syscon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/syscon/Kconfig.bflb_efuse C$:/Users/iteedi/zephyrproject/zephyr/drivers/tee/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/tee/optee/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.arcv2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.arm_arch C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cavs C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cortex_m_systick C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ifx_cat1_lp C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ite_it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.leon_gptimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_xec_rtos C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_gpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_lptmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_os C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mips_cp0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mtk_adsp C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.native_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.npcx_itim C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_grtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_xrtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.rcar_cmt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_ra_ulpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rza2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.riscv_machine C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.rv32m1_lptmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.sam0_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.stm32_lptim C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.stm32wb0_radio_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ti_dm_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.wch_ch32v00x C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.x86 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.xlnx_psttc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/bc12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.dwc2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.it82xx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.kinetis C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.skeleton C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.virtual C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.max3421e C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.virtual C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uvb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_fusb307 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_rt1715 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.emul_imager C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.emul_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.esp32_dvp C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.gc2145 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.hm01b0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.imx335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mcux_csi C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mcux_sdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mt9m114 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov2640 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov5640 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov7670 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov7725 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov9655 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.renesas_ra_ceu C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.st_mipid02 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmi C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmipp C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_jpeg C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_venc C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.sw_generator C$:/Users/iteedi/zephyrproject/zephyr/drivers/virtio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/virtualization/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2477_85 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2482-800 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2484 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2485 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_serial C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.intel_adsp C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux_imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_ewm C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_fs26 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.opentitan C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam4l C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.tco C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_rti C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_tps382x C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xilinx_wwdt C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/esp32/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/esp_at/Kconfig.esp_at C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/esp_hosted/Kconfig.esp_hosted C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/eswifi/Kconfig.eswifi C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/infineon/Kconfig.airoc C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/nxp/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/simplelink/Kconfig.simplelink C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/siwx91x/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 C$:/Users/iteedi/zephyrproject/zephyr/drivers/xen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/dts/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/armv6-m.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g030.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g031.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g051.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g071.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1Xe.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/common/freq.h C$:/Users/iteedi/zephyrproject/zephyr/dts/common/mem.h C$:/Users/iteedi/zephyrproject/zephyr/dts/common/skeleton.dtsi C$:/Users/iteedi/zephyrproject/zephyr/include C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/acpi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/app_memory C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/dsp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/secureshield C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/vpx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/cortex_r C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_r C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_r/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mmu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/app_data_alignment.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/mips C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/common C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel64 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/audio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/canbus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/console C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/cpu_freq C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/crypto C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/data C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/coresight C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dfu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/display C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/bluetooth C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dac C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/debug C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/disk C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/edac C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/eeprom C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/nxp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/tisci C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gnss C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/haptics C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c/target C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ieee802154 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led_strip C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/memc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy/intel C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/devmux C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/flexram C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/grove_lcd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn/renesas_elc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_flexio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/pio_rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_ra_external_interrupt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_dtc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_external_interrupt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/stm32_wkup_pins C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/timeaware_gpio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/modem C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mspi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/endpoint C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/power C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/psi5 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pwm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/regulator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/reset C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/retained_mem C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sent C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sip_svc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/spi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/stepper C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/video C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtualization C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/acpi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/battery C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_b1x_c1x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dac C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dai C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/display C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/espi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/inputmux C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ipc_service C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/led C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/lora C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/lvgl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dbi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dsi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/opamp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pcie C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32_pwr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/qspi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/rdc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reserved-memory C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sent C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/spi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/timer C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/video C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss/rtk C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/instrumentation C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/internal C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/backends C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/internal C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/mm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/libsbc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/app_smem.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/app_smem_aligned.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/app_smem_unaligned.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/lorawan C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/math C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mem_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/stat_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/zephyr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/misc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modbus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/at C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/backend C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ubx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/multi_heap C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/conn_mgr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/hdlc_rcp_if C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/platform C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/portability C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/arpa C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/net C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/netinet C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/psa C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/random C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/retention C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/rtio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sensing C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/settings C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sip_svc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/stats C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/storage C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/internal C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/task_wdt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/timing C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/iar C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb_c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/dom0 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/hvm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/io C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/zbus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/zvfs C$:/Users/iteedi/zephyrproject/zephyr/kernel/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.device C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.init C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.mem_domain C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.obj_core C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.smp C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.vm C$:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/acpi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/cpp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/Kconfig.hash_func C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/Kconfig.hash_map C$:/Users/iteedi/zephyrproject/zephyr/lib/heap/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/heap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/minimal/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/newlib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/mem_blocks/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/mem_blocks/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/midi2/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/midi2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/min_heap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/net_buf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/os/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/os/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/os/Kconfig.cbprintf C$:/Users/iteedi/zephyrproject/zephyr/lib/os/cpu_load/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/os/zvfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/Kconfig.profile C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/Kconfig.toolchain C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lang_support_r/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lang_support_r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/eventfd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.aio C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.barrier C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.device_io C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.fd_mgmt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.file_system_r C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.fs C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.mem C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.mqueue C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.net C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.proc1 C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.procN C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.pthread C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.rwlock C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.sched C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.semaphore C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.signal C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.spinlock C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.sync_io C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.timer C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_realtime C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_single_process C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_streams C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_system_logging C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_threads_ext C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/shell/Kconfig.env C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/shell/Kconfig.uname C$:/Users/iteedi/zephyrproject/zephyr/lib/runtime/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/smf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/uuid/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/uuid/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c C$:/Users/iteedi/zephyrproject/zephyr/misc/generated/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/misc/generated/configs.c.in C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.atmel C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.chre C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.cypress C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.infineon C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.libmetal C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.mcuboot C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.microchip C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.nuvoton C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.open-amp C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.picolibc C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.renesas C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.rust C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.simplelink C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.sof C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.syst C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.telink C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.vega C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.wurthelektronik C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.xtensa C$:/Users/iteedi/zephyrproject/zephyr/modules/acpica/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/acpica/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/canopennode/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.components C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.hal C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig.nrf_regtool C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfs/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig.logging C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/imx/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/mcux/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/s32/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/gecko/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/simplicity_sdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/wiseconnect/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_st/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_tdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hostap/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hostap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig.input C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig.memory C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/modules/lz4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.deprecated C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.mbedtls C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.auto C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.logic C$:/Users/iteedi/zephyrproject/zephyr/modules/modules.cmake C$:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/bus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig.features C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig.thread C$:/Users/iteedi/zephyrproject/zephyr/modules/percepio/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/percepio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/segger/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/segger/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/tflite-micro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/thrift/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions C$:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_defines.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_driver_kconfig_dts.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_dts_cmake.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_edt.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/snippets.py C$:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake C$:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake C$:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake C$:/Users/iteedi/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nus-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/ram-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/rtt-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/serial-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/soc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/Kconfig.v2 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32650 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32657 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32660 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78000 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig.apollo510 C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/designstart/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/designstart/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an383 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an386 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an500 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone315 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone320 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/musca/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/musca/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/musca/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd2x C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd5x C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.saml2x C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.same70 C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.samv71 C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/common/riscv-privileged/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig.et171 C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.ulp C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.amp C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.console C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.efuse C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.spiram C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace40 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82000bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mech172x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mech172x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mech172x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh00/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh01/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg41/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg60/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg61/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca80/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca90/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca91/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsamd51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame54/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7g5/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7g5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7g5/Kconfig.soc.sama7g54 C$:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/Kconfig.peripherals C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/ironside/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/bicr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuflpr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig.m333xxx C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig.m55m1xxx C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.flexspi_xip C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.nbu C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.rom_loader C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.xspi_xip C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig.mimx91 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.a55 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m33 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_0 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_1 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig.wifi C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cm33 C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cr8 C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig.rk3568 C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig.rk3588 C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig.rk3588s C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/soc.yml C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c011xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c051xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c071xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c091xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c092xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x4 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f031x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f042x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f051x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f070xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f072xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f091xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f098xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f100xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f103xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f105xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f107xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f205xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f207xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f334x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xd C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f405xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f407xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f410xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f411xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412rx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f413xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f415xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f417xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f423xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f427xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f429xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f437xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f439xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f446xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f469xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f479xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f722xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f723xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f745xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f746xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f750xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f756xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g030xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g041xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g050xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g051xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g061xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g070xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g071xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g081xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b0xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0c1xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g431xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g441xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g473xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g474xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g483xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g484xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g491xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g4a1xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h503xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h523xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h533xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h562xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h563xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h573xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r7xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s7xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h723xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h725xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h730xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h735xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h742xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h743xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h750xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h753xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7a3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b0xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x4 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l011xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l051xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l053xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l071xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l072xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l073xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l081xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l083xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l100xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xba C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l412xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l422xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l431xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l432xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l433xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l451xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l452xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l462xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l471xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l475xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l476xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l486xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l496xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4a6xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4p5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4q5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4s5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l552xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l562xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig.stm32mp13_a7 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp257fxx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig.stm32n657xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u073xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u083xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u535xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u545xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u575xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u585xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u595xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u599xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5f9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5g9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba52xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba55xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba65xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig.stm32wb55xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl54xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl55xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle4xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig.ch32v006 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc.ch32v006 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig.ch32v003 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc.ch32v003 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig.ch32v203 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc.ch32v203 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig.ch32v208 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc.ch32v208 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v303 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v307 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v303 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v307 C$:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig.build_time C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig.host_info C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig.version C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/Kconfig.adv C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/Kconfig.logging C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.aics C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ascs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.bap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.cap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ccp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.csip C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.gmap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.has C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mcs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mctl C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.micp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mpl C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pacs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pbp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tbs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tmap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vcp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vocs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.df C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.dtm C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/coex/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/crypto/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.gatt C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.l2cap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/classic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/mesh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/mesh/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.cts C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.dis C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.hrs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.tps C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/bas/Kconfig.bas C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/ias/Kconfig.ias C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/nus/Kconfig.nus C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/ots/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/Kconfig.canopen C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/isotp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/console/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/cpu_freq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/crc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/dap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/coredump/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/gdbstub/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/symtab/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/thread_analyzer/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/demand_paging/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/demand_paging/backing_store/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/demand_paging/eviction/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/dfu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/disk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/dsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/emul/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/emul/espi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/fb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/Kconfig.fatfs C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/Kconfig.littlefs C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/ext2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/fcb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/fuse_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/nvs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/virtiofs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/zms/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/rtk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/rtk/protocol/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/rtk/serial/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/input/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/instrumentation/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/instrumentation/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.intel_adsp C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/open-amp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/rpmsg_service/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/jwt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/llext/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.filtering C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.formatting C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.links C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.misc C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.mode C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.processing C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config_inherit C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ble C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.efi_console C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.fs C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.mqtt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.multidomain C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.native_posix C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.net C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.rtt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.semihost C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.spinel C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.swo C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ws C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.xtensa_sim C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/frontends/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/frontends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/lorawan/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/lorawan/nvm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/lorawan/services/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mem_mgmt/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/mem_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/hawkbit/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.cp C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.pd C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/updatehub/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/modbus/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/modbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/modem/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/Kconfig.hostname C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/Kconfig.template.log_config.net C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/conn_mgr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.debug C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv4 C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv6 C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.mgmt C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.stack C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.stats C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.tcp C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/canbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/dummy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/dummy/any/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/dsa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/gptp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/lldp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig.radio C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/openthread/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ppp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/virtual/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/virtual/ipip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/wifi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/capture/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/coap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/config/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/dhcpv4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/dhcpv6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/dns/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/http/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/latmon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/midi2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/mqtt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/mqtt_sn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/ocpp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/prometheus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/ptp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/sntp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/sockets/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/socks/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/tftp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/trickle/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/websocket/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/wifi_credentials/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/zperf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/pkt_filter/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/nvmem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/policy/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/policy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig.usb C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/profiling/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/profiling/perf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/profiling/perf/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/random/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/random/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/retention/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/retention/Kconfig.blinfo C$:/Users/iteedi/zephyrproject/zephyr/subsys/rtio/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/rtio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/rtio/Kconfig.workq C$:/Users/iteedi/zephyrproject/zephyr/subsys/sd/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/sd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/secure_storage/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_store C$:/Users/iteedi/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_transform C$:/Users/iteedi/zephyrproject/zephyr/subsys/sensing/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/settings/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/backends/Kconfig.backends C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/modules/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/modules/kernel_service/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/sip_svc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/stats/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/stats/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/flash_map/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/stream/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/task_wdt/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/task_wdt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/Kconfig.coverage C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/ztest/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/timing/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/sysview/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.bt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.cdc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.msc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/audio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/dfu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/hid/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/netusb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.bt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.dfu C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.hid C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.loopback C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.midi2 C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.msc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.template.instances_count C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uac2 C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uvc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/host/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/host/Kconfig.usbip C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/usb_c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/zbus/Kconfig CMakeCache.txt CMakeFiles/4.1.1/CMakeASMCompiler.cmake CMakeFiles/4.1.1/CMakeCCompiler.cmake CMakeFiles/4.1.1/CMakeCXXCompiler.cmake CMakeFiles/4.1.1/CMakeSystem.cmake Kconfig/Kconfig.dts Kconfig/Kconfig.modules Kconfig/Kconfig.shield Kconfig/Kconfig.shield.defconfig Kconfig/arch/Kconfig Kconfig/boards/Kconfig Kconfig/boards/Kconfig.defconfig Kconfig/boards/Kconfig.ews Kconfig/kconfig_module_dirs.cmake Kconfig/soc/Kconfig Kconfig/soc/Kconfig.defconfig Kconfig/soc/Kconfig.soc zephyr/.config zephyr/edt.pickle.cmake zephyr/include/generated/zephyr/autoconf.h zephyr/snippets_generated.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeASMCompiler.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeASMInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCCompiler.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCXXCompiler.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCXXInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCommonLanguageInclude.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeCompilerIdDetection.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineASMCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeGenericSystem.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeInitializeConfigs.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeLanguageInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeNinjaFindMake.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeSystem.cmake.in C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeSystemSpecificInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeSystemSpecificInitialize.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeTestASMCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCCompilerFlag.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCSourceCompiles.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCXXCompilerFlag.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/CheckCXXSourceCompiles.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Diab-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-ASM.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-C.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-CXX.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/GNU.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Renesas-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/ExternalProject.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/ExternalProject/shared_internal_commands.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPackageHandleStandardArgs.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPackageMessage.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPython3.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/FindPython/Support.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectASMLinker.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectCLinker.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectCXXLinker.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CheckCompilerFlag.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Internal/CheckSourceCompiles.cmake C$:/Program$ Files/CMake/share/cmake-4.1/Modules/Platform/Generic.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/Zephyr-sdkConfig.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/Zephyr-sdkConfigVersion.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/Kconfig C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/generic.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/host-tools.cmake C$:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/target.cmake C$:/Users/iteedi/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig C$:/Users/iteedi/zephyrproject/modules/debug/percepio/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/adi/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ambiq/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components/wifi/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/bsp_sedi/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr/subsys/logging/backends/Kconfig.i2c C$:/Users/iteedi/zephyrproject/modules/hal/libmetal/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/microchip/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/microchip/packs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/nuvoton/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/nxp/zephyr/src/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/openisa/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/quicklogic/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/renesas/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/renesas/drivers/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/renesas/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/st/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/stm32/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/stm32/dts/st/g0/stm32g0b1r(b-c-e)tx-pinctrl.dtsi C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/tdk/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/telink/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/telink/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/telink/tlsr9/Kconfig C$:/Users/iteedi/zephyrproject/modules/hal/ti/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink/source/ti/devices/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/hal/xtensa/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl/Kconfig C$:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/modules/lib/libmctp/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/open-amp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/picolibc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/modules/lib/picolibc/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/CMakeLists.txt C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/Kconfig.ews C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/board.cmake C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/board.yml C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews_defconfig C$:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf C$:/Users/iteedi/zephyrproject/zephyr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/Kconfig.constants C$:/Users/iteedi/zephyrproject/zephyr/Kconfig.zephyr C$:/Users/iteedi/zephyrproject/zephyr/VERSION C$:/Users/iteedi/zephyrproject/zephyr/arch/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arc/core/dsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arc/core/mpu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/core/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/core/cortex_r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm64/core/xen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/Kconfig.vfp C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_a_r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/tz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/mmu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/mpu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/arch/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/mips/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/posix/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/posix/Kconfig.natsim_optional C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/Kconfig.isa C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/andes/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig.core C$:/Users/iteedi/zephyrproject/zephyr/arch/rx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/sparc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/x86/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/arch/x86/core/Kconfig.ia32 C$:/Users/iteedi/zephyrproject/zephyr/arch/x86/core/Kconfig.intel64 C$:/Users/iteedi/zephyrproject/zephyr/arch/xtensa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/boards/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/Kconfig.v2 C$:/Users/iteedi/zephyrproject/zephyr/boards/common/jlink.board.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/common/openocd.board.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/common/pyocd.board.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/deprecated.cmake C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/abrobot_esp32c3_oled/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_24lc32/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_8chan_solenoid/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ad5693r/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_aht20/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_apds9960/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_dps310/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_drv2605l/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ds2484/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ht16k33/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ina219/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ina228/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ina237/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lis2mdl/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lis3dh/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lis3mdl/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_lps22/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_ltr329/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_mcp9808/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_pcf8523/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_sht4x/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_tsl2591/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_vcnl4040/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_veml7700/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/amg88xx/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arducam_cu450_ov5640/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_buttons/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_movement/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_pixels/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_modulino_thermo/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/arduino_uno_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/canis_canpico/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/dac80508_evm/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/dvp_20pin_ov7670/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ek_ra8d1_rtk7eka6m3b00001bu/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_ad4052_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_adxl367_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_kw41z/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/max3421e/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/max7219/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mcp2515/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_3d_hall_3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_air_quality_3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ambient_2_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_h_bridge_4_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_illuminance_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_ir_gesture_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_lsm6dsl_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_mcp2518fd_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_pressure_3_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_proximity_9_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_rtc_18_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_stepper_18_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_stepper_19_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm1100_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm1300_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm1304_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm2100_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/npm6001_ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nrf7002eb/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nrf7002ek/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_adtja1101/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/olimex_shield_midi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/pmod_acl/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/pmod_sd/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/reyax_lora/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8d2_r7ka8d2kflcac_cm85.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_environmental_combo/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_rv8803/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/sparkfun_shtc3/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_cams_omv_mb1683/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h757i_eval_stm32h757xx_m7.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_mb1897_cam/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/st_stm32f4dis_cam/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/swir_hl78xx_ev_kit/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/tcan4550evm/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/v2c_daplink/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/waveshare_ups/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.shield C$:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/bintools_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/bintools/gnu/target_bintools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/compiler_features.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/compiler_flags_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/compiler_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/gcc/target_arm.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/compiler/target_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/extra_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/flash/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/cmake/gcc-m-cpu.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/gcc-m-fpu.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/kobj.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/gcc/linker_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/linker_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/linker_libraries.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/target_configure.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/ld/target_relocation.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/linker_flags_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/linker_libraries_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker/target_template.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/arm/linker.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/common-ram.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/common-rom.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/debug-sections.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/kobject-data.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/kobject-rom.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/kobject-text.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/ram-end.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/linker_script/common/thread-local-storage.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindDeprecated.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindDtc.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindGnuLd.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindScaTools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/FindZephyr-sdk.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/arch.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/basic_settings.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/boards.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/ccache.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/configuration_files.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/dts.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/extensions.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/generated_file_directories.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/hwm_v2.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kconfig.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/kernel.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/pre_dt.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/python.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/root.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/shields.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/snippets.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/soc.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/user_cache.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/version.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/west.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/yaml.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/modules/zephyr_module.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/reports/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/cmake/target_toolchain_flags.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/toolchain/zephyr/generic.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/toolchain/zephyr/target.cmake C$:/Users/iteedi/zephyrproject/zephyr/cmake/usage/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad405x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad4114 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad4130 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad4170 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ad7124 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.adc_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1112 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1119 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads131m02 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x1x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x4s0x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ads7052 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ch32v00x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ifx_autanalog_sar C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ifx_hppass_sar C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.lmp90xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ltc2451 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.max11102_17 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.max1125x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.mcp320x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.mcp356xr C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.sam_afec C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.ti_am335x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.tla202x C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.vf610 C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/adc/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.cs43l22 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.da7212 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_ambiq_pdm C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_nxp_micfil C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.max98091 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.mpxxdtyy C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.pcm1681 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.tas6422dac C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320aic3110 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320dac C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.wm8904 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/Kconfig.wm8962 C$:/Users/iteedi/zephyrproject/zephyr/drivers/audio/mic_privacy/intel/Kconfig.mic_privacy C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.hd44780 C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.itron C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.jhd1313 C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.pt6314 C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.serlcd C$:/Users/iteedi/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.tm1637 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.bbram_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.mc146818 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.microchip C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bbram/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.infineon C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.aspeed C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_xcache C$:/Users/iteedi/zephyrproject/zephyr/drivers/cache/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.kvaser C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.loopback C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcan C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcp2515 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcp251xfd C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.native_linux C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.sja1000 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.tcan4x5x C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/transceiver/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/can/transceiver/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.axp2101 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.bq24190 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.bq25180 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.bq25713 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.max20335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.pca9422 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.pf1550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/charger/Kconfig.sbs_charger C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.agilex5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.arm_scmi C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.aspeed C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.beetle C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.cavs C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.fixed C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_ccm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_ccm_rev2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_mcg C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_pcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_scg C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mcux_syscon C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp_mc_cgm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.pwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rx_cgc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cgc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cpg C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_hxt48 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_rcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.wch_rcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.fake_comp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.it51xxx_vcmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.mcux_acmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_comp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_lpcomp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_cmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.silabs_acmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/comparator/Kconfig.stm32_comp C$:/Users/iteedi/zephyrproject/zephyr/drivers/console/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/console/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/coredump/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ace C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.andes_atcpit100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_lgpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.cmos C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_tmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ifx_tcpwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.imx_epit C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.max32_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.max32_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.max32_wut C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.maxim_ds3231 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcp7940n C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ctimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ftm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_gpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpit C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lptmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_qtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_snvs C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_stm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_tpm C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.native_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_mrt C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_pit C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912_slwtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.smartbond_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/counter/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/crc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/crc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.ataes132a C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.mcux_dcp C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.nrf_ecb C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/crypto/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad569x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad56x1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ad56xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dac161s997 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0501 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0508 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.dacx3608 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.ltc166x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.max22017 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4725 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4728 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.samd5x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dac/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/alh/Kconfig.alh C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/dmic/Kconfig.dmic C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/hda/Kconfig.hda C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/intel/ssp/Kconfig.ssp C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/nxp/esai/Kconfig.esai C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/nxp/micfil/Kconfig.micfil C$:/Users/iteedi/zephyrproject/zephyr/drivers/dai/nxp/sai/Kconfig.sai C$:/Users/iteedi/zephyrproject/zephyr/drivers/debug/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/debug/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/debug/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.flash C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.loopback C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.mmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.ram C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/Kconfig.sdmmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/disk/nvme/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.co5300 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.dummy C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.gc9x01x C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.hub12 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.hx8379c C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.hx8394 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ili9806e_dsi C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ili9xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.intel_multibootfb C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ist3931 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.led_strip_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.lpm013m126 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ls0xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.max7219 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.mcux_elcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.microbit C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.nrf_led_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.nt35510 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.otm8009a C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.renesas_lcdc C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.rm67162 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.rm68200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.sdl C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.sh1122 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1306 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1320 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1322 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1327 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1331 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd135x C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd1363 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.ssd16xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st730x C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st75256 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7567 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7701 C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7735r C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7789v C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.st7796s C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.stm32_ltdc C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.uc81xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/display/Kconfig.waveshare_dsi_lcd C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.andes_atcdmacx00 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dma_pl330 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dw_axi_dmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.dw_common C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_hda C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.intel_lpss C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.iproc_pax C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_edma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_lpc C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_pxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_smartdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nios2_msgdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_edma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sam_xdmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.ti_cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.xilinx_axi_dma C$:/Users/iteedi/zephyrproject/zephyr/drivers/dma/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/dp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/edac/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.eeprom_emu C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.fm25xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rcxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rsxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.tmp11x C$:/Users/iteedi/zephyrproject/zephyr/drivers/eeprom/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.bt_hci C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.maxq10xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.native_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf_cracen C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.psa_crypto C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/entropy/Kconfig.virtio C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.espi_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/espi/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.adin2111 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.cyclonev C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.dwmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.e1000 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc28j60 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc424j600 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.ivshmem C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan865x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan9250 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.native_tap C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_enet C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.sam_gmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc911x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.stellaris C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.stm32_hal C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.sy1xx_mac C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.virtio_net C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.w5500 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axienet C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.xlnx_gem C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/dsa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/dwc_xgmac/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig.intel_igc C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/nxp_imx_netc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.dm8806 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.microchip_t1s C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja1103 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja11xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/scmi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/scmi/nxp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/firmware/tisci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.adi_max32_spixf C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.at25xv021a C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.at45 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_nand C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_qspi_nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.it51xxx_m1k C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.lpc C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.mspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nordic_qspi_nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.npcx_fiu C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mram C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mramc C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_rram C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.numaker_rmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_ospi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rz_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.sf32lb_mpi_qspi_nor C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.simulator C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_ospi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_xspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/flash/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.ice40 C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.mpfs C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.slg471x5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/fpga/Kconfig.zynqmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/axp2101/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/bq27z746/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/bq40z50/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/composite/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/lc709203f/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/ltc2959/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/max17048/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge C$:/Users/iteedi/zephyrproject/zephyr/drivers/fuel_gauge/sy24561/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.generic C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.luatos_air530z C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.quectel_lcx6g C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.u_blox_f9p C$:/Users/iteedi/zephyrproject/zephyr/drivers/gnss/Kconfig.u_blox_m8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.adp5585 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ads1x4s0x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.aesc C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.altera C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.aw9523b C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.bcm2711 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.bd8lb600fs C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.brcmstb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cmsdk_ahb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.creg_gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.cy8c95xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.davinci C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.efinix_sapphire C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.emul_sdl C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.fxl6408 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.grgpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.lmp90xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max14906 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max14916 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max14917 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max22017 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max2219x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcp23xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_igpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_lpc C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_rgpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mfxstm32l152 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mmio32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.nct38xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.numicro C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.nxp_siul2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pca953x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pca95xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pca_series C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal64xxa C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal9722 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.pcf857x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rza2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rp1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rt1718s C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.rzt2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18im704 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sn74hc595 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.stellaris C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.stmpe1600 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sx1509b C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.tca6424a C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.tle9104 C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.wch_ch32v00x C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx_ps C$:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/haptics/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/haptics/Kconfig.drv2605 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.spi C$:/Users/iteedi/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.uart C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.imxrt C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_mcx_cmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rcm C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rstctl C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src_rev2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_syscon C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.native C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker_rmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rw61x C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam4l C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam_rstc C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.silabs_series2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwspinlock/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.sqn C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.andes_atciic100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.bcm_iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.i2c_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.ifx_xmc4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.omap C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sam_twihs C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sbcon C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sc18im704 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.tca954x C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/Kconfig.xilinx_axi C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/target/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2c/target/Kconfig.eeprom C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux_flexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.sam_ssc C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i2s/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.renesas C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/i3c/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc1200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc2520 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.dw1000 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.kw41z C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcr20a C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcxw C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.nrf5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.rf2xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.stm32wba C$:/Users/iteedi/zephyrproject/zephyr/drivers/ieee802154/Kconfig.uart_pipe C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.adc_keys C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.analog_axis C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cap12xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cf1133 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.chsc5x C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.chsc6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cst816s C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.cy8cmbr3xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.evdev C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.ft5336 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gpio_kbd_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gpio_keys C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gpio_qdec C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.gt911 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.ili2132a C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.kbd_matrix C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.mcux_kpp C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.modulino C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.nunchuk C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.pat912x C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.paw32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.pinnacle C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.pmw3610 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.sbus C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.sdl C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.stmpe811 C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.touch C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.tsc_keys C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.vs1838b C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/input/Kconfig.xpt2046 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.cavs C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.clic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.loapic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_siul2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.plic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.shared_irq C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.vim C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_exti C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.ivshmem C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/ipm/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.dac C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.ht16k33 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3194 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3216a C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3733 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.leds-group-multicolor C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp3943 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp50xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp5562 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.lp5569 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.modulino C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.ncp5623 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.pca9533 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.pca9633 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.pwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.tlc59108 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.apa102 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.lpd880x C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.modulino C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc5971 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc59731 C$:/Users/iteedi/zephyrproject/zephyr/drivers/led_strip/Kconfig.ws2812 C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/Kconfig.rylrxxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/Kconfig.sx12xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/lora/lora_basics_modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.andes C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.ivshmem C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.mhuv3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_bellboard C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_event C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_task C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_mailbox C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.stm32_hsem C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_omap C$:/Users/iteedi/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_secproxy C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.adin2111 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.dwcxgmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.intel_igc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.lan865x C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_enet C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_enet_qos C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_imx_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_s32_gmac C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.nxp_s32_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.stm32_hal C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.xilinx_axienet C$:/Users/iteedi/zephyrproject/zephyr/drivers/mdio/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.max32_hpb C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.mspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.siwx91x_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/memc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.ad559x C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.adp5585 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.aw9523b C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.axp2101 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.bd8lb600fs C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.ds3231 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.lpflexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.max20335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.max22017 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.max31790 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.maxq10xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.mc146818 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.mchp_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.nct38xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.pca9422 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.pf1550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mfd/Kconfig.tle9104 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bitbang C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_dcnano_lcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.spi C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/devmux/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/ethos_u/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/ft8xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/grove_lcd_rgb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig.renesas_ra_elc C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/mcux_flexio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_flexram/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_imx93_mediamix/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_inputmux/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/nxp_s32_emios/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/pio_rpi_pico/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/renesas_rx_dtc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/renesas_rx_external_interrupt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/stm32n6_axisram/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/mm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.at_shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.cellular C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.hl7800 C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.quectel-bg9x C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.ublox-sara-r4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/Kconfig.wncm14a2a C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/hl78xx/Kconfig.hl78xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/hl78xx/hl78xx_evt_monitor/Kconfig.hl78xx_evt_monitor C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/simcom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/modem/simcom/sim7080/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/mspi/Kconfig.mspi_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/net/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/opamp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp C$:/Users/iteedi/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp_fast C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/controller/Kconfig.brcmstb C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig.iproc C$:/Users/iteedi/zephyrproject/zephyr/drivers/pcie/host/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/peci/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_v2m_beetle C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.emsdp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.lpc_iocon C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mci_io_mux C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numicro C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_port C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_siul2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rv32m1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sf32lb52x C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.silabs_dbus C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_k3 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_00x_afio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_20x_30x_afio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_afio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/Kconfig.zynqmp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/ra/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/rcar/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/rx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/rz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pm_cpu_ops/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_gdpwr C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_swext C$:/Users/iteedi/zephyrproject/zephyr/drivers/power_domain/Kconfig.silabs_siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/ps2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ps2/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/ps2/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/psi5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/psi5/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/ptp_clock/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_enet C$:/Users/iteedi/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_netc C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.ambiq_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.cc23x0_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.ifx_tcpwm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.intel_blinky C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.it8801 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.max31790 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ctimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ftm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_pwt C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_qtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_sctimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_tpm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nrf_sw C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_flexio C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_s32_emios C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.pca9685 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rx_mtu C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.rv32m1_tpm C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0_tc C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 C$:/Users/iteedi/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.adp5360 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.axp192 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.cp9314 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.da1469x C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.fixed C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.max20335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.mpm54304 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm1100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vref C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vrefv1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9420 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9422 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.pf1550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/regulator/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.aspeed C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.intel_socfpga C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.lpc_syscon C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.mmio C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_mrcc C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_rstctl C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/reset/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/retained_mem/Kconfig.zephyr C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.am1805 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.bq32002 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.counter C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1307 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1337 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ds3231 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.mc146818 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.nxp_irtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf2123 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf85063a C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8523 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8563 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3028 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3032 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8263 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8803 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.rx8130ce C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.ti_mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/rtc/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.mcux_sdif C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_hsmci C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_sdmmc C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.sdhc_cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.spi C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/sdhc/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/Kconfig.sensor_clock C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/Kconfig.trigger_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/a01nyub/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/ad2s1210/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adltc2990/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adt7310/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adt7420/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl345/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl362/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl367/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/adxl372/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/adi/max32664c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/als31300/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/amd_sb_tsi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/amg88xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ams_as5600/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ccs811/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/ens210/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tcs3400/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tmd2620/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tsl2540/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tsl2561/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ams/tsl2591/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/ags10/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/dht20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/aosong/dht/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/apds9253/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/apds9306/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/apds9960/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/asahi_kasei/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bma280/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bma4xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bme280/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bme680/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmg160/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi08x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi160/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi270/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmi323/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmm150/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmm350/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmp180/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmp388/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/bosch/bmp581/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/broadcom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/broadcom/afbr_s50/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/current_amp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ens160/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/espressif/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/everlight/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/everlight/als_pt19/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/explorir_m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/f75303/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/fcx_mldx5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/grow_r502a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/hc_sr04/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/mpr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/hp206c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/dps310/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/tle9104/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ist8310/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it51xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/jedec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/jedec/jc42/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/liteon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/liteon/ltr329/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/liteon/ltrf216a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/lm35/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/lm75/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/lm77/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/ds18b20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/ds3231/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max17055/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max17262/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max30101/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31790/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31855/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31865/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max31875/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max44009/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/maxim/max6675/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/mb7040/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/meas/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/meas/ms5607/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/meas/ms5837/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/melexis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/melexis/mlx90394/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/memsic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/memsic/mc3419/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/mhz19b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mcp9600/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mcp970x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/mtch9010/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/microchip/tcn75a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nct75/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/npm13xx_charger/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nordic/temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ntc_thermistor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nuvoton/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/fxas21002/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/fxls8974/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/fxos8700/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_lpadc_temp40/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_pmc_tmpsns/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tmpsns/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/p3t1755/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/nxp/qdec_tpm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/omron/2smpb_02e/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/omron/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/omron/d6f/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/paa3905/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/paj7620/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pixart/pat9136/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pms7003/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pni/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pni/rm3100/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/pzem004t/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/qdec_sam/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/realtek/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/realtek/rts5912/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/hs300x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/hs400x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/renesas/isl29035/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bh1730/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bh1750/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rohm/bh1790/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/rpi_pico_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/s11059/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sbs_gauge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/seeed/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/seeed/grove/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/seeed/hm330x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/scd4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sgp40/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sht4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/shtcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sensirion/sts4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7006/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7055/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7060/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/silabs/si7210/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/hts221/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/i3g4250d/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2dh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2dlpc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2iclx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis2mdc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis328dq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis3dhhc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/iis3dwb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/ism330dhcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2de12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2dh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2ds12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2du12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2dux12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2dw12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis2mdl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lis3mdl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps22hb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps22hh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps25hb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lps2xdf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6ds0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dsl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dso/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1_mag/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/qdec_stm32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_temp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_vbat/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stm32_vref/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stmemsc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stts22h/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/stts751/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/vl53l0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/st/vl53l1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/sx9500/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tach_gpio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm40627/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm42605/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm4268x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm42x70/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icm45686/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icp101xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/icp201xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/mpu6050/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tdk/mpu9250/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/th02/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/bq274xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina219/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina2xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina3221/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ina7xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/lm95234/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/opt3001/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc302x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmag5170/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmag5273/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp007/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp1075/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp108/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp112/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp114/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp11x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/ti/tmp435/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/tsic_xx6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/veaa_x_3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/veml6031/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/veml6046/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/vishay/veml7700/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/voltage_divider/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_isds_2536030320001/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_itds_2533020201601/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pads_2511020213301/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdms_25131308XXX05/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdus_25131308XXXXX/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/wsen/wsen_tids_2521020222501/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sensor/xbr818/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sent/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sent/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.aesc C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.altera C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.altera_jtag C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.apbuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bcm2711 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bflb C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bitbang C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bridge C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.bt C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.efinix_sapphire C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.hostlink C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.intel_lw C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.leuart_gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.lpc11u6x C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mchp C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_flexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_iuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpsci C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.miv C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.msp432p4xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.native_pty C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.native_tty C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.neorv32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx_uart_instance C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ns16550 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.numicro C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.opentitan C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.pl011 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rcar C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.realtek_rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx_qemu C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rtt C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rv32m1_lpuart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.rzt2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.si32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_eusart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_usart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.stellaris C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.sy1xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.uart_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.usart_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.virtio_console C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.wch_usart C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xen C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/serial/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/sip_svc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex C$:/Users/iteedi/zephyrproject/zephyr/drivers/smbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.andes_atcspi200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.b91 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.bitbang C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.cdns C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.egis_et171 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.grlib_spimctrl C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss_qspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_dspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_ecspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexcomm C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexio C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.mec5 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.oc_simple C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.omap C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.opentitan C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.pl022 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.psoc6 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.pw C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra8 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.rv32m1_lpspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sc18is606 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sedi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_eusart C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_siwx91x_gspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_usart C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.spi_emul C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.xec_qmspi C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig.fake C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig.h_bridge C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/Kconfig.stepper_event_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc22xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc50xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/bus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc51xx/Kconfig.tmc51xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig.a4979 C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/step_dir/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/ti/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/stepper/ti/Kconfig.drv84xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/syscon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/syscon/Kconfig.bflb_efuse C$:/Users/iteedi/zephyrproject/zephyr/drivers/tee/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/tee/optee/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.arcv2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.arm_arch C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cavs C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.cortex_m_systick C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ifx_cat1_lp C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ite_it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.leon_gptimer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_xec_rtos C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_gpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_lptmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_os C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mips_cp0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.mtk_adsp C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.native_sim C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.npcx_itim C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_grtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_xrtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.rcar_cmt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_ra_ulpt C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rza2m C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.riscv_machine C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.rv32m1_lptmr C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.sam0_rtc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.silabs C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.stm32_lptim C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.stm32wb0_radio_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.ti_dm_timer C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.wch_ch32v00x C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.x86 C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.xlnx_psttc C$:/Users/iteedi/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/bc12/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.dwc2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.it82xx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.kinetis C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.nrf C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.skeleton C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/udc/Kconfig.virtual C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.max3421e C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.virtual C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb/uvb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_fusb307 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_rt1715 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc C$:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.emul_imager C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.emul_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.esp32_dvp C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.gc2145 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.hm01b0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.imx335 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mcux_csi C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mcux_sdma C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.mt9m114 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov2640 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov5640 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov7670 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov7725 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.ov9655 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.renesas_ra_ceu C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.st_mipid02 C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmi C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmipp C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_jpeg C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.stm32_venc C$:/Users/iteedi/zephyrproject/zephyr/drivers/video/Kconfig.sw_generator C$:/Users/iteedi/zephyrproject/zephyr/drivers/virtio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/virtualization/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2477_85 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2482-800 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2484 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.ds2485 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.test C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_gpio C$:/Users/iteedi/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_serial C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ambiq C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc23x0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc32xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.cmsdk_apb C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.dw C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ene C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.gd32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.gecko C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ifx_cat1 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.intel_adsp C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.it51xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.it8xxx2 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.litex C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.max32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux_imx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npcx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm13xx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm2100 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm6001 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nrfx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.numaker C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_ewm C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_fs26 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.opentitan C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_ra C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rz C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam0 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam4l C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sf32lb C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.sifive C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.smartbond C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.tco C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_rti C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_tps382x C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.wch C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xec C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xilinx_wwdt C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xlnx C$:/Users/iteedi/zephyrproject/zephyr/drivers/watchdog/Kconfig.xmc4xxx C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/esp32/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/esp_at/Kconfig.esp_at C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/esp_hosted/Kconfig.esp_hosted C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/eswifi/Kconfig.eswifi C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/infineon/Kconfig.airoc C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/nxp/Kconfig.nxp C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/simplelink/Kconfig.simplelink C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/siwx91x/Kconfig.siwx91x C$:/Users/iteedi/zephyrproject/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 C$:/Users/iteedi/zephyrproject/zephyr/drivers/xen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/dts/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/armv6-m.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g030.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g031.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g051.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g071.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1Xe.dtsi C$:/Users/iteedi/zephyrproject/zephyr/dts/common/freq.h C$:/Users/iteedi/zephyrproject/zephyr/dts/common/mem.h C$:/Users/iteedi/zephyrproject/zephyr/dts/common/skeleton.dtsi C$:/Users/iteedi/zephyrproject/zephyr/include C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/acpi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/app_memory C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/dsp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/secureshield C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arc/v2/vpx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/cortex_r C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm64/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_r C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_r/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mmu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/mpu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/common/app_data_alignment.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/mips C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/posix C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/common C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/rx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/sparc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/scripts C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/x86/intel64 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/xtensa C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/audio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/audio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/classic C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/mesh C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/canbus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/console C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/cpu_freq C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/crypto C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/data C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/debug/coresight C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dfu C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/display C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/adc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/bluetooth C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/clock_control C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/comparator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/console C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dac C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/debug C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/disk C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/dma C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/edac C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/eeprom C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ethernet C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/nxp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/firmware/tisci C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/flash C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gnss C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/haptics C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i2c/target C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/i3c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/ieee802154 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/led_strip C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/memc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mfd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy/intel C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/devmux C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/flexram C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/grove_lcd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn/renesas_elc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_flexio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/pio_rpi_pico C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_ra_external_interrupt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_dtc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_external_interrupt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/stm32_wkup_pins C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/misc/timeaware_gpio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/modem C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/mspi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pcie/endpoint C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pinctrl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/power C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/psi5 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/pwm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/regulator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/reset C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/retained_mem C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/rtc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sensor C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sent C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/serial C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/sip_svc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/spi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/stepper C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/timer C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/usb_c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/video C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/virtualization C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dsp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/acpi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/battery C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_b1x_c1x_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dac C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dai C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/display C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/espi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/inputmux C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/ipc_service C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/led C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/lora C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/lvgl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dbi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dsi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/opamp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pcie C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32_pwr.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/qspi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/rdc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reserved-memory C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sent C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/spi C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/timer C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/video C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/fs C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/gnss/rtk C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/input C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/instrumentation C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/internal C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/ipc/backends C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/internal C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/mm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/libsbc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/app_smem.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/app_smem_aligned.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/app_smem_unaligned.ld C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/llext C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/lorawan C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/math C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mem_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/stat_mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/zephyr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/misc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modbus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/at C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/backend C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/modem/ubx C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/multi_heap C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/conn_mgr C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/hdlc_rcp_if C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/http C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/net/prometheus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/platform C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/pmci/mctp C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/portability C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/arpa C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/net C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/netinet C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/posix/sys C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/psa C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/random C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/retention C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/rtio C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sd C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sensing C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/settings C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/shell C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sip_svc C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/stats C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/storage C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/internal C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/task_wdt C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/timing C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/iar C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/tracing C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb/class C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/usb_c C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/dom0 C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/hvm C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/xen/public/io C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/zbus C$:/Users/iteedi/zephyrproject/zephyr/include/zephyr/zvfs C$:/Users/iteedi/zephyrproject/zephyr/kernel/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.device C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.init C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.mem_domain C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.obj_core C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.smp C$:/Users/iteedi/zephyrproject/zephyr/kernel/Kconfig.vm C$:/Users/iteedi/zephyrproject/zephyr/lib/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/acpi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/cpp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/Kconfig.hash_func C$:/Users/iteedi/zephyrproject/zephyr/lib/hash/Kconfig.hash_map C$:/Users/iteedi/zephyrproject/zephyr/lib/heap/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/heap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/minimal/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/newlib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/mem_blocks/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/mem_blocks/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/midi2/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/midi2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/min_heap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/net_buf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/os/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/os/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/os/Kconfig.cbprintf C$:/Users/iteedi/zephyrproject/zephyr/lib/os/cpu_load/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/os/zvfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/Kconfig.profile C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/Kconfig.toolchain C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lang_support_r/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lang_support_r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/eventfd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.aio C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.barrier C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.device_io C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.fd_mgmt C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.file_system_r C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.fs C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.mem C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.mqueue C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.net C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.proc1 C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.procN C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.pthread C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.rwlock C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.sched C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.semaphore C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.signal C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.spinlock C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.sync_io C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.timer C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_realtime C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_single_process C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_streams C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_system_logging C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_threads_ext C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/shell/Kconfig.env C$:/Users/iteedi/zephyrproject/zephyr/lib/posix/shell/Kconfig.uname C$:/Users/iteedi/zephyrproject/zephyr/lib/runtime/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/smf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/utils/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/lib/uuid/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/lib/uuid/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c C$:/Users/iteedi/zephyrproject/zephyr/misc/generated/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/misc/generated/configs.c.in C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.atmel C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.chre C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.cypress C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.eos_s3 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.esp32 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.infineon C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.intel C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.libmetal C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.mcuboot C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.microchip C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.mspm0 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.nuvoton C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.open-amp C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.picolibc C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.renesas C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.rust C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.simplelink C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.sof C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.stm32 C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.syst C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.telink C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.vega C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.wurthelektronik C$:/Users/iteedi/zephyrproject/zephyr/modules/Kconfig.xtensa C$:/Users/iteedi/zephyrproject/zephyr/modules/acpica/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/acpica/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/canopennode/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/fatfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.components C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.hal C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/Kconfig.nrf_regtool C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfs/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig.logging C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/imx/Kconfig.imx C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/mcux/Kconfig.mcux C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp/s32/Kconfig.nxp_s32 C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/gecko/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/simplicity_sdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs/wiseconnect/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_st/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_tdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/hostap/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/hostap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/liblc3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/libsbc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/littlefs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig.input C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig.memory C$:/Users/iteedi/zephyrproject/zephyr/modules/lvgl/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/modules/lz4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.deprecated C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.mbedtls C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.auto C$:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.logic C$:/Users/iteedi/zephyrproject/zephyr/modules/modules.cmake C$:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/nanopb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi/bus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig.features C$:/Users/iteedi/zephyrproject/zephyr/modules/openthread/Kconfig.thread C$:/Users/iteedi/zephyrproject/zephyr/modules/percepio/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/percepio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/segger/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/segger/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/tflite-micro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/thrift/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules C$:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions C$:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/modules/zcbor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_defines.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_driver_kconfig_dts.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_dts_cmake.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/dts/gen_edt.py C$:/Users/iteedi/zephyrproject/zephyr/scripts/snippets.py C$:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake C$:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake C$:/Users/iteedi/zephyrproject/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake C$:/Users/iteedi/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/nus-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/ram-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/rtt-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/serial-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml C$:/Users/iteedi/zephyrproject/zephyr/soc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/Kconfig.v2 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32650 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32657 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32660 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78000 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 C$:/Users/iteedi/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig.apollo510 C$:/Users/iteedi/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 C$:/Users/iteedi/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/designstart/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/designstart/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an383 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an386 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an500 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone315 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone320 C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/mps4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/musca/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/musca/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/musca/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 C$:/Users/iteedi/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd2x C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd5x C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.saml2x C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.same70 C$:/Users/iteedi/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.samv71 C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 C$:/Users/iteedi/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/common/riscv-privileged/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig.et171 C$:/Users/iteedi/zephyrproject/zephyr/soc/egis/et171/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/Kconfig.ulp C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.amp C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.console C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.efuse C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/common/Kconfig.spiram C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac C$:/Users/iteedi/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace40 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82000bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mech172x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mech172x/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/mec/mech172x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh00/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh01/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg41/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg60/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg61/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca80/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca90/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca91/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsamd51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame54/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7g5/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7g5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/microchip/sam/sama7g5/Kconfig.soc.sama7g54 C$:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/neorv32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/Kconfig.peripherals C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/ironside/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54h/bicr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20a_enga_cpuflpr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad C$:/Users/iteedi/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig.m333xxx C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig.m55m1xxx C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 C$:/Users/iteedi/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.flexspi_xip C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.nbu C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.rom_loader C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/common/Kconfig.xspi_xip C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig.mimx91 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.a55 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m33 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_0 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_1 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig.wifi C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series C$:/Users/iteedi/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cm33 C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cr8 C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig.rk3568 C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig.rk3588 C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig.rk3588s C$:/Users/iteedi/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/soc.yml C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c011xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c051xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c071xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c091xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig.stm32c092xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x4 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f030xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f031x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f042x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f051x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f070xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f072xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f091xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig.stm32f098xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f100xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f103xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f105xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig.stm32f107xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f205xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig.stm32f207xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f334x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xd C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f401xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f405xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f407xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f410xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f411xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412rx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f412xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f413xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f415xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f417xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f423xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f427xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f429xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f437xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f439xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f446xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f469xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig.stm32f479xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f722xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f723xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f745xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f746xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f750xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f756xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g030xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g041xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g050xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g051xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g061xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g070xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g071xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g081xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b0xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0c1xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g431xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g441xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g473xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g474xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g483xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g484xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g491xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig.stm32g4a1xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h503xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h523xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h533xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h562xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h563xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig.stm32h573xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7r7xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig.stm32h7s7xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h723xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h725xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h730xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h735xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h742xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h743xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h750xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h753xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7a3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b0xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h7b3xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x4 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x6 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010x8 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l010xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l011xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l051xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l053xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l071xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l072xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l073xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l081xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig.stm32l083xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l100xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xb C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xba C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l151xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig.stm32l152xe C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l412xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l422xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l431xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l432xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l433xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l451xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l452xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l462xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l471xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l475xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l476xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l486xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l496xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4a6xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4p5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4q5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4r9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig.stm32l4s5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l552xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig.stm32l562xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig.stm32mp13_a7 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp257fxx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig.stm32n657xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u031xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u073xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig.stm32u083xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u535xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u545xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u575xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u585xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u595xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u599xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5a9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5f9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig.stm32u5g9xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba52xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba55xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba65xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig.stm32wb55xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl54xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wl55xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle4xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig.stm32wle5xx C$:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r C$:/Users/iteedi/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig.ch32v006 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc.ch32v006 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig.ch32v003 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc.ch32v003 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig.ch32v203 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc.ch32v203 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig.ch32v208 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc.ch32v208 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v303 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v307 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v303 C$:/Users/iteedi/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v307 C$:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xen/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc C$:/Users/iteedi/zephyrproject/zephyr/subsys/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig.build_time C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig.host_info C$:/Users/iteedi/zephyrproject/zephyr/subsys/bindesc/Kconfig.version C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/Kconfig.adv C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/Kconfig.logging C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.aics C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ascs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.bap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.cap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ccp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.csip C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.gmap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.has C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mcs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mctl C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.micp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mpl C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pacs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pbp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tbs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tmap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vcp C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vocs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/common/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.df C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.dtm C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/controller/coex/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/crypto/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.gatt C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.l2cap C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/host/classic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/mesh/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/mesh/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.cts C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.dis C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.hrs C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.tps C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/bas/Kconfig.bas C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/ias/Kconfig.ias C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/nus/Kconfig.nus C$:/Users/iteedi/zephyrproject/zephyr/subsys/bluetooth/services/ots/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/Kconfig.canopen C$:/Users/iteedi/zephyrproject/zephyr/subsys/canbus/isotp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/console/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/cpu_freq/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/crc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/dap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/coredump/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/gdbstub/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/symtab/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/debug/thread_analyzer/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/demand_paging/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/demand_paging/backing_store/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/demand_paging/eviction/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/dfu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/disk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/dsp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/emul/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/emul/espi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/fb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/Kconfig.fatfs C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/Kconfig.littlefs C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/ext2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/fcb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/fuse_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/nvs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/virtiofs/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/fs/zms/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/rtk/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/rtk/protocol/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/gnss/rtk/serial/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/input/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/instrumentation/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/instrumentation/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.intel_adsp C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/open-amp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/ipc/rpmsg_service/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/jwt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/llext/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.filtering C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.formatting C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.links C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.misc C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.mode C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.processing C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config_inherit C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ble C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.efi_console C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.fs C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.mqtt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.multidomain C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.native_posix C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.net C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.rtt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.semihost C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.spinel C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.swo C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ws C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/Kconfig.xtensa_sim C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/frontends/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/logging/frontends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/lorawan/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/lorawan/nvm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/lorawan/services/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mem_mgmt/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/mem_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/hawkbit/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.cp C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.pd C$:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt/updatehub/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/modbus/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/modbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/modem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/modem/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/Kconfig.hostname C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/Kconfig.template.log_config.net C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/conn_mgr/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.debug C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv4 C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv6 C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.mgmt C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.stack C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.stats C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/ip/Kconfig.tcp C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/canbus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/dummy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/dummy/any/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/dsa/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/gptp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ethernet/lldp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig.radio C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/openthread/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/ppp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/virtual/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/virtual/ipip/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/l2/wifi/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/capture/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/coap/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/config/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/dhcpv4/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/dhcpv6/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/dns/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/http/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/latmon/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/midi2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/mqtt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/mqtt_sn/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/ocpp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/prometheus/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/ptp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/sntp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/sockets/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/socks/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/tftp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/trickle/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/websocket/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/wifi_credentials/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/lib/zperf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/net/pkt_filter/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/nvmem/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/policy/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/pm/policy/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig.usb C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/profiling/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/profiling/perf/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/profiling/perf/backends/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/random/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/random/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/retention/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/retention/Kconfig.blinfo C$:/Users/iteedi/zephyrproject/zephyr/subsys/rtio/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/rtio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/rtio/Kconfig.workq C$:/Users/iteedi/zephyrproject/zephyr/subsys/sd/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/sd/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/secure_storage/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_store C$:/Users/iteedi/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_transform C$:/Users/iteedi/zephyrproject/zephyr/subsys/sensing/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/settings/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/backends/Kconfig.backends C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/modules/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/modules/kernel_service/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/sip_svc/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/stats/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/stats/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/flash_map/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/storage/stream/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/task_wdt/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/task_wdt/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/Kconfig.coverage C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/Kconfig.defconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite/ztest/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/timing/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/sysview/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/CMakeLists.txt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.bt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.cdc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.msc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/audio/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/dfu/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/hid/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class/netusb/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.bt C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.dfu C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.hid C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.loopback C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.midi2 C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.msc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.template.instances_count C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uac2 C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uvc C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/host/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/host/Kconfig.usbip C$:/Users/iteedi/zephyrproject/zephyr/subsys/usb/usb_c/Kconfig C$:/Users/iteedi/zephyrproject/zephyr/subsys/zbus/Kconfig CMakeCache.txt CMakeFiles/4.1.1/CMakeASMCompiler.cmake CMakeFiles/4.1.1/CMakeCCompiler.cmake CMakeFiles/4.1.1/CMakeCXXCompiler.cmake CMakeFiles/4.1.1/CMakeSystem.cmake Kconfig/Kconfig.dts Kconfig/Kconfig.modules Kconfig/Kconfig.shield Kconfig/Kconfig.shield.defconfig Kconfig/arch/Kconfig Kconfig/boards/Kconfig Kconfig/boards/Kconfig.defconfig Kconfig/boards/Kconfig.ews Kconfig/kconfig_module_dirs.cmake Kconfig/soc/Kconfig Kconfig/soc/Kconfig.defconfig Kconfig/soc/Kconfig.soc zephyr/.config zephyr/edt.pickle.cmake zephyr/include/generated/zephyr/autoconf.h zephyr/snippets_generated.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/firmware/canfd_cdc_composite/build/build_info.yml b/firmware/canfd_cdc_composite/build/build_info.yml new file mode 100644 index 0000000..fb40044 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/build_info.yml @@ -0,0 +1,58 @@ +cmake: + application: + configuration-dir: 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite' + source-dir: 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite' + board: + name: 'ews' + path: + - 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews' + qualifiers: 'stm32g0b1xx' + revision: '' + devicetree: + bindings-dirs: + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/bindings' + files: + - 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts' + include-dirs: + - 'C:/Users/iteedi/zephyrproject/modules/hal/ambiq/dts' + - 'C:/Users/iteedi/zephyrproject/modules/hal/atmel/include' + - 'C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab/include' + - 'C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab/include/zephyr' + - 'C:/Users/iteedi/zephyrproject/modules/hal/gigadevice/include' + - 'C:/Users/iteedi/zephyrproject/modules/hal/microchip/include' + - 'C:/Users/iteedi/zephyrproject/modules/hal/microchip/dts' + - 'C:/Users/iteedi/zephyrproject/modules/hal/nuvoton/dts' + - 'C:/Users/iteedi/zephyrproject/modules/hal/nxp/dts' + - 'C:/Users/iteedi/zephyrproject/modules/hal/stm32/dts' + - 'C:/Users/iteedi/zephyrproject/modules/hal/ti/dts' + - 'C:/Users/iteedi/zephyrproject/zephyr/include' + - 'C:/Users/iteedi/zephyrproject/zephyr/include/zephyr' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/common' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/vendor' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/rx' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/x86' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/xtensa' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/sparc' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/riscv' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/posix' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/arm64' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/arm' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts/arc' + - 'C:/Users/iteedi/zephyrproject/zephyr/dts' + kconfig: + files: + - 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews_defconfig' + - 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf' + user-files: + - 'C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf' + toolchain: + name: 'zephyr' + path: 'C:/Users/iteedi/zephyr-sdk-0.17.4' + zephyr: + version: '4.3.0' + zephyr-base: 'C:/Users/iteedi/zephyrproject/zephyr' +version: '0.1.0' +west: + command: 'C:\Users\iteedi\zephyrproject\.venv\Scripts\west build -p always -b ews' + topdir: 'C:\Users\iteedi\zephyrproject' + version: '1.4.0' diff --git a/firmware/canfd_cdc_composite/build/cmake_install.cmake b/firmware/canfd_cdc_composite/build/cmake_install.cmake new file mode 100644 index 0000000..ae2c615 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/cmake_install.cmake @@ -0,0 +1,66 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/compile_commands.json b/firmware/canfd_cdc_composite/build/compile_commands.json new file mode 100644 index 0000000..1ca5525 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/compile_commands.json @@ -0,0 +1,824 @@ +[ +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles\\app.dir\\src\\main.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\src\\main.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/main.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/main.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles\\app.dir\\src\\cdc_handler.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\src\\cdc_handler.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/cdc_handler.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/cdc_handler.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles\\app.dir\\src\\pfet_control.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\src\\pfet_control.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/pfet_control.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/pfet_control.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles\\app.dir\\src\\gs_usb_can.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\src\\gs_usb_can.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/gs_usb_can.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/gs_usb_can.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o CMakeFiles\\app.dir\\src\\usb_gs_usb_class.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\src\\usb_gs_usb_class.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/src/usb_gs_usb_class.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/CMakeFiles/app.dir/src/usb_gs_usb_class.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\libc\\validate_libc.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\validate_libc.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/validate_libc.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\heap\\heap.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\heap\\heap.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/heap/heap.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\cbprintf_packaged.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\cbprintf_packaged.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/cbprintf_packaged.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\clock.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\clock.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/clock.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\printk.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\printk.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/printk.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\sem.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\sem.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/sem.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\thread_entry.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\thread_entry.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/thread_entry.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\cbprintf_complete.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\cbprintf_complete.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/cbprintf_complete.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\assert.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\assert.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/assert.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\os\\mpsc_pbuf.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\mpsc_pbuf.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/os/mpsc_pbuf.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\dec.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\dec.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/dec.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\hex.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\hex.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/hex.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\rb.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\rb.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/rb.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\timeutil.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\timeutil.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/timeutil.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\bitarray.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\bitarray.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/bitarray.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\bitmask.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\bitmask.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/bitmask.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\ring_buffer.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\ring_buffer.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/ring_buffer.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\lib\\utils\\last_section_id.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\utils\\last_section_id.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/utils/last_section_id.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\misc\\generated\\configs.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\build\\zephyr\\misc\\generated\\configs.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/misc/generated/configs.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\soc\\st\\stm32\\common\\stm32cube_hal.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\soc\\st\\stm32\\common\\stm32cube_hal.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/stm32cube_hal.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\soc\\st\\stm32\\common\\soc_config.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\soc\\st\\stm32\\common\\soc_config.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/soc_config.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\soc\\st\\stm32\\common\\stm32_backup_domain.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\soc\\st\\stm32\\common\\stm32_backup_domain.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/stm32_backup_domain.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\soc\\st\\stm32\\stm32g0x\\soc.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\soc\\st\\stm32\\stm32g0x\\soc.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/soc.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\logging\\log_core.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\log_core.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_core.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\logging\\log_mgmt.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\log_mgmt.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_mgmt.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\logging\\log_cache.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\log_cache.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_cache.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\logging\\log_msg.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\log_msg.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_msg.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\logging\\log_output.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\log_output.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/log_output.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\logging\\backends\\log_backend_uart.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\backends\\log_backend_uart.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends/log_backend_uart.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\tracing\\tracing_none.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\tracing\\tracing_none.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/tracing/tracing_none.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\usb\\device\\usb_device.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\usb_device.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/usb_device.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\usb\\device\\usb_descriptor.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\usb_descriptor.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/usb_descriptor.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr.dir\\subsys\\usb\\device\\usb_transfer.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\usb_transfer.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/usb_transfer.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\CMakeFiles\\offsets.dir\\arch\\arm\\core\\offsets\\offsets.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\offsets\\offsets.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/offsets/offsets.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr_pre0.dir\\misc\\empty_file.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\misc\\empty_file.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr_final.dir\\misc\\empty_file.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\misc\\empty_file.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\CMakeFiles\\zephyr_final.dir\\isr_tables.c.obj -c C:\\Users\\iteedi\\zephyrproject\\projects\\EWS\\firmware\\canfd_cdc_composite\\build\\zephyr\\isr_tables.c", + "file": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/isr_tables.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\common\\CMakeFiles\\arch__common.dir\\sw_isr_common.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\common\\sw_isr_common.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/common/sw_isr_common.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\common\\CMakeFiles\\arch__common.dir\\init.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\common\\init.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/common/init.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\common\\CMakeFiles\\arch__common.dir\\xip.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\common\\xip.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/common/xip.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\common\\CMakeFiles\\isr_tables.dir\\isr_tables.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\common\\isr_tables.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/common/isr_tables.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\CMakeFiles\\arch__arm__core.dir\\fatal.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\fatal.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/fatal.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\CMakeFiles\\arch__arm__core.dir\\nmi.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\nmi.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/nmi.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr\\arch\\arch\\arm\\core\\CMakeFiles\\arch__arm__core.dir\\nmi_on_reset.S.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\nmi_on_reset.S", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/nmi_on_reset.S", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\CMakeFiles\\arch__arm__core.dir\\tls.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\tls.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/tls.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\exc_exit.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\exc_exit.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/exc_exit.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\fault.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\fault.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/fault.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\fault_s.S.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\fault_s.S", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/fault_s.S", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\fpu.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\fpu.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/fpu.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\reset.S.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\reset.S", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/reset.S", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\scb.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\scb.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/scb.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\thread_abort.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\thread_abort.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/thread_abort.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\vector_table.S.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\vector_table.S", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/vector_table.S", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\swap_helper.S.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\swap_helper.S", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/swap_helper.S", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\irq_manage.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\irq_manage.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_manage.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\prep_c.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\prep_c.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/prep_c.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\thread.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\thread.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/thread.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\cpu_idle.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\cpu_idle.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/cpu_idle.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\irq_init.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\irq_init.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_init.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\isr_wrapper.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\isr_wrapper.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/isr_wrapper.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr\\arch\\arch\\arm\\core\\cortex_m\\CMakeFiles\\arch__arm__core__cortex_m.dir\\__aeabi_read_tp.S.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\arm\\core\\cortex_m\\__aeabi_read_tp.S", + "file": "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\assert.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\assert.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/assert.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\cbprintf.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\cbprintf.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\chk_fail.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\chk_fail.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\errno_wrap.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\errno_wrap.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\exit.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\exit.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/exit.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\locks.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\locks.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/locks.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-lto -o zephyr\\lib\\libc\\picolibc\\CMakeFiles\\lib__libc__picolibc.dir\\stdio.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\stdio.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/stdio.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc -o zephyr\\lib\\libc\\common\\CMakeFiles\\lib__libc__common.dir\\source\\stdlib\\abort.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\common\\source\\stdlib\\abort.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc -o zephyr\\lib\\libc\\common\\CMakeFiles\\lib__libc__common.dir\\source\\time\\time.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\common\\source\\time\\time.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/source/time/time.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -fno-builtin-malloc -o zephyr\\lib\\libc\\common\\CMakeFiles\\lib__libc__common.dir\\source\\stdlib\\malloc.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\common\\source\\stdlib\\malloc.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\lib\\posix\\c_lib_ext\\CMakeFiles\\lib__posix__c_lib_ext.dir\\fnmatch.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\posix\\c_lib_ext\\fnmatch.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/fnmatch.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\lib\\posix\\c_lib_ext\\CMakeFiles\\lib__posix__c_lib_ext.dir\\getentropy.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\posix\\c_lib_ext\\getentropy.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getentropy.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\lib\\posix\\c_lib_ext\\CMakeFiles\\lib__posix__c_lib_ext.dir\\getopt\\getopt.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\posix\\c_lib_ext\\getopt\\getopt.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt/getopt.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\lib\\posix\\c_lib_ext\\CMakeFiles\\lib__posix__c_lib_ext.dir\\getopt\\getopt_common.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\posix\\c_lib_ext\\getopt\\getopt_common.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt/getopt_common.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\interrupt_controller\\CMakeFiles\\drivers__interrupt_controller.dir\\intc_gpio_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\interrupt_controller\\intc_gpio_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/intc_gpio_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/arch/common/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\interrupt_controller\\CMakeFiles\\drivers__interrupt_controller.dir\\intc_exti_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\interrupt_controller\\intc_exti_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller/intc_exti_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\usb\\device\\CMakeFiles\\drivers__usb__device.dir\\usb_dc_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\usb\\device\\usb_dc_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device/usb_dc_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\can\\CMakeFiles\\drivers__can.dir\\can_common.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\can_common.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/can/can_common.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\can\\CMakeFiles\\drivers__can.dir\\can_mcan.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\can_mcan.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/can/can_mcan.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\can\\CMakeFiles\\drivers__can.dir\\can_stm32_fdcan.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\can_stm32_fdcan.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/can/can_stm32_fdcan.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\can\\transceiver\\CMakeFiles\\drivers__can__transceiver.dir\\C_\\Users\\iteedi\\zephyrproject\\zephyr\\misc\\empty_file.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\misc\\empty_file.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/CMakeFiles/drivers__can__transceiver.dir/C_/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\clock_control\\CMakeFiles\\drivers__clock_control.dir\\clock_stm32_ll_common.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\clock_control\\clock_stm32_ll_common.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/clock_stm32_ll_common.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\clock_control\\CMakeFiles\\drivers__clock_control.dir\\clock_stm32g0_u0.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\clock_control\\clock_stm32g0_u0.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control/clock_stm32g0_u0.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\console\\CMakeFiles\\drivers__console.dir\\uart_console.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\console\\uart_console.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/console/uart_console.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\gpio\\CMakeFiles\\drivers__gpio.dir\\gpio_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\gpio\\gpio_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/gpio/gpio_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\hwinfo\\CMakeFiles\\drivers__hwinfo.dir\\hwinfo_weak_impl.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\hwinfo\\hwinfo_weak_impl.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/hwinfo_weak_impl.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\hwinfo\\CMakeFiles\\drivers__hwinfo.dir\\hwinfo_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\hwinfo\\hwinfo_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo/hwinfo_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\pinctrl\\CMakeFiles\\drivers__pinctrl.dir\\common.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\pinctrl\\common.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/common.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\pinctrl\\CMakeFiles\\drivers__pinctrl.dir\\pinctrl_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\pinctrl\\pinctrl_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/pinctrl_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\reset\\CMakeFiles\\drivers__reset.dir\\reset_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\reset\\reset_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/reset/reset_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\serial\\CMakeFiles\\drivers__serial.dir\\uart_stm32.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\serial\\uart_stm32.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/serial/uart_stm32.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\timer\\CMakeFiles\\drivers__timer.dir\\sys_clock_init.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\timer\\sys_clock_init.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/timer/sys_clock_init.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\drivers\\timer\\CMakeFiles\\drivers__timer.dir\\cortex_m_systick.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\timer\\cortex_m_systick.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/drivers/timer/cortex_m_systick.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\soc\\system_stm32g0xx.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\soc\\system_stm32g0xx.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc/system_stm32g0xx.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_hal.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_hal.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_rcc.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_rcc.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_rcc_ex.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_rcc_ex.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_pcd.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_pcd.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_pcd_ex.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_hal_pcd_ex.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_ll_usb.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_ll_usb.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o modules\\hal_stm32\\stm32cube\\CMakeFiles\\..__modules__hal__stm32__stm32cube.dir\\stm32g0xx\\drivers\\src\\stm32g0xx_ll_utils.c.obj -c C:\\Users\\iteedi\\zephyrproject\\modules\\hal\\stm32\\stm32cube\\stm32g0xx\\drivers\\src\\stm32g0xx_ll_utils.c", + "file": "C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\main_weak.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\main_weak.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/main_weak.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\banner.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\banner.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/banner.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\busy_wait.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\busy_wait.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/busy_wait.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\device.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\device.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/device.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\errno.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\errno.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/errno.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\fatal.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\fatal.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/fatal.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\init.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\init.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/init.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\kheap.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\kheap.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/kheap.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\mem_slab.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\mem_slab.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/mem_slab.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\float.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\float.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/float.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\version.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\version.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/version.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\idle.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\idle.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/idle.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\mailbox.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\mailbox.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/mailbox.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\msg_q.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\msg_q.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/msg_q.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\mutex.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\mutex.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/mutex.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\queue.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\queue.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/queue.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\sem.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\sem.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/sem.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\stack.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\stack.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/stack.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\system_work_q.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\system_work_q.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/system_work_q.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\work.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\work.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/work.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\condvar.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\condvar.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/condvar.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\thread.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\thread.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/thread.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\sched.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\sched.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/sched.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\pipe.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\pipe.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/pipe.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\timeslicing.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\timeslicing.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/timeslicing.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\timeout.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\timeout.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/timeout.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\timer.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\timer.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/timer.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\atomic_c.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\atomic_c.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/atomic_c.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\mempool.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\mempool.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/mempool.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj" +}, +{ + "directory": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build", + "command": "C:\\Users\\iteedi\\zephyr-sdk-0.17.4\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=8192 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSTM32G0B1xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -DZVFS_OPEN_SIZE=0 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/iteedi/zephyrproject/zephyr/kernel/include -IC:/Users/iteedi/zephyrproject/zephyr/arch/arm/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr -IC:/Users/iteedi/zephyrproject/zephyr/include -IC:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 -IC:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc/include -IC:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -IC:/Users/iteedi/zephyrproject/zephyr/lib/midi2/. -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common/. -IC:/Users/iteedi/zephyrproject/zephyr/drivers -IC:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x/. -IC:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device -IC:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6/. -IC:/Users/iteedi/zephyrproject/modules/hal/microchip/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/soc -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx/drivers/include -IC:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/. -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p -IC:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp/peripherals/m0p/sysctl -isystem C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m0plus -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/Users/iteedi/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/Users/iteedi/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c99 -o zephyr\\kernel\\CMakeFiles\\kernel.dir\\dynamic_disabled.c.obj -c C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\dynamic_disabled.c", + "file": "C:/Users/iteedi/zephyrproject/zephyr/kernel/dynamic_disabled.c", + "output": "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj" +} +] diff --git a/firmware/canfd_cdc_composite/build/modules/acpica/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/acpica/cmake_install.cmake new file mode 100644 index 0000000..0c1b449 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/acpica/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/acpica + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/adi/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/adi/cmake_install.cmake new file mode 100644 index 0000000..43dcd73 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/adi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/adi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/atmel/asf/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/atmel/asf/cmake_install.cmake new file mode 100644 index 0000000..6c589da --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/atmel/asf/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/cmake_install.cmake new file mode 100644 index 0000000..b4d69db --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/cmake_install.cmake new file mode 100644 index 0000000..528c243 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake new file mode 100644 index 0000000..adb2d57 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/atmel/asf/common/components/wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/common/components/wifi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/atmel/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/atmel/cmake_install.cmake new file mode 100644 index 0000000..16a3383 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/atmel/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/atmel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/asf/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/cmake_install.cmake new file mode 100644 index 0000000..f1d165f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-dsp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis-nn/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis-nn/cmake_install.cmake new file mode 100644 index 0000000..08dc266 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis-nn/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis-nn + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis/cmake_install.cmake new file mode 100644 index 0000000..909bb57 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmake_install.cmake new file mode 100644 index 0000000..1309d97 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/cmsis_6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/cmake_install.cmake new file mode 100644 index 0000000..287b24c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS/Core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/cmake_install.cmake new file mode 100644 index 0000000..5be70a8 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6/CMSIS + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/Core/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/cmake_install.cmake new file mode 100644 index 0000000..6caa33d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/CMSIS/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmsis_6/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/fatfs/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/fatfs/cmake_install.cmake new file mode 100644 index 0000000..28138c8 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/fatfs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_afbr/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_afbr/cmake_install.cmake new file mode 100644 index 0000000..a976cfd --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_afbr/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_afbr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_ambiq/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_ambiq/cmake_install.cmake new file mode 100644 index 0000000..e8520b9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_ambiq/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ambiq + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/cmake_install.cmake new file mode 100644 index 0000000..37fd12b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_bouffalolab + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_espressif/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_espressif/cmake_install.cmake new file mode 100644 index 0000000..e082ca3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_espressif/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/cmake_install.cmake new file mode 100644 index 0000000..de126a3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_ethos_u + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/cmake_install.cmake new file mode 100644 index 0000000..8b6085b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_gigadevice + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_infineon/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_infineon/cmake_install.cmake new file mode 100644 index 0000000..7690bf6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_infineon/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_infineon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_intel/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_intel/cmake_install.cmake new file mode 100644 index 0000000..01f4af5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_intel/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_nordic/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_nordic/cmake_install.cmake new file mode 100644 index 0000000..cbdbc74 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_nordic/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nordic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_nxp/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_nxp/cmake_install.cmake new file mode 100644 index 0000000..e084044 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_nxp/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_nxp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/cmake_install.cmake new file mode 100644 index 0000000..40f6de2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/nxp/zephyr/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/hal_nxp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_renesas/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_renesas/cmake_install.cmake new file mode 100644 index 0000000..eee6806 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_renesas/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/renesas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/cmake_install.cmake new file mode 100644 index 0000000..d460bcd --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/renesas/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/drivers/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/cmake_install.cmake new file mode 100644 index 0000000..d8d5272 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/renesas/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/zephyr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/cmake_install.cmake new file mode 100644 index 0000000..28e6e50 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_rpi_pico + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_sifli/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_sifli/cmake_install.cmake new file mode 100644 index 0000000..e17ba13 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_sifli/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_sifli + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_silabs/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_silabs/cmake_install.cmake new file mode 100644 index 0000000..9ff815f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_silabs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_silabs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_st/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_st/cmake_install.cmake new file mode 100644 index 0000000..b82fca0 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_st/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/st + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_stm32/cmake_install.cmake new file mode 100644 index 0000000..064f6da --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_stm32/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/stm32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj new file mode 100644 index 0000000..0d0129b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj new file mode 100644 index 0000000..3719a68 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj new file mode 100644 index 0000000..eda97e1 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_pcd_ex.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj new file mode 100644 index 0000000..bb04d5e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj new file mode 100644 index 0000000..67d5e30 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_hal_rcc_ex.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj new file mode 100644 index 0000000..d57274b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_usb.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj new file mode 100644 index 0000000..ec2be14 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/drivers/src/stm32g0xx_ll_utils.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj new file mode 100644 index 0000000..07fcbd5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g0xx/soc/system_stm32g0xx.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/cmake_install.cmake new file mode 100644 index 0000000..5bce3ec --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a new file mode 100644 index 0000000..e5226d2 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a differ diff --git a/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/cmake_install.cmake new file mode 100644 index 0000000..2843dc5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/stm32/stm32cube/stm32g0xx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/stm32cube/stm32g0xx/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_tdk/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_tdk/cmake_install.cmake new file mode 100644 index 0000000..76f8ae3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_tdk/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/tdk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_telink/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_telink/cmake_install.cmake new file mode 100644 index 0000000..779ef70 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_telink/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/telink + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_wch/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_wch/cmake_install.cmake new file mode 100644 index 0000000..8a4acf4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_wch/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hal_wch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/cmake_install.cmake new file mode 100644 index 0000000..f2a07f3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/hostap/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/hostap/cmake_install.cmake new file mode 100644 index 0000000..3e33917 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/hostap/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/hostap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/liblc3/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/liblc3/cmake_install.cmake new file mode 100644 index 0000000..873e226 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/liblc3/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/liblc3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/libmctp/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/libmctp/cmake_install.cmake new file mode 100644 index 0000000..2d6d318 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/libmctp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/lib/libmctp/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/libmetal/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/libmetal/cmake_install.cmake new file mode 100644 index 0000000..464ac4c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/libmetal/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/libmetal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/libsbc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/libsbc/cmake_install.cmake new file mode 100644 index 0000000..73dc13f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/libsbc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/libsbc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/littlefs/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/littlefs/cmake_install.cmake new file mode 100644 index 0000000..9f8b8d4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/littlefs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/littlefs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/cmake_install.cmake new file mode 100644 index 0000000..f531aec --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/lora-basics-modem + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/loramac-node/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/loramac-node/cmake_install.cmake new file mode 100644 index 0000000..af9c5b9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/loramac-node/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/loramac-node + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/lvgl/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/lvgl/cmake_install.cmake new file mode 100644 index 0000000..5f0d84f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/lvgl/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/lvgl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/mbedtls/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..d946eeb --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/mbedtls/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/mcuboot/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/mcuboot/cmake_install.cmake new file mode 100644 index 0000000..34d3cf3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/mcuboot/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/microchip/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/microchip/cmake_install.cmake new file mode 100644 index 0000000..172e17e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/microchip/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/microchip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/microchip/packs/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/microchip/packs/cmake_install.cmake new file mode 100644 index 0000000..118c2d4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/microchip/packs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/microchip/packs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/packs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/cmake_install.cmake new file mode 100644 index 0000000..f8f1c4d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/nanopb/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/nanopb/cmake_install.cmake new file mode 100644 index 0000000..d194e5e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/nanopb/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/nanopb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/cmake_install.cmake new file mode 100644 index 0000000..1832a0c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/nrf_wifi/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/nrf_wifi/cmake_install.cmake new file mode 100644 index 0000000..04c08bc --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/nrf_wifi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/nrf_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/nuvoton/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/nuvoton/cmake_install.cmake new file mode 100644 index 0000000..b92abfb --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/nuvoton/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/nuvoton + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/open-amp/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/open-amp/cmake_install.cmake new file mode 100644 index 0000000..a58af9f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/open-amp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/lib/open-amp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/openisa/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/openisa/cmake_install.cmake new file mode 100644 index 0000000..41c3c16 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/openisa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/openisa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/openthread/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/openthread/cmake_install.cmake new file mode 100644 index 0000000..e627ca6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/openthread/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/percepio/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/percepio/cmake_install.cmake new file mode 100644 index 0000000..20eca5a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/percepio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/percepio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/picolibc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/picolibc/cmake_install.cmake new file mode 100644 index 0000000..abd9c5f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/picolibc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/lib/picolibc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/quicklogic/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/quicklogic/cmake_install.cmake new file mode 100644 index 0000000..aceb039 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/quicklogic/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/quicklogic + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/segger/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/segger/cmake_install.cmake new file mode 100644 index 0000000..8c7e97a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/segger/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/segger + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/cmake_install.cmake new file mode 100644 index 0000000..9e27da2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/cmake_install.cmake @@ -0,0 +1,60 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/mspm0/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/mspm0/cmake_install.cmake new file mode 100644 index 0000000..ff895c8 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/mspm0/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/cmake_install.cmake new file mode 100644 index 0000000..b17a19c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/mspm0/source/ti/devices/msp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/mspm0/source/ti/devices/msp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/simplelink/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/simplelink/cmake_install.cmake new file mode 100644 index 0000000..95b8a8b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/simplelink/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake new file mode 100644 index 0000000..48d8243 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink/source/ti/devices + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink/source/ti/devices/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/cmake_install.cmake new file mode 100644 index 0000000..7c66d37 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake new file mode 100644 index 0000000..e34b815 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/boards/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake new file mode 100644 index 0000000..fe52ce7 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/simplelink_lpf3/source/ti/devices/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/cmake_install.cmake new file mode 100644 index 0000000..8973f31 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-a + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/cmake_install.cmake new file mode 100644 index 0000000..3d23c11 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/trusted-firmware-m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/cmake_install.cmake new file mode 100644 index 0000000..7308bc6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/uoscore-uedhoc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/xtensa/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/xtensa/cmake_install.cmake new file mode 100644 index 0000000..dc55cdb --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/xtensa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/modules/hal/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/modules/zcbor/cmake_install.cmake b/firmware/canfd_cdc_composite/build/modules/zcbor/cmake_install.cmake new file mode 100644 index 0000000..1fb467f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/modules/zcbor/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/modules/zcbor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/sysbuild_modules.txt b/firmware/canfd_cdc_composite/build/sysbuild_modules.txt new file mode 100644 index 0000000..a3933ed --- /dev/null +++ b/firmware/canfd_cdc_composite/build/sysbuild_modules.txt @@ -0,0 +1 @@ +"mcuboot":"C:/Users/iteedi/zephyrproject/bootloader/mcuboot":"C:/Users/iteedi/zephyrproject/bootloader/mcuboot/boot/zephyr/sysbuild" diff --git a/firmware/canfd_cdc_composite/build/zephyr/.cmake.dotconfig.checksum b/firmware/canfd_cdc_composite/build/zephyr/.cmake.dotconfig.checksum new file mode 100644 index 0000000..cd84f35 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/.cmake.dotconfig.checksum @@ -0,0 +1 @@ +a474491c2e885996850ae9bb75bf837e4cc71d1d78e928f9b6749eb5fe32bf04b23c3fcc57ab6c51d4bc6ccdad85768cf93c5930170d8558c3266abb749304d1e882d52b51700af23d2b197455e043a9dbd7b840a5bd87f10f7ff64d994557ccbf745b696912aa8d1616edeb400681ed508a4bff3b7cade15526c51c0b0ab1a3c8e27cc2ce20bf366b838b1faa89d926e9ee56298f3799ef6c18b87141e040d0ef96c3f1c09b7c9fb2f0c63df83c7518d75cce60874ac00dd643279a8c93e6dcc5c744111ea28640c90f1446a5b3244f4513724cc393b298e326327d243b53d2652698aaf0e1319a4ad34fd43c13304e9a231a523548522fa48092e95753b3831623f41c4d77aa4c5b1ca793e0428ae0ae905cd6b12ee7bc47d42e94f0c07a100b3f53a524d49b4960227020185a34ed3381d88b767017f740847ab58982c52ed7b857bde6aeb777fb1835439ae425ec71d177e4944edc307348c92b6035c2549583a66dfd227a94f24128e8355b95c5d5dcb3987106f1e6fab86bef4c75524e42649a2998ca68ed49bce19d30c7e6ff2a9b358a9541ef564252f84b0c412109bee8f317752224be79d6123da07e21ce102c0c137fc5365245e9ce01ce7132b9dbc1153354cc947469490cbb568054a8a41e524db01c5979d38aed5b814cdc1a5062bb89288f7afef1ebf42628cc72cd89b6d3b0262a6ad64ba6965765c58157e214452e7f5a1375aa8ab843971f4dc9001a88eac26c529fe50233fda1d881c69b69391ac619026b8d0210ae46b351de856fe695fda13564f103fa37b65fe18dbf54a6a887ba33c82cd0505638a000a0ef153b6bbf724e8074475fa66b4ec551b27896e8ed60f5d97064e52c405601aa40ae4f02e5a52334e5f3f8000a0c4c0223f612555ccfdb7fd08661d39ec194b2bf3e66dfcf2dcf991441cf8ee6fae32db39e9a6cc4c8360d22b4487feac8f622041a2c965cff8b2158f39da38377c3b6122a827251b1fee759c021b9d5751e88ebf33b2e346d14a0cbafe243b9c56ffd9edb46fab8d495a41265b52e8b47773f438b12039f1e59aa6d85768b9146886d871bae466f97df099a5bb13ec540ea04014ae844963fa4c84d0941dae096d960d41e337d71dbce3bb4f1284015cf6bc03b398d87861d25bbc6e59b771329bba828c06e72dc4388eb4994d81bc3e12758b0b5155489f11235d2d36168759ee66758a31bcc26417ed55a6ff5655adb310bb9e933a5688c811a0eca204741ee8bb6fb96cf10d085b335f02148ba3026133b1316ac947ed907a03bc13b1e0c64851371df0335c79c1f307cd27ba5994c81d7d7feb1ad759234a19f2b088ebc6f7e6190efda2cc0413d5560d94d2668439891bd1e271a3a44deb350f331f91bbaa6967fd8ce6c37af9f9279a1f9c68ec6a272cb5af547b4c7f42c6e57945bffbd8395ee3894e958a3f6b7b2f2d48b0e61e37ad302b4448d09bcc50dc7579fcd9562436b2d194d44a56bc53604d4aec0d5bc272bc3683711d3f407b4dcca0cda5fdbd29b2d24b37613abf1aa29aa12174709e0ae451cf4b3d8a6c40f59ddb622b379f8157fccef854f1e89c5633677ec67cfa7438a0bf7e1a6f4e8dc9f03e2ca12cc5da8e85670709214585e81d71b597c8d798be5c39fbee764e7b4880633c560e1458075f69a487f46cf97eb322625a7b768b779e33593375a4fc62da1649ed6fe1005c80be21189440e6f2be42437933eac766f444103c57331ff6deb854997d841d3ac3b3fe843cb551dd93217741af8e4add881bc6eb5acb4216bbad916427b6ceab8f5ca421dec9c611d8fbc591e2a2db94fd41643f8453e20b0f777e53ebb2503a445133a626f202066c04eafbab32e905b98a574950803eddbf412a0d4ba26dcd8993ac8c37d60fe9c857171e6a12a4ff40974b2c32949e3655cc4ee9d2937d07112d1750503e292a6cbbc15eb5ef0f1bdd5429cdbbe3045f2aa58c9864e1c44b595a00b015b9b100baea3bf1e76bfe8a3424ac0095737f00717e9abc884483f50f8606857a1e8e8ff0e8a1136e16f484a533cafaa269cb5f9ba0615f892d816413037f16dd524455e595d68912b237ab343a376d3ae1adba61eb860f75ff5e97d9028b4b236bef81c14860b10afbc4781541dfd9e8153eecfc7ceffc2c331a9f4b6bb55455883f24b015b983dbaa4cace212226fd07a6aa13ebabe84954d82ac28ea3ba580c16a3a913400141f3914695f251e711d057dc1bb9d8be6663e0e2688c4d6f422b34c14a3f317814dd5f29f9bc04919b2568257287f396987732a9bdf42c6af490fb4b0f3167b7e7b86e2860038f5ec7efcda22b3a61b0b79eff4a07cbd295d307476dfd69e9e1e276d98a1636e8eb528398ca11210837f762ca705cff1f8ce982ef999c35edefe82e90064c478ff61f89a09e8d66ba00b5423143fa0baa2087b7516b6d9e238c6bc6966c6cc55946283a7f12fdf61de8cfe2110bfe96bfe5a0a5731e173fdd66f59a7a1e4f7638dbf9804849e2f886f073b215fcb27b245ef9cc28b6462b9967aa3fa6189cf7652e09b5f5f1d1fea2f5c422427230b84c4a675c38e7bb609de891aeb844639cc1f4032b86f9001c8cb4db7c3a70d07422e64e12596ca69c77bbdaa996068c7656716411d0a49e95d40114cd4096ef0305b6b9ba77ea750574ca5a64ee77022fea4ad9d97841b529ca8fc82ec4a3965078eae0fb27c392068286796bec22d845e29cb4a71850f5d289bc3ef39e86e5a8d559343877f3e81ee2978132501fbf606854e522658fe28b7a5723756c3bc92c87098df15e5fab66853cb2ce86f175509d5970296d0e051b15e8b6b7a9882226e50574221411dc507fbb3081b1198da4989cf62619b3c64e7b918c7d8d34f0539a1c8c153ebf5d9d9f69e5f1801652afef050dc6b9f09d3c757dfd5356ebf8b3cb39233123a0bfc87b80af5a73b60d487d92978524bf262c04d5f00727535d3ed9ee38709160bc4152d1c1c6e83db7e0586229abad8bad2e40c2b6fae351c2a5aa2a52bb469d5117c2c1ed6455ab590843c910813ff4c41fa3f9390ca064c700c1f434891a589b5d8607ffcbc9d3db6cdb200a8adc3e54a1a7361ea3a55d28e014c02bb6d17954c9e0b06f5fa37f389fe00551bfe44109a2c3b9b23361a5067600fb8e55cf4222974a83d09bb461177997d0866d7aeb881ad9ea508b2e2cee7cbaeb64356c46797714fc829a9856146de84bd4568027d5c0d69d44e9134f93d46042669d9e47ee6f7de82a81ff8938d9a59f84e12404fa8b0c298b79474450fbfb65ef10b0c313062c08011ab10f8392cc55706e3071a0d9b42793a791d3775792e23f9dadec39f7add9ca31657c8f03aa237b538e78899d8f54d6bef630f24a9c98fc2d47007687ebfa8fc9e11ba9d1979698ff76a3ac5c20790804cff00a0697edf757881e0550c32f0518d2572a5d9d4b7840618ff5635734cf7e34093a790e423c07726c7223895bee7c26286f04cfc7b85916bb92b1b05c4c9dc4611f8f773a1a62254cb46b3a74dc97621131a321eb951464fa93e5bce47add895263a1ffda54817286dc6107f795bfc1ec14e5ecf170bfc3433cfb6c74f3e68b6440cec21f1b1629566163896e8cf94d986132221e4cd54ade94fd50613c8012a178fb35425b45c7c16bcb4cf15713822f1d043e7c1d94122e688251741f1402496481e9828d67fb9dee9ce3c5c2f9aade9e6da99756a5e18027dccb5bce4b096b70b5bcdcf3b2d3fd9486ada49f5c75fe2759cf5342e6953acac12f1e3a0de5a0cfeea386ddccad297cb91701db50fef1a312eede8c49ad9c40d40c9a19b35a5262ceff4d53a2be1e1b4bcf7a1451f45e084f45c781a99b1fe1a6e560fd3c1e57ce3b5b120400f1014239832c8b3a263d81180efe9074c76e57ac98ec35f6276f9d97b6e39f3c63f80d49edf35f378fb806628f2324961c8fba5af82119099d92eaac43fe5fa061ad57497b3ee65b1ca357777e104111c326fb7685c0638db4536b89d796af19bd1849bc41b6940dd58e99cb1ead36e95412149f0d5901a714a1d1b9476d25852aab0730ef9283419f71462d86ab1e7c35c8e33475cd4ece6a138e364d16a9c8e2508e8a7412a7f8fccf694ca35641abd78c53c77358545ea84a58fc831fdd19786ea524af24c4a6afe125bae1fd144e8bb3c3ad14d97979511c3078dd61809a5ec19db9987475bfe13832f79d29967b7ef5970f4eba871f30c27c6c17ece6ceec9f85ecc80b566483ae8a6bae8469afc8074ef8041807c16446904bfaf18d80e10a413d3aad7d35b7641dbe1c150f8c99f97fdc098725d7679dec45b9747d585eee0d36bf1698938ef5b11777bb71e3ea1c453978fb74dcbfdab79fb6bf8eb597e883a135eff6e753635ce580068cacc9e46a7c9820ad16fb777d793b284ed913fa3890705b73bfb4af7c33f20e2f4b9a27382c489a5704d8ffe001e75bd2ccb27384ce2e52b8566b8859bbb1577a4cee79ae175d12f435229bafd34c4947af197e9a36239de14981fe68d29f08d8c866c0017a72a058a0b3b345ab6d8429668d9dd5b3093b387b18a5a24a2867f41807d1653923e4f892791ac3da5b16ad428b115bbe6567c6dec8cc87320ff926e10b2df2d068e9f7535d59555cb12a938194916bb8a81253edfa59555cb12a938194916bb8a81253edfaa735f56dc61d7ec38231f27d24225805de2fa523f11eba35f66a86f1ce294fb0b41b3b5dab63683ec529370028c4126fafb5885ef20e3f0759dfd8e56e22c5201a36624cb990130c83224c2ad7e563b510c2d6ec2b2dcc03ba5c5753d435acd5b8988018e9b9029431f6b34a8003b0f80ea6d0049e5f9b63e99f05db4e8dd7887d7d08aaeb5494d5b09f7862521d7367fa2e0ac274d10850d1f0e8ed0a79e5dc78a282ccb42f66f9d01ed3feeaeda3de64a6131bb2b5167179f314bced2335d309900dddd322d85652aa6425f63f9b27a4f8ec6177a31a8daae8541fdab75b47d68dd90be41ac4828c667973b427d7840587554159968f80f045d54dd4af8c303d2faf1bfe564bc456aeb9cbea86f920fea0816af5d98fff808e9f43e67cf52f0f4faaa0cab2be8d2fbcdc0c867fd87cba401fc489cd3031c420dfe4726a1d0d66b90bf54f2db3048c8b39def9c8c2f1b43dbfc715a3a3fd3d0067d6289e2a03078eabac838f7be71de7b6377ea0406af7c5474462f57be9e6fc00e309ed45f0e66b8f15a292bffc5f487bd24e7150fab1fa875be30ef45c6c82591fa1e85306cf6e604350de7ed464b10a984da98ce8358376566c7725f2c1cb541e9630c96fd6994f55986f58b8111f0fa05c279d75e06ff0f69b25d38cb1541b722f7438d45115cb32b49b56bbe6adfb9f06baa9607c71f7d3d6a9aedeb7265547fa6e19952dded8e2826692f669e832ab0aa3385244f954b45a097d07d635a8f5abd460f628b67e9c16eff8dff26268b9efb466a99330e97ee412371780ba43642e548b32ba525b0504728001ad913d2a942955d1f67c947f57eff188b79cad34a65050af7b216ed7cf1f529c3d98413fb4525456bc8a9c0b5cd34444a84ba09a7e821823b06036b1868e09a577552731e817fe69e48fde85021b8e0dc464d583a9c9239dce6038f584583195a47819dacebaf1db09d39c0687d1d1cbf3e439e7359250e26637545eaa9679e0d888b3e9d0b270342ef5325305a5b655c4f868b606b9d233a43fbbc9ca7f3295c1df3df9476126f5da8f8df420f568f3dac9c2354e5964096bb31b003374f36fcab2fba0ea47f746c8f2716e3b94d347b38d77937d0d34f3ee7f587d7a775f57f99d003c7af6bd7d7458db703ec6fb9fa00facada3e3a3b20b15632ea6ecb336d9a373eac9026ec9bbd1bdd647f3e2721ab97269d7e77fa5689222d97cecfeb2a5030d71b5fca9d9fdb70dc55243ae28010fbb4226c2b637c1d4b2297600608c98f93261d6d008d4b0995a8271de31aff3a87df923313e037f591cc561ac3d455a0eda78b5ebfa662c953b036f85b232adbb533f37fcb1007856ba609aaa3bad6aca565c12aca2ae081aa2fb579ae04dfe4ff8d5243cc0df73b0d4de9cb9a24209d18542bee6d300b16be553216dd90d9c637004596c350e3562fa5e1770eb55e4dfdf85cdef6fc677626a2798212a5b956541df8ae4296f618158d2a2c79e97960a3646b244cdb3b55e7475d726660a9be31d6c14a2ecfaacb4ca1cc7470f654abf4810283dca76f5964449577e43c49dc5339d52dc33bb0481317be8f6bc33903b34676ca8c20e24fb7c47245ff0afd3b56f095bb2607f21bfddde6d64110beca732a431bf5d571be7194928b3699b5ce7cb7315109936cdebf52e0234c566c06ea95f96cf321504033b7b5a25e2b41eadde0bf52c8603c116f55a8e38638da7298a6624b2ad21e791a4af445a4ec46f7ac8f0b0d5c9c005763768674dc7c18680f4bbea130ab20859f0fa5198fb39cae0ac630f5f4b8bbf2359d837a59cd136324be9afcac3363591493e397619426d426f72dabc3911d5917cd3f49a221b623a4d9a1400ede77f8dcf2964199a27fa2927e6504547a23602cd10917286cfe6cffd1f93e4dd1a7de0a9f4bcb735dcad7ba27a5c3a432be19977926777fd839a92c46c247722e84d8ad8cd44f59038376dd4e8be7dac923f8196dc65c9dfdddcb43623ca0961dcb38566d2e572576985a7a52575ccbc3cefccd1517b30e2d5ba892d0bbf33d884165ac40c64ac86210e50a2f59cb96a655d3321748dd479fe961ac360959145234c6d20ff797c7ba1d8e6eba26490b314a03155fec3f417b0d7a8d8fe3323f281ce3e2e398d93f9e88c9edcd32c024e4dd310b33a17ea51cb697b7f8dadaeb822122ee0b67365d8d5428ca862749440ba6fea163422a8a18209c504afcde4c8b511516fc500aa29fafcca1a597e0206486b4da5add1c91926cfcde6627263fc5f7ae6f391dab636e9cece331c357194ef08af6fd878c786fbad030344de110e1bf76f0f64ddbc0c043e2382767f0d38f8116cef833b494395c274c45f61690b2ac6870401d03a497794ab4462dc0861cef299a2425bb423061d2abc1391310902930ac5cec965d31b7e24ead857131963ad33c6c0e4ee3e5dba1424be1f30378e6bd076d75398e855252fbd5065928b92dc33f27fc2499a2a26aa0a90e700cbb6986e7c1ac695660e8fddc41a583474160d3299eae21646e4548a0f2bd5eae02f1e15fd3953c5c99d2ff77f577696e702ef5b8cca3e1909679e2123a5876197bc5d109dc86c357b1204ef00d83593f961b3847b9f9f30f699eefc5daaeff0849d5daefccda2097b5efd1907dd3c2109fb9e6d1a290c4ef1d1e046e8fed3da078c8c497ed4f305b72f0d5e9351dbb6c72c5f6312cf2fa071bcfda76b0c637865c1c7e04bc85105440a550d6565b0891e196ec24d45b4fdfab088dd639070faee9198dadf647adb2a59faef4e692f0da75fd60b1da5ac86355adb2f07adc5edd3c2fb96db7f4d3494d0ef16d2188f8e35a36032b1ca7480f15623fe5cba85e07383baacff1c311e7e66c1bc5d9cbaf0201dc4f92c60c4dc853cd58af0dddc1dedb0f4f4deb46ea9853ce16c306dd5784bbb004982e4c44c190c14ee975bddf8a5b0383e50fd796a89d1b69a73b3532b7ee3e5f9da814815ba50d306c1b8965ca2681ecd94e24530e3f1f4562c0a0187b0baaecf1303c2e67a32f2d3ace996c9a3a4c21d921e1bae6ee08f08d9e80009fea2e2e33e5fe147d9cd1a8b606c27997f299e7ef566e404876267146961190a19e5480aa66a891d99b5c8c03a93bc2f7d72977531bc1dba73f06cb6fd8d570d0e796e2642f52774a431dbda49c06b5a7eab5ed7ce465ca4e1a3e4e81eff3d49aac42623339e2e5c429d037bb260f5ac63e4add181436ad2cbe42f5c1324dc25611b12d2a4b4f74c0e5b3cc8b1ccb88716776e7fe4a8758105252de4d0a42b33fc2feae422bfca223871caa5160c29a7af77c3ead2e9311976faa968b6b335bd828da491dfc6e69bc63d2146975e19daa0b4c292bd1d6b9e603531928606b48b0c2e518fea2514fbba927b74c7971e585a7b062db736f0d7ad6325ac5f3f598d9fa3741604bf5fdf561443331c20c24a29f5c293a250e5aec1aa315290e269f130a81a6d59dafba65d38e22add6d52d980f077a1bfb27e91ad4f24af6db52a465220f952a088752246320e6ae5109142f266d100778dc5ae5d74c495d4677f0c348615a244e325670db6e7ca3afc66862b78499c88ead05a6d4720b15f97f6d62164a677d56ed28493aac6eea2f0855d6dcf2cda7a953a05a3ab987abdab0907c624b7d50c1c793abc12955e3b3aee53d6fbc34e095ec5a108d1949b851b93c20d8d105d10f9422e31d8c2b54d65248301ed654e1162e822d3d6775f33dbdb9eb7288703ba3a4791bd05a0d63823c9ceaf2ca000e389644313427b1fa4896c209795882ddeae32efd1696fa13b2b7fb927771e86507ffded382f74af36395b4c3f037e7ded6a1c1a31b103e5b57cefbdc22bfea5f6aed6232513856c6a2494ab1f789bebf70cb06a6b9e012f6b375da086749f66e1d06053498eb03ded0daf6f64b751865a04a514bf97b65bb3da5f56781d589f39a36f55c0d93fd27bd325edab2563b9c91d6848dcf0e17a61b6abc2bfdb240b4c05f0942d9f74c611b3e2aed2d0551d8ed3ec541ec7e57a25c86e0568327add0f52f2264754f65d06d61da1014f9faa5f2ca2d2629a35bf7799564cf0965e5403b87bd69ab8da36afd8270616f388119ab69d3eee4ec61e64d18d8c83dcd124843b022bce1babc20b93edd273f58f4d73e11a65dde09bac76c7278d5a488dd744fe547a60c1a4fbea19b803d41e7673f671d6d83efaf9dd437bbae2f97a7cdacffb96aa602b36c90b15d4eaca649d1534489ce5521c5884534beffa9154811a51c4081e2e5908a6c86ee6d40162a60441a7cdbae39b09813ccf453988321705fe9faf83b8a840f7202f49d83127586647d6f03f9c6090c6a19afd1f153e77bfb1f5a940cc51770469c67c3b7daf3ee74f40482ecca533b880f00716ba9e12f2958b570cf9f863e54f5cfbe88b4d023be78e116667f6a8f3a12441ea7a122ca715efebb84b073634fde2504d343b9433984be1023238088ca80755928d893f4720bd044f1f5f1b992c8955829dba48988a459707c2c326e20e9a6011a87ecd761395f31c395e54dabb63384381c779b296826c798fdaff87e37d2de98b7b53dcf8efd3e2234682aa2a39207d1f3b445d41ffc8eb6c56acc3548d5f46ade131df0678ecf12d0de0358a12ee0f0b1b92f946ea52aa1303eb5b9328937440114146c208a33b4ad83342421777c0f7859a0a3673b0cc6e3495df057f9ff8de86faf0a6531a397144443452528959ebcfd9d786ce5d4ea90dc795dcdfccc16c5579e5ee10ffa1aa9b1548fb804d048633ed69d904a39d88df4ddbcad47b9cc88ef9bd4bb42c5464643ac1ea37fdccfd7b1ae9637a2dcaaf3f4f5a3d33edaab3d13e8cc8c852d913e0ab1c7d9d9b4d1a2817eaf14a569d188cfea9eb56fecf42dca213bb65e74dbbb214c7727cae2bbf40b28adad14fe9b75d356f8daf9f6dcad364376ebcbd8d79bf12871af3c6dbd6e7af603b0cf16637340405ddd90342eb5f11f48e1cf5c579ca5c8b910aed7cce906dc365ab8173693c846425edfaf2846a832d659d32eb3bd4b5f965917b77a8cbb73d2bafa931bc2a2913654db8d92ebcb2af7fdaabac18f76d9d8a319775ef41a014aa71dc73b9957d0133e0eb94c68cde140c7b24e3c2e3668d08d0b17ea1de8719f3da22337b8e0800cf717dcab43c6fa7d48a8832db9a4bacbce04309cb46ca75880eec12e8a59856e46a5b1c0e44c1181093163b6b8c4a958921159536af6add07518245a5eed300e54499609c29214f94a44847e3c9c0ed8352b0ba01cfb51e751f1a1df50f62ab83263609e406bec7c45ecb1b2ce1ce5f6dc6524f143e25ae072ffd57dbac18c820d284cbf346e38588fbc2ebbce60d0087719496080931921d92f56941706fdd5d84266aa4fab972606cfbc887463a56ad6a3157b9bab986766e771dc3fdc9a79a49abfef4d1288cf77c5bad43e27231785e6e10f4a3f28a76ca1bda56b200ee9a389746b2561ae2c5d074051e2fdd0ce11cab2c6c1d80430a145e11080bf55871d2970e1a225ab3d2b91ae018525e5febbe30a79ceb1df610151b9553a58d9c11ef8b4e820c3ec70d6ae3fada1edea92ab1611ea22e7f9a57ea9d32b186992b886e1fb7985696d509ce1fc356df701ffd11672f2f03211d6ac0903872866825416931c029f09433df8a6d570f094699b5a776c5d155829d5de458ff487cc0a68c12f1a0209921b3a3d77719eeba513bb5ba6b92515a29429b49956d425d643e737f7a776c432b52488f5dbbceadc0baa7ab7723aaaa0c0e3768858851240f2042bd14ed9626f2420ab6f13ba435db32e566d8bdc9b383f46b07e6df195815e59b03ca88d44ea869e15b5f21102cc30ff8df5bdd2acfeb94b71277c0328026ca0ef386a8ac26fc1101a9486abb10348db7691a81fa43b9ce96bb2e38d19afef300617628f1426ff3e494d180c353bc855961ebab1cdaaedffd95f6b61c3cc24871e06e2dc89bf3f67d1f7bddf9f76255be4d1480cf97697f31928417ac541b95cb76f425efd425288db3627f78dd2a69aa8c19ceaea5acf93651f4fd4e31b900536c3c2a3fd5dc2ab15c52220ba23bb57171dc4b9ead86ad83e9dba63e246dc49752d1ecc128147f9c7739fc915a8bbf232e28de68db3914a86802cf1d4bb5229dbb52ec63acd9b28a093bb54e744c69d4eab42d3795605a7379435c4b7722a161f7231805e6b40d6a1d247c38256eef4c243dfa7837d269f2169254b31bba384338d1c6aecf43629dcdb1ad3d77035eac030b0cce30bea9bab02bd52cdfce811725adef2aaebe54e3e16581eee809351b550f34516783cec00126e9bc7f2da567775b5e1f4b7a20b211fd7f75cee773e52b2e77307ecf4f86b068333f2e9714183bba5ede49370844d7911b5caa5771d024065a6179518779d97393e696341aef14d1aa8ebd9c69e1574a04d8649b705b5af6d233aecb74f2de8effb7ce59c26c207dc4c1240d617fa20ca10b40fef96338fda8e168e7a84d474b5a6a1c3bb2a4ce7902c65c02acfa1446314745803c159e6b1d342dd7de8499b09294e8aa4ede9bfdcd6b434e3b197e3009da218023be0b30e42d115fa8bedaba6b41dadd9111deca75c51fd1b24ddc453240f7ae7bcd446adc8d9833e61bbcf8f523160657fbecc4f3ebfb0f9c6179b4ede6053624a587b7f5a83b764abe94cfa122b3674cd7988fe067f87e88e0792a3f93a1e33a93fb9f7741d52472324d32a0276bf83f1f2b7104148a703a3f9449a28d626345aa77fb9fdf16793478a62c64b89381b777dde05c32941dc161dae6aaafb8a2ee7cc6eb36a93a58dcfb36617b7cee99787d6e5bd15841841bd80c86116413d2a44588df0c9ee4d252071dfd00809df58aae8cd243c39139029e3aa2e81c4d37d9c94a42d88ad60e55785b3045c6b5077c6afb2d1f6b7732ad3efd325fe80cad8c460ccb7c36a6391680a95de850eea1de2e5f6a5ed3bccbf3bdd84034eccdaca1d1ba226841f9dc2417f6d73d9da908190fa5e15860b4dac7db59e5d4099510c3a828b8143a0b86bb7d89edc085743916805b2e4d3aecc427203e0953f8bb398164310a8489805467e5e82b3383f67e2709b3d4dc720424affde11f6d5a9fa1d4ab661f2a76318ef84efd01c900e996c987a250a29ec5062f5dc1b1528065f003d94c5c2a30989c6567fb462d93c693f9d0dc8ae75bb2f9b7a54c90ba1a95750e0d842aa46ab5a74ccdcaae342f6895d61da8c4927a41612391ba547da13ed473f9b1c1fa6e4a3775ab351e3ea3a4de5693ce0fcb0681821b8543546a670afdd9588833ec3051d83732b6c2ea0ae1499ba6acd1990c16fdf99992aab814f2a6dc985a857914e5f2864b9f964125ae05df39e258ff3f9f0925bea6840667f540eb2db65f2e181fecf2fc1384820b7b8efe67eadd7ae19ab91d54f5e9ed4f5fa619a28f5c6c839373616982c0ba68225716b54e166ce58d84a0c3eac7415d18053639959a4551a60e4d71c8feab490b0d3a7cf0c879f7f8a331532d6607617f6aa8074465630010cac432b5bc311eb9827240f3ca1973f10c5e4bafd115dc56cdbb32ebfb47eb14d55381250e5b4bb895c59cfea578f0d2b0bcdff12bdbe5e54a0ef532cb0ad6c1f4915be2660c10b6dd637ba3d9cc9112f6760da1807468a6036f24436ef28fcbc4246c086ebb83df06c06dec84f97338bafcf9891717023ec892d0d1f275640f704b122a13f09b8f6ac681f20818551fecdc73d1fe67411822dbbd93fe4f55a4bd6ac4bfeb452877ac351806467f66fec4af9f825a2072b05ed082035c75e4322db2c6cf483ab5e27e067ae8450a342008af715d8e8ea59841cccceb969287a53990bff90b0550aac99dd3370b7c3e042c2c75b4f9382b4872100a65ad8bca251b61ee6d207e81df41abdb2c0208e6dab762d0c5045c06b7644987337655509bf61732c578565339fc52996f7e0c3b94f2b27dee2a1ee9006012c7711a3e4d1cf2f96d2fb87be815e660d1613d720f5beccecf79cbc86be38f0274f514a8b74d55d8bbac71f29d0d5b3e480c19f4f62da901c065ff6fdeaeeb517c0206c5321a1ce6be3bc9b94c694520fdbcbb9f22d262a833b76ffde4844564610da4eb318aa7c48df6b4444bb8ed359852ec7147c2fe8ff57cd07b4341ba7634533d6c41c1a00786ff455d0029e903d8ce50651dabd979b835705736f4a6cf96236a90a995e73e0c6711aafde232b085495024d9b782aabec8b071bbd9b920e364a45da7d59974dba93d0263422551a089923b991e6cb690843188cefa3206303844c1f7e1f522908e2d05ba158878dd2e2c98eb0666b1776fab831305f983fa2c0741a5c667657b1594cd28e71adf788112ca9f9d356ad7cab649a7a72ba60854820f6fb28b426b8c4d689a8d6c37d838e6a1ce4ae7718401c431330e9194bede215a03f90ad8e68fdc7d661bffbcd076662cad56eea41e4e180bae035dc2c1b870189dc046814a64d0cc5cc6e21fa5aec68890c9ffb924794c538e91c9dd9311dfae54f576b8934e829e707a68b0ac1775571e782f54808080712540a077e369861bd1d879d5283f8f70f41595055cabbc0905a25ac3bb4e136dafc400323d37362dda868928d87a0a66ab30968e68b51c94dd14fcddea15fa4c8dc70ef53dd52549d72a84b183425693c4429a16fa5fb71ac41e1af089c5a9f386c856d4dc40980ad47b7808661750dd843cfceb60ee61467dbf2b46c3ea1bb28d60852ee78acb7c65d8ff4cd9cb7537d3f06d9599ad12fbb17cb3067e8f3e8a2a7b3f13cb708742346e9053e0d75cb012622924658be2ab1205befcdf8f00170ffa8f85a98ef4ddfb670920bcc2cd1cd8de100bebf865ef562bf0d10bb8073a0b8b20a7dba884486a20c9fab1b816d89c61a2f756fa70ef7e83e5044ff289c3589ed6e1581c4ce7c853066666208edac69e418ab439d9e8d4bcc349f322fcacd8c852dd8fb47b670d45662d74edc4a76fa0fc83f692d4ab9ea8b3cffcb8d76c2c81b4e655120000c575c1a86c6b34d499a84f960c29f9ac27eb9ec9646ef24281750e014cd7d8206f9a961cf906cefe408b0138d9e873559ab237d43ede301b58a67d4a4a606a32740c5a213012e4962f183abe5e72e2138142b26a07b697702bf78b5ff7f337ce13e71382fef2eee8440dcf8c47c43e3d1ba2ff393bce17acce5e311aacf0843472ac414c79ca3f97107d18bcb1fe954e7ce35a96c9b4d957abe3f5d494c0b1c7362b4b0e279cdfd585815606651145b869636e6a10390b9a56914c60249c080e1d159b90d604dce731d77b9f2e756efcc24b1b1405eb12000e4157a67386389806895081a88eaaca9d9e156c41a39bfc676ec094942696a99886a634f3536d1856ba1ddb6e1382224aa1b09ca67e6f368010a4749f39785f8aa439dd264f815d758e0569bd2757228d318081e53fb1549434f0e575b30c97d3ca34b126ae4315e8f7e1cb2b3b3c113d49fa12cd5d67adca368f588b158d521b8ca7740c960dd292909108e80914793b6a45d2ff02d8278a3ab3a7ea6a6a988be9204311b7a9e1f583d698cc1d0ec89f889281286ed37e4411460fbe02ed18d09fba87f02bde7cffe4e2f13a78f17c63d641cc177af723c3ddb7e844545538179d8efe2fd22f1d1a123c82d5270a79eb680dada7a638cdfb98df9fe2cf41c72861ed62223a5cf329db3f94701974141b5e42083db241d5f4b3ab037c230b2fed8edd413303435e984a7393f0371b36abb506493dbf55d3ca891bfdaaca3a3fee28164add159f3b1d9072ecc66ed277461e8c6671d5c54de3247dc892d9ef7671cb5e26596b7023aa282365da1056edde9290ddfb2b4201619705668b8d700db5430bd2aa93debbb6780423258dbcfe564a2d5c1d45483b969ce91599843dae0b15628698308210640cc28fbebf3fa68140961dd9018862aeacdc3b301e4425ed6970d74c6db2af3e03ef4017619c1c32a9aae17ff8b8f9efe84fe69d2e410b3f8eac1779d140370c5f43f7e8e545cf95d00710d873a04d843e618dfc80a66f3d8d67654def7651aa506d3844b6af43743e5055d5565445c85d769bb00b09d601f5f9b9b430b3f04186ec3897bcc77d09b17ab6a884d99ab06ccbb44af23701a39bd2be34581a801d7b536fa0353b3f389d413cf26abdc4544d54243faee89cfd5917df5064c2621447a63c6ff73e3335f8f719b19d21ea1281aee3661ca03dd0a4a0eb2902cbbd8f481730461865f2b7afc57efa1504f7d292103f7cd4d28a9a6e3c8780483eda87a3db9a243b0eb6b656c5ff05c93bcb8dd98cd460e865fc6621d5285dca707f7dcb782efa81a181303ba7c8c2e09c04d2ff19b3c48e29aa10ffebba94c82f00b4d92a7d65b4590d950bba4ad41b78d482a19e0748059ce99a1895647cfc4013ad3c1f8dc50670be978e3fe1e38be0e641dd1a312b2fa5ef1dbdee39de51e20528c2a15d352e87124e546f5672d6237342201740f69db98518588bc64917d8bf0655a442ba82e8e39fab874e44500459072510638ff5b3db3b5682513908a467959f1084c51c460e4af2ec1b825729680da617f3318d55e059cd07b96375d7b0805d4980e5046324387a9f9270f382040a1c339ff17d7fb10d2591e78b4004fb1dceaee425819b31eb49091e6eb2c1b3ad3e5f5246f314dc2a70bc559f779f2685da1e235b9b362a102a102cdfc6d31a349b4bb965013604607675dd513bf06838030d1b5b27b1ec0018a5d97c07f1df4afa9bafca2f9eaaa99cf858c6c8ea7e341d7bd7c6ad8d134527b5ce36a6db8beb4a6d4d18f760c4465cbc8fbbabdf475036decf3b6fc0d3b2a5e2cb6f2e1daeb30f35f7beb33707149644ba80b997240c94cb782bc640718f6dbee4077272aa87fae4fcdfc47a735d4d52c896a66f9e3005729f778c70937c148d33a4fcb17d6035b843ef1ce6c0724297c2dd1a75565365b8a85ca44f26325507502aa6927b6a920f49e3cc62d4e9fdc9883b9c7e8012720cd42d1e449c2e66dbe9ebbe6dcf23e2aad59a6e8887613ee432b16b95222ab8d5da73b8723e9b71fe3b87b0886d17b6a999272f6a0b9b6cb5ef05b33f7267b5c43ebce009ffc7d893f66fe5a13a4f923db7a4bb6f8277e04f076d14e320aa7f45415c224a3a6bdf121e5cd6dea817a0a97be467c0484662e6014a19f4944314c9de9f4bd6096cd5f58e66b025bdc08e7308a5d4beaf6aadb96838082164795c0164ee34aa52d06195067a4172dfbf3323da128b1a0c3bbd4636dd24fd77344f8fd27f35e42c888736000a4988a43a8df17956a867a4f37eaa34270c09bc9f83647d2c1492ef8163883d364b492db24f423987a3c247e63d29c6e433816a3acedf33a959d8d1d2272f8d2bdfd401c5e17cd5fa52ecfd111700df50fe8a19157674a16caa190f86d2d240a9545f0e31c8e885b992cb866c3a306c358484b9e39a43d6ff0399e5bfc259a62b841b4da3a02e4fa091a14b675fe1d327169e4197841e675b19e0a1de35b3786636828fa6996c709771028cfaab11dd8b3ddb01ac81d83862db47d1bd47c1dc91224cb98c6fe39b613220485871f1a305af66acf386cc9a65a5a56a8df3736833aa4c6cdb15602b07c4daf3b3eb005404bdb3c968aa2f49764ae51790f58188249817985ebe167c49c7f3c6d61dc1e8975545eb512d2768ab39ef4e252718e353fbac8e169b775d837154b5edcaa2e4b4adb8b2a67d52ec68cf2da555e672fe76ee63833e16655842d86dc894070a50aea93ed96137655a36792053817fa7ce5f9fc06e9c46c393f6de1f78a3a51220e51274d24696380c6aa43705fae652508278946912df5ca2fe114581be0d96ab8acd25eb3f1d92ee37d6dae33d3aa194c1991a60fc5481c7ad222838e9a3f112ba0639e13d0b659fe04ff367f967a4078d76ccc44d81faaf1c4717caeb26579416e11b64555289f93a8e5c993bee84593273542f53d2dfb104da0e5af2430355d90126008cdcb8df22d246d59eab33e55c20d0526656860eda89fcd72b5c8d567f61f09d7960fdc0ff17aeba023d67d00b0035505451da366f7ee63fdb412d6d7b23065c8f56727fa1d8c9b84022d051f3daea7fc8b75c21af26c942bf8d6e674a8385ef319ce1288a56a2e9c773ddcaa6a8a7aabf5368bc18aa664173203fa218de3d0ae3688baea019c8cac36b6edccb1647a4e62514857de25219ca01f1b71ab22ead6057057b5fbfba4af54b953ed94c7131cf8fed6a1de8399285e8373b8966f3b2e0a6b12b46c5848d4b15e7f06a619f1d578cec10310964face4428a3b3ae35acc92f754d884ce3a4e395611e956f3bd6a3764df82376f8ab9cafb33f7767d30559e0ce0c72397ed4141d3a9836633a5cf886571a4ba7ed4ccba9176c55e6a07f5cc13ed241fd224052911fc2deedd8132bf6a8f8727daaf7633ddb8a5b63bf9c9792f2e4bfa84d6a30b9f5fe4d5be9f181bd224244f216207407d0a50ac039dc91eee72e2ef89486118a59b3668eb408b875182fa0760c8a2795db1d4f2f899a6565d86994574a1fa2396b75da9bc026d3e3297ff79ffa64018040a9ca1ec2d7c59bde4660e4bc1cede3b4bbfffa48b568d8b242699400568f9d39116404da67b74190a28def678182663e5d4314d23d4df76fedb9498b51bcbf352b23d00d8adfd1efb5a96c9a0df47acc6186fa6295f81af572778d828c64a2373a08ab01160e3abff71aec51f067e01dc0d5f4bf2471046e0b0d7d3a034c2c0814a9e2e82cad1cbbe6c18daf54150512c86ca9edb9f975119f658a68f8e759bd353ea86feec0da5df2c993888e846558a08e6587f224f6335a894e05731e98f5f2ce1c7801f4bb7220071e1fd3d1c3670f786db6ef474a7d2f45b411e67faed31afd8b81d52977225368be6c009c229a7c1b01aaa143ed802467475db1a7dd7b7538cd66dc250d64ebd917d8db2162f644e1f405bc8a7ddf54662bd60439825d1dcf1bfa70300a9f4defb7d1158ed4f319e8f4937457a994693a4e4b006ca0e29eeb41a3024233c26cb3d31d51c18d6e8624cf7730c1937633c2200812e769bccf55018a1084a22bbe00a10a1d5c22e44fd3ff4b96fe3d9dfffc43889941cc8af485a6abaa97dd56b6b74678b7579fafbcf533b3b14a86361f817eb079fd77ef8ce93448fb6947ce3aee0abf2499e2208542db0c116c61df6148a745beff4bca4e5786e91f15f1a19c7d79f6081c6c23a0b54b41baab38f19db7b68ed1712d41341e48b4db00551cde1cc2108e5df59be9c71ed92e8c0172e94cdc7b59fd9accf3620321eb6d53c463a06c061761f0a4b7a8a6774a58e44e5405a92eb6f182bc475749bc5b32d3feda9c3863567da87bcad859d350e0ea120bfea9f75f275ade7355a5918f2dcced6f419f406bb3a09907f51c0d871e9b628d1a485c5fc09872d2375149c04ba53b80386e0ade029040e6af1ec59a65baba4cd446e020bc6a36cd9ce62a90ec8b0357d72c6da2b7b05401ede99401084209b31cec476fd55ca8dcf7874e2f8bccc054c49253bf5505cf16cf925ff268f536c81078d7f37e3a0e17d80f05e2fc3fe0588ad663477f33dcdff4a76eb6570778ebea5644cb1c3226cfdc648f2c3096bd567c3d0f3f0c519b5942f343e55e72643ddde23a8137be8437f7393fcc6f0ce3487066b161e97fb4bacfffff14d4616f005606ddc677f115365c7abc65a9da048f5a4cb86a98e9c5ef0cf9311ae9207acd087004adb12a99ade59a58739a4eebb7121b83661c11c8c0df312fe28a83d81ca17ff867ef3261892a6af1fa672742f3aee8399dce8b24a310b6514643575f05052a5d3e23d7df3c0c4d1a45f298b1759e4c3798fb702c267aff2520b3366428dc15c94b590ab11b9fe2b72ef198410ed1be0478f7162f78dea72501e6e95ecbefeed945540a72bdf0365aff5fdbe8fc97c6a684fd67687500bf532167a7850e0df76ee957604b0d5ea5d68fa959be84cc1bb054c804752306ac97459ceb96b8ac29440b9ef5c9954575339bf7a5d524af4f801117adc35feb38d2a431798288689aa5c0b5697285aa2c76e2c0cde2e1614c8d33837cd15a00a0771585cc569b9ef7a81a5dc3838847a7e0d0dd8aaceaedb44536e9f176c86d607e86b669ff7e65f00bc1798ee4c7880ea08ad5b8a0a8dd844c96060f2648fe12902019089a4b3e05976534018c0f0241917bb953242ca5cc5571fda78b2305bd5ed05a3f85458860a002253eb5803e97036d612c3187f2042133157c9e5a52e90223373bfc53b332924ef5eba0f68935f3ea66c09e8cd55aca067c4ac9c92a2938405432da7f4a42fc15263b4c7b09b11a2c5d76d537c14a203166208a5126445d3283a504724ec4005f29a31303abb099bba5c726e64f5b9d5f9f29c3360404cae385d5426c70560e343bf4b5d3f9f83a152c17873e010bec878a1b7c4ec749de3f254cabde922fe0618c012b07390f79f1e33083162e5cb52dd277ebbd1266e5183f980db6bfb9d30ce29b0e303f491eb60d8e1d8e5ba0e69251f0b23930df51640cfefff2db4a1cae3780a4fe93c7037a518e35ddac09bc23bf57013d5326dfdb0860a0cfa14f35de6669f45219389c798780413263bc0f4230f67080d29c0cf30b960836b2e69991ee5e50e4ca3fdfff8c61e3b3eaa8138daf9481d7f56feac5ae503711004c322320cd3c58440ff0e666349aecf98e1756937c5f0172fcb47afbd5c6e1db2e34ecfa23e99413a4e0e0bbaf44021a9b0863945ef6fce9985b7608dd430eeb8557a93d4cfa9cf99ed432c47634da70d766cc8e2c952519126c52eed975bf91f21c4d3134393d7d80c6936484e1785d1f63f54fb2d29c5d1ceb83c7b31c8c427fc6e98fea4a83f9d570f0b8682d26c6c86251c320650af4ff69202cc67558a501b35003c1de1ef6306f9935187bad5b18995faac32c3c2bd455132778f61c195044c1b4d12159babfdca864cb1608bf64907d2205f2dfbb641349347f6fa5a00d9976e1d6f6e8cdaf77cea640f53d6b5e7d3585f25333b0d8b94da7fa3bdb4a01ce7dfd7697cdb0f410efa2ffedda4ba4b3378e4a69de726d6e7b1959cc46eeea20d24a48214c448fdf27b92aa89265c036b4e35e24d95c7576056ff6e9c7c3b55bf2a0143d973ff58c1813b57bb8df68f45ba8089fe70b1171cf15d0f59be5f0a11c786f2edd485eee96b905292042cb39cce1b636c7bf86cd2ad245379f246170dcf485f55e8196a64851be98ee148af7a664c2b5d470a315e4d20d2cf6d35dfecc2651b525b84ddf45c1b6119affd37dc12007ed2665ba6ba79e19371ebb1e68443b5760e5c31f82531e0466993985217e605966240b4817b9536ced1a8c5f2d6eeb6a8e957a5858781c3e7f0283366f4869f069fec5551b285991ec7d44cddcdbeec8a0a47bc5bd888c61eed8fd4cb3d918ce30cdaa4b11152edb45b3d7d6a59afa1da8c53c0ea255f03e54a2373dee3cf3df5094ce27f2275795fd5ed5f3d2c1917cd41d83458ed24fbe531358cd7b5d2af585d5f6e0d98a5830d1fb0610032e45968d20ecc30d834de5a192131bcfb2555891d5ef57b16e22040e00380aceed5c7128158a214b9d22f66f4c1bd4ab65478111b1507b9ff8c54e030bd1cf024f58f5169cdde8e1068a0ce02c12b2a66d8ba0f4d5b8e2bbfa6fd9753a2096a0894ec88670b9467b9347c41f2bfe7917a20e90e4cc50f805a731e8206de1a49a0288f62a781c7103760feaa6e14d73965362f3f24cf62040786b1f40eec034ebdfa25ea88aa78dd4ecd123e7b44e9ac7f8a587060da8b9e21cd357b7932a7945cb97356f32eafbdaf6889a221190e1d2e5b892e233546f287136fd19756705784571bb5d0a20e9f866001b873a3c40ce4b8b57e2aff244165d1a1cf9a919acb2500eab1fc98b67995d2c8d4753626c79d9f6671f5fed2f3d39ad4259b9dcc1e779d55d155b7ade7791aa1b8169cb633d58760985cff25ec423a82c752e6567cc100fce34cffe444c7813a3e8d2a9306f50e66d82118dd42ffd2a5170e427c7830a24abefcc52aa82e5950e65e66b5f84fff8b37841bb336ff6d8c6b28a594cd3d6b3bf2ed80c39e94cd0d0cfd10e32b9031f660f0ab1b40c5b4bf63c541844edb0da16b6005340d65071453efe7ceaddff5b24728e66f9a2bdfdfb62681ca0f178af3b03892091fd7f95dcfde70fcb94cad64c879c7f259ff4a4dffcef8e70b8801007c8e68575d94d1830bd2fdeac22f1b01d133fb578cbf8b195ac590a781b7c558e563d4b0253aa483406259fe2ff1c6110769d0bd920643bc87e6ced102a7508db8ba50de86aeee2086afeab5ee038f246fa26d7d55c249933ebe6119d20b26cd8a726719e91ce6cd59306fac8c9a1fc8f5a88de9cfa3669e38b47bc7caeb122d6271774ea0d859f0e1835731d7c549b7730112a27655a1cc6b3c8cf1373afd9d507618c7dc7b366eeb786eaf9c1991f0183b35a461ebe9a44c595b9b1f21a37e1290e084302516e0703a90e8bff7d0653f2523bc3a37553589cc8e4db6ef0d337abbbdaddbe37962d2db0155c209fbd11fa1d7f1125bc66440c60b6076cc0ee35bf41d4807f4afaae19c0c215d5a4811ae05b200db2852aab2ea0336be0ca1e66ec2c228545b1631a7aca639cd4097a559ca55abcdc55a5b60f3655c1ffc321ef201524ac473f765475c9565e7d2751397dafbc4c6fd283b90899ee6e243eafa2eae73932f4920d1e0cc043de4f93d92bab3e2ad5fe91308b5ee2c6e5c09d97e5e82235742ed5a8df6105ad2fa68194765a2225188572d06e39b644908cbcddd7961d28462c62e0aa105b84afd71b243f57667bd3ed1bbe895caa112e7f82f095954ce73113f2ecc56ce6de2daa87fe2a223e9abda67e113cace50328ef105bc1c714f23cb0e94f2450a629dbda739429baacdb173b2ea26ddddf79ba41ea31073ad3b7aa99ee1efa2331c55749fe02e517ab51ad6bcea13be71381845b337dacb1c61206c9f7a3327ae0907022ba6573258fe3ff5676125bc2ddf17f4d38ff3d6448760033f13bf81ec5203906d79a5674772d585f0f73b00dc7ef6d5958252e903e7442e91376fcb0dbd83931680042d2ccf9b2591c0a56d7bf333c812a6d87f0db22c39d41658cbd7f3d0b218135c835add6b239bbabf15acca5fbf751c856eeafdfd0463cfd2324a57755d6879fc8c5c4755d7b93592cce647788823d6d47be5e750c189523c5cdf52f8deb2a5f1491419499f1b9db278d60faa612aff891ad22630c3976477486360ed7fa6944b4a0d7a86f0a110e6d29bcc213ca839f7ed7daac5d65676e445699d6353da9e633c04aade1658bf0f110d199d29436f7e42c49eab531027ce2ed9d1c1d746055947e550ba2ac50dc3b81d2ae7034e5c44fd6e5106a97e2f0f8c580b301f6eddd57084d2a817f6c2828a9d90cd8658246af7ec743fe2b37aac0e4548ac70a7580d6983cee51b84ae247e48d2630eca8c3682fc4fbcfe72fa5f60a7e9a24bf252ee39ce7586c958afe69e589c3d0e073757a3bc35f101217d5b5db52b71d9375464b8bdfa446a84a07c450d67ad3f17990da6f182c9b4f71a985396b2268ab946dcbde8214c1852d6b2177eb36d6fef97ae2c8eeaba376102b1d38b5931cf3477c34b28e39e3ee84877dd7c2501e15e3f77a465107ebb64727fb8e1070ed8bccb764b5cd654b158e7aa693693d49fa87ef36db499239cda0365457e174ca355aec9ec2fc2c074d2b098730162b714dd2eb703957e99cdb0bdd60f74e8c4fa2143bc7e7c1c9240ce6489e7e7bcb14e74246a88ea42fbb793a1a8f6b3cae11e7190b08c57264ff8d9036f59207d3e5b15e73cdf2cad1c7e64eccb9d1d6d299f1ee37d70ac92319a426a36c03f33ce4fd8fae322999b4945df15b517b12e7b3078caea4400867b93f16158bb09fd498e52eebfe7f8a2774b3bbb4ef0be093902da574fb4d40c484553e8d3e18fc13e10409eb5fb4a17fe4a03945bd83c46332203c0ab307a8a7e0c0ee052ae0131867362dcd76b1d721fa1c6234fa33419259524b2c5fa2089a6067fdde1a87bae79d5c97fdf63b958485559108d331dfa2ea5a5f91d954377589edc7707d5700c14a9749d502b4c3efe9c1a49eb432d6ca25e74cd98c5b2ce9575badff44ecd1451df0519a60dd4494485e59f825ad27397f03710328efc466c21fef559431870a78af339acef71118d4a3e0178485a5400c7ca0a79489c7934770c120f9607c64862cf4520adcf5c84dec32e1aed70e7923dabe63e4a188cbbb9f9a068e19c3f5113cd82ca14823ca1cff93fdfb16c5e66dffe7489e1be37aad5d4fcdb948c01ab8453c9dfa95a6d81d661fa1431e6c0ad963a8cdbb32fb345f8ffc02c230a1b05b23556ab2b54e38dcfe528dc23c0a32259a610d3168c3d26681be80ff5728b64d680384ae92f58289c76ed56f4707fa0328a517ff41c87df58bf39c073d7255c1d6f33f2544098051340d6a879f10fc8f802869f10313d8940a61063081403660ab8a0437805b79eff9e9e77723e468feb4449b9547f37e963da2839d38763513b7cee42589f5f2a7843e12818a5094c45fd35c9a754f6c6861cb24abd71699e4f1d5d64dd14fc8cab940ab268fe0ce9dc896ed4874ebe21013538dbd46c2be3f27211277a36723f96210cb0fc7a824f149a5a2431ca6e4c99f144c53ddbb3604aa84fdf599a69484590b727c5b76c7cc55cffaf989d8957a85596233c9dd77323a170e5857e2f0d923db2c49054e9bab4ff88fa00ad4814163dcaab246eaf4e6d2b3e018838b14dac0ac11b4c3efb298b7d34c2076a8ebf3d33516253749d830abe3a8109f5a33ef60cae5fe80ceeb1a53eb34f17c55543278994acf70d7f002d1407840d16a7d87552ffa3e893468ac7be58741bf90c7c227541e37250a290849fb7fac49efa955075ecf2ae334a467c433dc2ee1c0900dddfa73489bb80bfec3cc33ad5bb2a16fa568819f1c4c8a6a9b6ea6e7aa60833208806779611e93a161eabdf9d7b2dae789286f0423295af4db09bf482c156ed0527105a00dee18f91bde5fb6b152660490039c5c5ecbe77b4f35e5000607948452d92a5fa12d7ffe81ea19c9aaa5e2868d9ddc0b83a6929e3c566d1d1b33bdb5c0695d1f290c9ad3289f0641b280a4b9ae87f81eb84f591b3f052263df0781393d89d6cb10674043649355b8201ece8a2582d4d34959df1435963262b7568fb1001cf1b6b8179e3ae1756f447318ba85c690b9477cb288638623560ecf5d3530c34f0fdd4b0dd66aaf64eb904608db31552302ab051f1eb2fe6edcb85208a0edebdf45f600fe918c61146a3406e72b0a2cb204077146d8ac35c0b283f28a0f6d05eade8bc9e86c45fd0d2079fd8f16418366375ce6db5c23d250f82ab4534d0143ef40fd9417d72904f997d76d362bce8c073f11789f045f3b4f9d7a794fb35ab97d39135a993d65c55706870ed4d35d9a40124f7617b58c3d78ffd1769ad8f6cff2cb5c1c0ffc28e94217930da0767b20dfe37ef9935b388d7729314312019992ece174924265addecf8d3919e8d4b549a06ba873c24beab5c0063a479e4e3085cefc439d74b10f2a6d6d2d9195b175e861b1affd1785294c5ae905868cff9053523cd097f787e4e84a439454bdf02e9b64497ec87e072336d5bee2138cef6886aeb801542c951ca870393dfdad40777a12be540e4dc3732ccad939d18276a790c0d0edd803d4e338bb9c9d16038cd340c9d583801a97bd3242c52fe5e4a58c67bfada2555056be18c02509036d5de9d212a0acd62be19a505bacebb69d90b611e4fa835e8f886ae8ca2ad962cc548fde46145855b55991ecd3c671ffa722f3ebaad5050f6110f15f5c10ce8e9abb5ce338aba6dec1b0e83e84cd57a37572a2bcd7cc10587aa1f35b2da90372f59ffaaab96a38f1fd4fba2186b82d958fbdbf1dbdb6e2db47eb94e23b8be795e22a05d0e60ff13df16872980c18b843bc951a02616e0aa9697a77f10c52d49aac4f0c9ddd522a94b28a22320d7bbd8992e53caed6e0945e8911dba0d058343899841c36707d16654fb84ab1a320719328dd7804653b38fdd081f71300531d166681f509e3e9a5f0a31b82b31e9259cafc386c4f48539095be73a2e5d0c23fc9a799de92e231f2f5ce61a416fb5705ea2a7a598c34eaa9390e08d58e4223d23d1bb5481dbeea65ee597a8881091940c32d56fff09213edc487cb93a0767008c2f12b42318bd810c3d8776b121904cb04c032a72b55bdcdf76b2f93ad66163b2d454e655dd7c1595cee0b79b8b35fca32a57441e93dcc5f7674da3791f459c924d3b99ecee525c658301c49dd9c6f8d09d3b80f93aa32c7d1f2e74b1fa77e601de4daa577561f2436adf0468ed10fa5bba7655a1898b16a8f7347c00baf3dca7cedbbc4e8628614e804e0cfdbcc6004bb4c659c92a8dcd6cad299aa92736272f29e8dacc967d76ff5cbd4fbf30f414b5b003cba1f2aecd891d6b46810949e7c7c5634b31011d35d03d3181c724c74fd36d3dc4e4be5d6dd7815a863b449aceffd95b52df419d165e158eb2d250e25f00af8a6d0a5dbbabab3c0ed81377c7853d528d76711e916736649dd97436347472f237ddbb9960d1dcad7a5993b5632e08d95ef80ecdd4ef855f1d3784fb1ba7c85ce9c6e3792e3eea42cf10f996deca95e3e404c8106c88642bdeefbf9be8f9c4bb7903e5727211e92e4fcacf86085fe986ce536f9d4ed96af29d912d4bc2946f0c0f0ff0cd1410ca5e50f4a4764bb82f8bccfb89f7e734292f42caee0160db1078d3aa216f7fdec129b16b9d4fcb4ab75e31aa2f23805b10f55f68bf91c01d60553d658e3c1eba741ec785caf83e66ccf9cd728f8772f0f9d25f97419a5f82a84f8c92b337a4544b9f85e266583b922f3e0537c2f46273bdb3774cf85c7e8b0ca8a2b1572e9f0acb60661af86720c5938b8ee3e7ba5ae239d2f13323f7ef067101a5f0c994eee34aed5954d475f21beac5a5b18ea663b09eae0604dffdebcce74537fcf50649e6879fdd3ccdf0ddf24d62bc0a31e78b54fb59b0a9104589dfecfc126e7acf6131b1f3cfd82a9af76c777f15ce34ea13edc6e6779a3521b9f8e20b5b3bdde31c409cee2d99491ae8995a31c054b51e865aafb8a56803fd06bda91a3b67631dc2b2062c14abfe5facaff7c7731bcf4c9ca2046e9bfb0eaade2ee552c26503807dc3e6df19955a9f78e7f5781072c0e610a0761c5edae4642c9295bad6d86982e8661e579bbc9e7d4598c5fb4ea2daafbcbfd438009ce394868528cd4532934a7b2a6fa10da86c4a80ba8f3390a2301bd7a4f60970c1d01b5f9cb6156190134c720db50dd4ef47ebac9222b80699cd3009d232631a9ce1a6fcd4f664d4ec43fc4585d06baf0f71042e92e733b5d7e47f77df251c54b720dcbcf6892759a31fb949fda5e7cdcda8c8d1e437b29cc61c39d8383259e87108d40b28a194c0ed80c89256a658cfa6dda57a7582025fb1d9171ca6d692bd1d9271721ad8d0ea7135fa64d86c3dd805d1ceacf2179d5d7813fe70067a72c578e19c6292811b81cc13466687b71343defd685374a02329b8fe2f71aec1b330410a97544fd8a4f499b221e24bbc50b0ae4ec63da5e1e8589dac7b11001d6168849759707623c4eb8c3116474cf44ee21bac2eae3eddc4f80aa32b2114be368456fa03b4002160d259e37463409e2575ac5ce46c9030a46233e8986a151467c1c50609fdcd7bc697e25f8adcc4ca1e6dfb9432f5e1b0541dd374a99153b52b89e52eafb71d3b404a02c22e52498478bd2f4437a887fc56af1f6c58c67984ce02301abeb953d4eef9549331667260885a040cb98b16f13bae133256ddc5109beab00142facacb7bbfce4bc7af2d7022ebb0e4776a55a174c5326fb2500237be61af25201e324d3f01fe68b002ee4427f38f1221393237387f1ae3059148fab028dbcbde6a62eff7546ed565f2f31240313b6d32d1315cfdc26e3bee54ed400e94791445c147164fbbb0625103dacfe380ef9ed27b6521a530ffef10d981aaebbad8a0ddc5c2a3ec7efb562cf2338735c3b640425293d72066426a13fde3c9502a50c9d941abfef1743c486ef1ac77bd9ea42820e06b8743d567c5c492f84df1b489f05ba3175e790517ed5f79271683b0dab7741ff83d55cf380366d59720f69c208d4460ba1849bda41ad0127725754f4a443facd2a94e259bf335c928e9c483d74d4ac10890ff524bff57b1aebb3389c01ed0e09a3fcd95f1e2fa24478d49949a8791192233a940348b4d6e452628e94a23f598f0cc2afbecc3cfbb490f05673b177d4c8f5209ed04f5488132928eae2d31d19f0a8aa95f67e59558a2939bd3a4b4a6b23b0a364d0290b0e82d5ab869e035d49ee03c6ce7c60fcaa4239e9cfd6f16d1696d91dd44c77ce5611538268a185f262907a79caa05a0ede65923557b974d6dbd03cd8541fb30f9b4e5eced83b7aaf790785851580b1dd322a74a8c3e824faa4448d98cabad224d3ac4f5f32d62b9a51d3e54a8b555de3570ce201c72b3dbbf7845a779e63a2979792fc3a8bf07515463a615a9d23c0164fa749d8cb3988f313f13d6bbe5d4bac79ccf232788e63e447309022b70d0b62ef5d4eeab14ea78f0e76c4c1a5ccd8b0968ae36aef24650a4b4946a34256e81cc2ef1d421acef04189c51422c8fb766d1d112e5d52805c92bb45c9c28bdd40592add24b7c01fae2c7ba1203ae915e86702253544981a20bd6d74e8e95f9a9b9beabc45db54dee461bdd0bc8bcf8f723e6b72f0db604cc77644a54d1c32d74ab0dee507c7df25f817649d7949ed10b8be195eb2aaaf139eb6562d1652665f295f0ce4ca6f607a76a20c8b74665c495f5e089558722c7091bc82d1b9fe3e6a14f230ce925e607c5e5d37145738e585341f49b9e1c8c8732c15579f1e9101d656e50bb114d21eb1970fc67b41e16afc56ed7577bc96961a678f2ea888e63abdebaf665686adbc1ba13b5e44de10346d49b570c6522130d27acade32665603db23bacc7df7bd2891cce45f13b2d70f57f30d1728098bfab9ee3830fd4e9e3196f0f8274c80ac8e01fce905602ab1453a3c86552c620c24ee034ffa69cccc91cf7925e81fa458ea4235b7638b0bdb69b74a5fc99ef5c6e633b81bd628a1870706e2767598200ba649a7735aa667ba44c12d4112604b1324808734e015dfeeb0423235fb24b14fdc869e68b9152a868698f8d2c322ff6b826722f7e4cee501a45ce557aa8feca66aef0ec4f3c8bb6194a04f53d352af30452fde28491d55898e190d6a26a20ccaf77eaa63dbea8f13446c2fd582eae1c40d65a4c0ad91eb4f51c5c8745e76a46158662b720c294bc87b7b00f8499b84007706e5cd1e583678697beb8bf856299d0b9782b876221da1a8c6972328170ef9922c1b9e7fa23b059f7c7ec0d2d2466f0506ce22faaf715b55d51d47c9dee656bf21ae8d90e92d0b1f8ea793567cfd79ef7a664eac266ab3ff0576a8ad89a1177b68bf7bc06a5df8f743a8b47a2aee55355e7efcde0fc537114b2dc1f881753a80ef832ad5c5afebba00fa957c1869fbce8351cbc6170529ce484fdd4edf6a7916438e2c1bbfb810098913f9fc6807ac39e32fccd06e5013c1c77d7aab1bd7f911b8c4eaeb7263c77e145f1b1218348fdef4563b2dc886e6c46095e68a58cf97aa21f2193975cc1575738c7a796cfdfc7784a22f082eef54e62770870533926a6984fbbf6dd3e97ae0ff92fda428967637314010889ef6be49866add3999b254218f17bc42265e911cee9af8f458e67dc34f5b1c358ad09fbbed74f95446c4b8b9b0f3322426a22431106434da84743d95a22c371986a5096c1b3559e466959025fe7dcdb970d899ffc4fe4326381655a970d85b93988a2d070d1e8cfcad766dd84a9a2e48daed0f36a8cad5855a7c7e2d9deef9bbae9dd9a2b193afa3c0c8b54d4ae9d21da8a385d60e3fa6cd20234799042d27ccc8af589fc7cb0c7f917916cde1db16b2c870113f686fdce67ffe9cd4854c227cb533f492e089234eab59fb9962cfe08b72b7cddfbd5d381cec4a51d5c0e06fe794cd5e62d405b8867ca9cbb686d534a708d3a0485b2fe3538dc356119704a829b338f1c939e4eecd292cdd99e85b9a0808c79dd1878788e9d614fb40ac7d782c5750be12ccea845a8f8e34f6a897be0d890f7f90f262b37823119255aaa7c53728ce05c7ed1e557140c4c8f446d41b095d0ad865f26919f9ce34972a18f05c2a8040c21229f4fc69a0ebd4b9c8473fea675914cb7a95e38d5edea8c7006e57e7b2f2eea522e9e6139926a3bf0ffd0ee40d22592af68facf9df39848b2d0f6dbb9deb2109c86af2c0769f89d7ee9954321bd2802ca104aceaccfafbff5d49a5c69f395af0853a57c7666e26de6a9f0391a77b03f63a439905053113b198ead7dff4f9f8509e236d4d1ed3eacb59283512b83fd8620c3fdf8ae4b9f6d80d849207f998bfbdca18555e483610bb1083488d2ef8db1c8f20d54a269da2080d0dbaa1c4e6b012f894bbfe79452bdddf47238f43bbf8475696fb9a28ae9cf629dd58010a0ffe47e3f6b9138d072b186aaa24ba9a66441183285901892402973f70444fa335ff6e5b2dae2647915c346cd2809aae5e97b1e979b55ddcfa92e9508916a51816a038ddf420a761d89aadfd33b580b02153ec799a696e1288128506aabe9ccf06a145af2a8909067a7ea392738cf9485d1c801c8995ad9322f7905d41f80f377c3a5cda7d3cd2d8195b47fcb8bc0450d6fe1005fc91930c92f873ce9b50380cc99f0187334c01ade8e6b85fe208273e2190b7bca76de01f3b16f4a7f2f4064ce054bd5b91c4b2b974aa8e13cbc784262b291fa287cced13dc9cc48ec96005a13ef95e34b6f5597b7d796538ba4e3b41620fd42a688b806f61e4785ec8e64e84635eee99d1619c1d7b0361b140184fc50e5f6a7cbee8b5146bbff4063074082f77f5b12187b0803304d8a70447600f2f56d7bb2313b49d2f05b61c52262c814cf3d43eab595f9e1730b3eaa7490b05e3c286a964258fd63ca611ab39f6361aa7e118cecceb45aa64d95bbfea2f4f2ed9ad335b684e75ffde7bd3a20b119ea45203c7862916678b2e4a237b94b175e786142cccc813794a608de5158edfbfaea6543582e44d6a05dba945913236c7fc4a8f651dd152d679111ef37b6afe5a26c09e70d4d484cab73ca8a2f5e7931bff0a59a592c4ea9197bbf88f2cca591ec54585cbbba76a2ca947e9dd3ef11e4c2d740b09621d4e78a3b69123a21b6086bd23d647569ec76db6adbb6a4d156e878da676d0ed9e456772c50721fd76aecd1715e41d74e87e6545ea3c6316e5d0de817c25c3dad2a84ec1cbc9772924e3bca29c5f018702fb2f64f886ad8f8efa1e1296c6717e05647cb481aa3b71898b15f3d739739d1c8ff63d9e91a3a0257d1553879e57f52cfc94158ffbe7571ef558e8ae2a6e6b7171b910eb3c0628175a5c7a750f5bfa4df19b35a3080fd763a15364ae8b09630c577af768a7b227bc5cbb389ff38ad4f9dc473e97cc7f51ee416565e527b304415049a58e362f509313babbb1f6c10cf49206d636cfb89025e9a250df98957503d777f8518f16de19e72c4b5ed08c790cc1a2e682e23ba03969d40089dad9ddba108385512e186d3336147b373fcc355aece46023245ca4944664fbff713bc5e89520883e10d0885f3f8e73ccd68a2600ef4dd31bc35f98c84f4c290c2d74655d9add9f93bd22ab0a4cfa5c3de74547cc338c5e4692cec1065332ba429231eb0047d12393b6b69b0f7719da22cf80a971513cc09c968fd4d004fc93ebe247bcf1961a42d90c0e6b0185eb5c5a2470ea8abf31cac7b1fecbc0e8f4f7248ca1228bb0bf95081cc6ea883d744dfc986d91f859db6828c90b83da2051c7b01b9e81015262df0b5e8891e2f55468213840d062f51ac72974e8d6436f1b6537affa52e16a3472c156dabd5d93c20174346e53f493fcae08b988611cc862971b281fa18961dcc3b8b871928f04d6a7dccdaefe4901f8a90d83d747a709059e60256a244799f1c0366f74f93ad3ddfbc093d4218dfc627b1633b0cb2346198a1354218db0c73347248e25e1c6cb1b75822c15ea964239168f57b9164b9118be863880af9140d15034d2816de19a328e0f85088d57b4261f6590287954c43bf6e0fe28fc0572696071d1f1bf6f0ceb0899d3ac74fc434da7d8aec7888187ac6193f99fb4543e3b8b4ccae10699eb43a7259c8cb58883303bcd4d0c703309f44f9ec9e8328d51c449bcbbf031da758c6e1fd5b582c4e69827171b8052e6b72f5d6a5f4c96eb77d75fe0821124a4feb02a414027576adaad5b783bd22704a818fe6e04593106b182552ec928eb7547922721654f36357204f371c4a6d557a895aded69e0e3f65f0a6baddd7720e5bbebbc6ec7cdee1a0aa0bbf9fb09f84c84174328f18202f09cfc5d7837fff2bc4de2c7d15021ab128dac75bca05f6be3fcdcd747fe549b971032b6c52433d3e02f6e9f7c7de724eab4d372429fc873e2ba984b49f4300f728fac075eeae78495151e29618818a6750d410032167b9f438dc835e6a32eefd8add338f78a46c3185e79246247ed2d7e1c013fcbb54b352119c6ed7d26e285a92d0e8e28beaac1dabd50f91843af4a47da911c40ffe731b7daeca26471b5c339b780aa53cba90f035636fa54c164cd86f619bf4964e407da507a34fa8d68f853dbddcca9b7700e0ba3d5eda7fe82382fd1d4f2a9dcea6f67284ec0152e0b349e0b6ff4fa46358af045df703000dcd64817be31fe4ea7020d2da0f8cdac205645e585176cc8cb90cc568cd7dca647c4e4813ac24736ce93da8daf22a865270aa16e813b544cefedb7841f8314f9ab85f88fea1a5667db45c7cee7b6cfc8e83b5156098c5658de34224be019a501ec989c6adbf1fa4e647cd17876bcfd05587ee0e0fc3228095a1283738e6a4fa1b6d384fc84693c5ad2c13c9c6a76994c4ffb3de29ddc8d8c1b6ccb021449cd68d5986ac96da75a65095a03b8ccc618a41bf97dfe9f7d8ec009bf8ad7f3c31d686c8de613c6d120d4db105ba0597248dbe17c0ad2d48f0504c12b416fea49632f89ad14f121a68a7061cd6754d3f688d87ff6f1765cdcb340322f7683a3d006a4c3507c435a7648516ce622a8ae2ef8e65bb8d05f7a3f48396e5b5b6f55ba1af50b29709b57e1f4c27b9ddb703ea1d2e2f3e531dbf93c7aedd31e0e0f9a27088b2ef1730c8f6f095d26758fad32f684f3dd8f2d006acb746c95d569d293f6e262a3063d1f7978e7c768c900a3224d9e35423acf41d01c702be96db177883e8be454d7eb47481ab388eaf3a43274fd4f4dc1de8a359e12946e8f139695926bfd6d93344a0bf297042f4a623b6ea82908c860291d6d91d0f030cdc21291f78e9e47d3fd18bf839f8e1271ae289c25dcbadd9855dc362d196cfa6a6157089a2825c6cba647dfb547987aa25d689ddd41ccf6a8e09af966baac7bf44696f409eff32112c5f1f42c3fde71c122ad897edf65660f8bcb9500293a91cea3ab55b1eea5e544772d6fddb0dcd4727ea9973538dfea9f6bc45b184450e86b07e6a1a2c114bf164f5a7cca2656646834e771af793caa059ce9e739d4e8bdb61247019923ace00440ab7c232a36a5c758a3aa96449b09f8eb15c569f538d00e69bc811b3d01e5da935aa567c5fa0b2606c374a0362f2bb04fea09582a3e1afdba4e529a6c9413df06d60c3c83cedbe9c175dcb95087b6fa6013c2435b591f8289379a4251cd5086b2f6b2933c93ff424050fa5079bb49b77cd414d3a75cbcc955bd4ce3a308a0287f40bc1df8c2a66a854853e84994674fa04a62918d9101c4689b3a577751c28375cf20a0837016b7bff2432b78631ab2eedb148b325269a8cc75ea2ea8a93e0b10cb54871bd2b991ec0271926f257ac12e6c9bfbabd89b332ecd7f91ab65d68192eaf942353a4561d81e0b8c27aeb94df53a921ead36bafc42d37c9053b7c5a3dc9cd2533ba59e66843123fc868c2f6e174009e1accd97d0d69b036610c8869ed767df843b2dd9b239d26a359503334dc7b6bdae92a4befeaa587d3025f60336784f3f8e3480040d99324507c68c9a556277c1d52c66df79240d38e2742192a7bef87215f01f86eaf4e7a2523a8876d447772a08a92759e73d074e10a9c5c3fb3952028595974d93d5655fa5282fef6344daae7c35694021055828d2d2e142e57ac8d4f81e98c8ef7058b345b3147b96e980d13ab02e764382077943aa39794010c41651696697e21c6c18dfbc99f77af8b8a12204af3298a3b64a5420e45afccdc484641d2c827ad61a9b1494317717e917c523f87b08f429802be897db44c2a4eb357e231fcea5e5d802b39b52eafa0d1a47b4f942c495fdd60cde8b11af1509d795be079cf65ab9cee3197afae8630b524aceaf8c5c6c0792fb0a66f6d1a19b812e8b7d93bb0f5de409073c497e506e452b990509a99a63a8317c2dfb74ad7691bcb5feb15e1fa8dec62cfc63dcf2481c78954e9054fcefcd99ca2c93c15ac3c6331272576b40aa61718190aa63f113b6e37f43f8157c2a88b02d6304527e2557002334f6a4784d8b0181869b09eca4cb9e7c7b0d0e48ff20060790e0525da2be6290e5bf28d63137d3cd71248d7861f67f4c9b640368454ef9ac1034e3f9e3564b3964dd5fac74c2ee55b1d1a67937f6da8bb7ec656e8af54d00d948ff13fecb021ff065650a0dc3d51ce36c6cde0440c33f542c91543a029629855fbf2a76310c9142c3a57de9ef05d999274267d91fe9e78012cb9904882bc291798ac89a260c9d163874f91d3a8b62ed8be36455dba1711352cb47fbbcd891ae6959de9190f63db9e82c79f2a7077eb5375d19857d4a6a4f4a367821dcece644638684815ac03071eef102eb880be1668a06a362823a36b336b8df3bbf98c990362293fadca2e5d891fc054151d5768d4a9ac4c33678b2b31c0adb091bc29c0adce5b2cedeec5c60fb1612b415fa5c030a3db23c1ed61a5deeb93025d3a8a2d81159286290d8da590ec346a3ac3b4ff0046c801aecfd7fc0ca3c33dfd3857f2fde2e71e26bc7cd4dc8846bc98dc6770c47a1358bb49bb267901a3358a074bad076d3c24a442bedd429bfce42aa92bcb09a2e1eab8c00788768fbc1315ef1c2884a8985091d31e9498964c734fed17df3eac66dad374350d42a2952f1223ca1d6522badb1a03d305db51e1372640053050cea0c4ec6705f9c32a3a8688fed3e22ffba05cdb99ed33cf29a6c10df4b05bea58d7c9f842ad1fb55ea919794fe0ac52c469277828d4d1612a51d4004312cbb79742bec3fa9bd99aab097f252e2e6abcdbfe14cb7f3291420b548cb4b305e07970d49f964720cd4ccafba8c829ca6e618bfcfd74e322d987e6a23b3ccff0387db2d7729ea9765b029782fa6a47cf0e5c719e95fdf0590676768ffdd732681077ef23211412d81ba53ae9726762f26b279604805ddec6e2c89009e7523676db832bfa0784022e7329dfc2acf887e3838eacc299fe70cf8c96cd9f1fae17b61485d101db6f70c2d2dd49730d1d5e54a46e3a05648cd8ae44a18e02c0bb394c34b5a3b51d4fbe87d0f870c9ec2697b7e13cf125c7a9b37f67147425e87b9d5f22ebaae0180ee309468036a992313f8fa53e65212da6c4164fcf5c0baaf4a7e1ac799bc87655486ed8fb8c2fc25a8e03fc7d592617650e173cd2eee9670cf65fd22d4bb32b4bd321aa799572235e3e94bf6f16c3db65b26780062d6800cb70499aee42f1008bc0dc2a373f05e29d24b18eaf5ea4680288c164e3250c18cdddd645df46087eb221d819c3373cc745dc60a16403aeb9030e42e991289d37a2cd1f99916fd5ac55ee2557d0f8890a2eb42462bc679a7f019679334a821d4654be9bf20e3eb3fa4928520ff79592e59c2316931f8b1be529103268e02fbea2677bb5ba8d52a2c559e15c5e925c5cc67ad46d5dce0b90b26ef0d5257630062720112e71dd72c1989d41d7d0b3a08f2b521836d41147713963b09214dbea71329f3a104f667235758ec9474f2e760c3bc3fbe55622869fabd25b86fca394646ea8fc21ac279c63289e0ab1a6725f68a28c4f40513cb0f45f7dd0b3489a0332a4d3fc3457cb3214f724df1c820b64baad17b642b6171e2e9eed60294a5094f3eb4d2d1ae2b7bc28581495fa5298f8414d48b2c4dec63faf79c1c09cd2657cd815967349e2fac625f44c45395a8700261671930bdcfce522e97f32634b1ceb341223d3b795c74e1d8aadc938ec894b4b43b8e1a1fa5429062e4933e767b9d019dea75b8e5e6f2750e67c6b358ec7b17b82a2c80ff6e715a58e9ab0ec13694c344888a17e994c2baa0ab17f2a032017011dced7edb1ce09ff8247a23cb37f6871ca02a68eaae38c5bf750ce86798123a0260e76748efc7554f126bf6c248d66d333ba34550043aee8e42e7f4fb035d524498a12b46921f9773bf27f10753de0e0a46e7974b10e06b828197a7f567b92ca2ff25164bd703aba6c7dfb6c708523129865bef5cc774711551550b88f6ac3b9f534c413b83e22092d1990a53dfaf585da23b76bc8fc3a28213fe56ca507c9c96bc4fb9967907d54399e38bda6e6bcf9d0d11065647a0369bf8d3028b32f0a1aa17325f075da0fb8edba5ee3e792698b5867954f9dfc66dcd2d5ba7b2c2056306273ff3ca3d21794f126c4a30a464f8702722fac8a4bcbf944965f76815098b3be15ad4416e92db4af3cc745c2e9fc781d8e68188f996f39a51a2b4739cb4790d12eb5b7a61521aab866b9eef7b01e59e2c96cce030ac4fb20b69edcbab38b15b37f3c2b0628709b3cf26dfc083592d49f6eca6927001cb8f98c1a7515214e281c83d2913147aae8149f173f99327195221c23c3433873755d71343f16772551f505b6082b5baef1918adb994e61bc042e6b0918dd50520ef636293c260b49af69ccea7dc1841c40bbc772322c49ac6d95f4b3e436545b21fd2d46ab7c7e2d59adf775bdc8cc1af1815bf3e8b6f3c2ff8b8dbb03198f98796b52a98ddac6c67fc9b8c925099e4c662e42ebcc985b03df489713c6089f1b0308a2c439b3e7308ddec9236088df646a89eabae4bd15f3951f7613b931b26fd476963c22f93cf3cf804e9bef6d6cfe3f31d2bf7850740131dfd6d71c67ee61757f33da26ee439d50b278627ca7b752ad1a2c7ba55e63e44b82cd143798a7a9d7fa6d92f21ae0f7f1faa70fb5f3dcd346412d038fd25d2648d4e123a92699c2156e190b25c1b13b29326ae941703d728b28ce3cca1017f415ec324e6ec6b6583f38b5a301b3dba08f2c9ab38a2cb1b2e3457f8ceb89d19c0127ae7df322da2f8b8c704f22d302df19702efce5e820b6823b59eab2b7a7fe6d85f71f81f5e0c2ca97ee8d11f21f331a0449e76ee5ef260ce2946032564fcdd94f21dc889c96c9f557059e15f518c897b4f7e7a1bfafbb67e325bc56e8394730e488979e0de62c08f0e34402fdb877cf917eeea4e1b017127e12c9b4937618f7041b793f80e6ef599e95912901693bfe994e5ee77c95a180bd0d048c8a688bb3987c35a93884f359535c52c016d25e2612f347b23c9b99e5eed2e791ecd06aa86509d9fe53d25eaa4c86e4616d6df392f0e33deb92cc4fd57704c20ad75553dec15a1cbca9f78287e4dbc82fe965a3e725e4173cbf22e526f146e09e05bf6e0fc5d7e466a8fedf77a31cb39ae4b6628a7137474bc7f7c1898352ea45514171272446f61a39702e32306c9f64fe070e61e5fa3c3d001ce3b4a3d417115f2c2e39bb0066aac800a27b07b1c52e122230ee94b038ee314056b36a8cbfdc6092822fc16a482b82a374dc266b783f819f9f7f3d8a8200c86b0ae669ccc48dd41f692e4fe2506b5c10127a840b4984bf779530b567a8fe43872e5c078e13845fccdff81dd19cae301b9e3fcaf705adb65c61d75cb5e1b0f7ff1e092cb57ba378ff3f185135adaea3b1005dbb651e9d39a40ea39065af1e165302368da5333d892b424a0c16e632534ae4944705323e2d3b8c4ae53f8f398b43f9fb41237118df96780cf411fbd11b6628f70edf11d5f5529bc333d489383a23af02663b22e8f1bca348e7cbd8d2cffe0cfe8c00c74457b16a5dc06327c5f9ae432333fbe3771c9a07836979edba89aec86499449b4e17778552b66917c8edee293ba372f58fac4835079add522759ec982931e93ec338e94cdf3822c27d00eb25915de49fd443c92b7df5e5c3fef39797169c431c2183e7ce8fe7d4272c915740a5e1e5f8189377079230b0301d4f972692902fab3514afeec64ef93f20d2bd67b1cc52e61b8c7de7b6bbf855c26245a6958c17cd26416e876d90ace5747d4e17ee1233dfa109250cc265ca06a1d9d3a3909e37057592b3df5fc84ea6912344c91907aa208b8955e3a4d8132bea18cb6cd169796255e0b3446a1e5b8afe790a93f3aecd0a8f5baffa38112c89e5f0d40aac73b8bcc8fa3313e32ea21594720942761603306ed977afe7b6fcc0572611a28b8a7a531e172407d07f440ec15a88ec7925f46f943912fc2f1cd684fff3cb907b79780aea62e0361e3d41761e4815e75b85e49f2ac7f064778b5822b05dc6cb400199bfb62475b2e7c7ad0e41d304b3644fafef8254e1c6cdb738ba441bc9254d7d3736976d7339e1f549460025a0be3bd24d8c46dca9754196dee02c318bb861f3ac8eeb9f069bea0de62ca83b8dbff1751b36cb7d169373999f2e4075090736f77692c7068d49c5bbc46882c2a8ad9b13cedb8cea729bc130601121b78a84b20ae53d07a6c1a7db23296909e0227fb74ed841dd4d2374697430c6c683f37259070eb324c9d8a087191b16471eb810a4583a74c291fd8deaa78cd650a8b3b11853d0d4d8ce4ae39135e95f18941bca01dbdb1fe1377115ea36271d8d61d43dc10694bbe877a5cba69eb024cbafb24303d769fd1746024ec47539eaba107cb2c3c1edb736e89bb179c3800e8565fb9560b571c5b6a7070a17dc534af11315763161b86ca9c8d0e5c82ce2e6529e43747c559082628300b1e891a10ed5a0e8b7d19d93b5d5022e9e076b41380d4eb80e5d2a8b465d9b04bed3a2305a8ccf715c68abdb0035a6213493493e162ea5d61a1fd8cadd1f382fa9eb5567dc840636f32b2da014478f63ad8757ef8fef637c4e478a9ba10e657942263e7c3280d91285c2f2c797ac3e852290ab3fa91ba99885adf4bc56588b9a1a192682388069bbe2447352a280c9a28aba1d89c609b4a816aa5b27b736ef8ce1400c6e6c23acc851c990556538586c3a7e72401ef03d93fd1f6a73e39b2643019630b46422d12cab933af5359c9ac834a059819ba57f53c77017cd2c0659bab48c2f9b8bc5142a1f4cc0e88d86e4f8bbdc28d45f58666e09559a59b2be4265a76d21b3a4d1b9f2b8c95963139a9de0418bba8f6d7207e7b9926cdcfccc327e75046a7eeeb00d1b7278151ac9a85e044cd777df43dccbd393087c18f8cbf56e2e5e9c04908c97366e72d5e6c4d4a9963aac7d7ee2e2056a438fc83148d71c19b36e4c922e3e4a23626b5fa59e907cd32d6fed9a90c009c4afb663a00e43536bd83897575c924e2b771e1c91d956f0d7f2cacc5c97b60b633c7e20451bbfe6f80526042fb1bd8ee3f9a10cfa12de0fbf0c12597a8d5b5e869494269b962906433c8218b72118ca69ba9717adbf211b61c4a9b3aef721e0778e7d227f1cbc33f9e5bf32f019a839a9867114cd941989b4b93231000e587b10d8a469c955956e20d35defa7ba5c55c365723d9d3ecc0bfef63c0a116cad866f6c1ffaa69a4c63f85478ee6b70152b731ebe99945c3dd2c72703cdf84408a0827878466aefe68bea5209c9af79846a2c16dbb2d25e465c02b4d593056357d418f2098de07c443ca891b2a4ea7fd9315aed57e3cd791891ed980cccc03e035494f2e39684ef71a7488bd1673a95d1bad077c1c9e0814f54c3f6537428d12740d67cab7c7e87107c29bf1882669f280560839498c1604a0a1e947a524555194abe6f69c5d588e95a6275c2b5df75e1023c52906e08302713560e0e70403fd9cbf61b4db57c4bf476871614fc8954d289cb448389c33ab6c533f4a6d801ba92ac2e60c7109e3231bcf7df102ad3e0183582ff326beb3566250f43349cfedd44df28d91ca643d19e9cf2a934e1ec43fb1a26e1d7cf8df7f24b9d53a96f66fd3731d5746ba581d03fd3d12d5e99913fa7bb4b4e1b92292f1cfcc3c6b46418aaf0e416be7c1615052c2831f28b5e565560f2febfecfcf1e9e2fe72c8f23e14b68fd3e2b7d0b39e0140b8ca9de32ccd079dfa4ab6e3ab1beefc9224202765d6f3abf6eaf35e7ae3f3b6bdd9e8246df818575ffbdf0e1ae38fbf4c0658d146e7c72f5c5db337a1db38c57cfac37f2c4a06a262ff61e511663ce5232bd4dc9886e8001efa758b51d9472a8ab04533596598c3c472864c3a4988b2ada5eac01e61bd143a6787326b2ba6b3b52b8aaffb0f71a7c36e0c77f4959fbe9b8a617d8d045cc5b530b478ad7f9a7098a26c60201881b5f8b2ff36740c8a1b35136a778f27bee3307cf8f8d9720eaa0fdf180cc9b419047d88c221877e0c6805957547d15fe6e18c46e51a767b2ccf578524b91e47c7547302e72f63eab4dc7db664e83163dd791cda0a08a8a2ebc8132d6a8179caa2d218e127a006053a3c740d9f61fc8945e8a41023ed1f7399a213041a6ae3f18fc51912bc9ad160d1b597d9f7045cb6ca5d2c05a4acc641fea376935d3c18f9b94e463524fee286edfcef1e4724d9acbe5a53742f55cc40c93d233f3dc4da3eceb1f750d6f8dce179b12694c3132bcc925ec7c8b5c94e3ceaa5979e8a43f51cd4ae5caf2f3eefdd59598b6993804f8d84a684fb9ac287a50deb2aa431818685b0fe6992c14f6ba2b14c8b0987a28fa7273a816b7fc9d6c1c752368e34f140ec01bf0cae58d428b629673f26a286715a11870ae086adc28631c2e56733affaae4c4c3681d1e8970eee97ba9027d6c29c4ed37ea5854bac1787199232d868120fe4941f48cbd54c785f643f92f9c07cad6bca173cf229a6966a91492fc9eedf36545c65601dbae0e8b6aee994cd6daa02342db5bf361d30bba8c029d6e1fb45df4f8b5c2241355064d89fe85abf213a07e8fc3eb01582a4e6c414f16112e7ec3fd8f89407f84ee9e2849b524d6ecd8a1627d2b2843b0d3f53c16f9364d971d204d604b4798853b0b491f63c7319f3e5c89687b86fd6e9ac7bef319d85959d91e4b50e06f8e7115d1c1a5f7981c00874f48b792876cfc1147a65ca4104186ce22e0bb2a2452660ddfe98bda1daf24d488f8cc96efe3a5e9c0a089523cd55cf972afeeb87f234cb2d16ef69bd4ee14b5c54df68ebefc4a68c8a2f42015ac75229e3cba297afc354f3868d25885058c53fab0680270ce5eed853882f9039ac1df03e317a862a7935b3d3dba360f0878b86ff361925b233aa63ac8428b906a4694999f094fbf0c2a8d61c3230e57fe0ba7b6bd263f4523de33eb77405258e9bc126213668e77dcadcfdcf8df7cf7d595a9d126f0492ebb4796e5d0969b37fd8210ec61adaa7e3dce5edc20917d29db33443f42e1bed323c3ab488491d9e1bf97586751ea32de33d6862af5210cd71cb9847c02a45a10c565f225faed3ed692df8958c3ef1b9c2b31d6b6fccb11d7fa0078b9ab746e9bcf861dc52cef7f21a5f36b43e0e0f34a448b62f0b4879a7534e7e3a81cec7a123677e9c85b837d51d7256be4ceb0122787a543f98323df09d37f0d07323e092c1d0580be6bf3985f4418f15a8c6dd74eae0013efea3c8be26a31c83c7ba3add6a3150797341cc766715ac252096641b860c38001a593bc4dee532552cdfdbafe0882b2adac2fd775b35417a5d2b39a2c45b81ad967fd04069f6bb0bc7af5ed17d65219c802c392573757f2da537b8ac24180829b2a38b0fbd73de4c7d2ca63d1b1da8e132cbbb054dc21b1db65aed6a4a9a046b27575b03a9469261b88330345b6b99326e7d2ee2d661f7c4f7ced00fa4c5f4a3fca6109792bb9ceae1f8ecb470b08d911a2916e822aff9d02a53e55c22479d78a9e51244fbc44420731da8d5e1c2c8a0b87793bdf49bbc79dbbb774e21263e6578dd52ea3a9c2587f4dc39802b1fa33697d8f7d63d37a86861d135a34ab9ba9b2b2e5ff9cb30c35ed867e75f95f1625a01050f9dd6219574b593e744d357ed48c2edaf45c623f70039f6186dd1b0146623a01374e2e27df774f865444e23025cfae1107a563640c1fb6b2021b34adc34047ce43238d0335467bb5d0e255ffebad7c1dc42f57439fc4447163f39f55f4e8204008be5007f8cc4c103b9f78263028cf02439e20b1b4ca3b6027c2843cc3f29645f9d5e96aaf58449c9a505f58b26c367f27b6ca7b44fb7216c6a938e5f869b58edcdefcd3b5ffddc13e2413673c0a8894486d1152447f68a092c8bd8763d372f64e3f1d82c13ae3300cebf067fcd59758aaf470f549251bde7c784121e1e7bf9570fd3dbf8196f07440a7fcd16e75a76987ebf9c359638ac2a33150780d6364da25afe5d5a0165038c6a6479e2e74a07183264638e793a275ce1a93f48c71de1d1530c760c719a7e25b0b530154f3e895819de61eb1dc26bfaad2f4c2ad55616cdb0f27bcd8b9a78fe199e66d855ca4c0ea070c455c1cfd5d2a6b92b517665bb3b1fa91204884960b68b04cf8462015961e1fa5f2b1f61b8967a18380ad04357aa2d74802c4995d9ab8ab2ce0d2bf28a406c06433a12e2ccc8d04266e80f5e4aee2b8d719f6a4c4e857bf012725976947e4289138482fd4b619bd566f33cc3189b4dbeec9a81d35217496f7d2dcf621476383ded331d74b34a048d55e4785d999e39a1215ae4a04d7a8b25b48335b51dc32f5ffa1afb0a3b5b23d36fe1f8e6d0c16aa7c1bf13d69b03714e357ad96f6e9bedebaa3c0dbf6a8270e93674cc8171a10e0048c4fe97eb56ce49c0114615bcd4dc1aca4e2e117e64d35cbf3a5e560fb4f8c7364a7f265ba1a17df49316f6373bbe2b4b4ea9ef02ff94214d548780a3c5cb0ee661d7f55673aa06e66ed1f39b5c2973cdcf0366f66981617c94e63403a29390496d8b78861a43396ea816a2c65773712285fc7d703cc3fe826d008f68ebf6373fa8a69254cb22d763077482e1e58dc7fec4e51678bdabc2368be0a5dc01c1065ec7c352e9233aaa2087de8ae15a495014c63f2b920175a0392b6568b779f6df470c07407d0983fbfe45595eba48dfee374eea3c219f9c12def63149c57ad9520d2798d282f42348829f200c87dad405badd1821aa447b4ad00eec08f97b74bfcb7f6e13b3e7159eb372220809c95df1cb54d2029977969bf8955f8ea16bc6e69a760f3e00bbbb123f406a6c5e5d260fee70fde6596382c4eee6de9e73f807c27899491f3ecc9994c82a8ba9afe154f057da3ffbf71e5e7d648453b31800002960821473f25f144f495b3dea8fd47b9adf7be9cbd0973409210a921d9a517260e69e87b1192ab927b844500572addb551aaf02c7d18c4c533c6f61ddb2948b85e2ec1ef1f4f9a08e28f3ae282c7595f9c18f01e8063e46cbf9bef30c5ce6746bf269b1c9748fdd6075683a05d7ad9b6e61b7c9bab81e67bab2aa6a90099417a95877192004442a18df11d77bd5b58f2201f70c10d4a7db35ec3e72d8601b90417dd4b07a388d28b1484b0d99c37a32f9452499d7255a598370e8d4b31d39e93380347d09c2c00a8ea7d58af48dd643f676d50d33af0e41ce89b7baf7d5b43c85e2c20d58d41c4d7b1b57ead77b08e8bb041e1fef5b609f453dac2d40f6879af003b641ddec0a801a9b15a8e3d418ea60e336e72f46f9075155bd60e59d54a7f2acc24ced3ace745dc0c185e10470894e4d3a41a32e402a92dbb2bbe974cba40649a6de718eadf44a6f6d086da6cea948ccd9bc43d1752bb78cf0268a101270c4f673f0f4d98a5e4c9aad055eba0295966552c56c6e525373a006309a5f035ae669950e71a6f8cdd2ca733b90f70d671873ffbaf3c7dd5ccc3e9a6c0c4da543576ffeaa345622a171867285ec675a49599f64852535bdf9840d18cce996256e71a1199030af2598fcbee7a148b36ddbae314d4b5e8abf9493dcb0b99409ffb506777c4221ad5400cd8020d17f8a866765a8dfee7d169f6b1234a02a4f4b8a02d4a7ab09c6fd4cd1b0e303aae290b3a0ca6904f6fbb8dedac5113ce2fbe0f643bb5e69b5e5a73549a81f270ada9e0338ec59a98e88a5bd83aa0db172f7cc4d3f8de32e0e6c80feb6756a21d8a95a09598c30153242954dcb55f2527c69884a8df7c3e7d4d96f644711fa8a4160e7a30f41ab9cb7d0553a52eeaf94dc3357592274e9bab5ad0bb85a2fec583c3009ec56c561a1e87580c9528e99c91ba6936687dfdfbb3e7a0bc37084fdebc0b0c6ad5751ea952f4a3b8f574ee3714616a86b5c74b640b081e81246399e6bf6f9484fe862e5972e78b413271dc7dc88bc4d1f188e4fe7a86a9f80845e9873998be6b3939d2e47a8b4f9eac9588b9b66e5298356b005058fa78059801c842155b9ba401bc198a17bc85bcdf3ad11ca580bb1f951ed60e60a3b6e77eba1291e54a3161a99248e503bb260e0e1f4db5bae59a4128e8c2c09154d7b28cd15607c8f642294c2921c28ba79c5544ea16972618e87cee4cc925ebac81d96a39375f9d98935d356c2645145243fccaa0dc9f290d5ba88c2911c3509c480d2d5f5027e6058472e83518fed71da523112950c1b7ecaf658b19011e10b197ca5f9c494e76ea036cbd8b1d58493e8f2e8716aece96b43c79b10145505ecdca863ab07a9810419b5f9271f433753da7c6cb315c78e49dd8d7e5e0237662db86c6d9526ac9f149eba2260e2d6ad18252ee5886aa6a62fe82806b0345ac71c1efe0cca98c7e7b3f635db197d6f401e402444005c5afa3da59a1e0bb593b77d8b466aac3cd07ebdff7ac3c7caa434c5f65c1f028497c1f5a2de8a55a249e40071a0a0b7b80cea0f99bb2752d02cfcbc7d733cd41e8e7911a431c37b4f3f2f95b2ebb0b60c5f78365af3b8e8f97ac64cbed9522c9516cd63fd3e77c966280203965efe38ecc696b9e627f3601298698f30673d5f31d4d47491b5f6bef04442721325dd6d24a2f7ff4a9a220dfd71f06dc18ee5bec83f55ae4a4d7b6e0bd27b2d88f882048eec5c3ebd60475ee947ddb0ae3e0b415e7f796314790b9c34edf5b879cfc5f869fbcdc2606fa475a931966c8b269f765359b57c954defca94cd8c6a9c606dd99c9ea357f10be16e6a4cfd44255c593894c7e698189c5b690f883894360213320456aadfe55ed9ebc4a51c9a90810b27c46ffa7afce5fc2139925cc2c13443312a2fc8e8f245238a4805ff1958c8034b2ca9c9db95fbc4a221b4cd5ca0faf07287a6aa5e7e2664024041ac06e842bb6d21935af6258c4be19c8ade55d34dba025c0e25bdd810141063ff4cda904f61fb15714c8cf5755919d05666f282c0eff5ebeaa0fe1c672c01e3c25b9e384c1452609cd27554b2d2eda3638f30afb8577811b7a8676730c1a4e0ffd82c06b91c0fb61949b073d64eac7a52883ff1f154cc1ffc3a1f587bcea239270707cb23179fefc1ca6f4bb387acf8e7218a747062423b20c022b8a3264758f11135fac99e2e680528f7c74e9d4ad24f4f538426e55809becb803cc23d5c984e347c10baea3c4a6c64c33794f61e6f4201e083bc98b08863e6869a372e3f699625aac3afee29506a5d11c38afe5400278d65c1a4de2eaa967fc7ff79cd6c074f6fd137ca732c40f3f20dde0f08b43ff9519a5f53f394a35be69caba464969924b3bc6c8e5e3dd05a98280434468d2d8911ab648d1e0a2a738a836e323536f29af97dfadb83aa85c76ca5c5cb9cb3059326e2d3bb00710ef457b5d5fa69288859c40ce1be76deaac79f3b894954cfbdf477361cf5a23b20f7ac82bec4f1375dd447b83463633c9e6cb42954f3761700d2cb0e28efb72ab480f981910f2c2f8e494489ba0c055024b71c6de74f56a10c0d31253bdf8d3b3812c45b9d223d43fc843bfda6e359a162763c301213f16999219ccf9d4ee453efbef1405355845bd8a8e9de5fe0b5975724e882fc4e20d6b810ff09b35c1e2383010066221d525210c1c9a02ea9674b87d74092bdda02584fe6e51e5c4107e4c2c7abeef894afa3e345c993b3e6b273dd98fbafcb95f15b32604860fc3994b661b697d76ed614bede3825dc9da3a7ee3b12535ae50e78d0bb97d1ec44f61f29a00d088de37b55612314f90435b28db618f898a53c9ca46fff249de4430f19c692a33186416dc640e314716e59bbe9c6a08ce88aad1c65fe36d0951b7d3f924e1325cf052acc725c525581005e6f454bab4b69d939656a9e17a2e5d9ebf5049fe9b7bc5eea846fae45f534b039bfb24a4ca0136ee173792d49fb0569ad3bb0a656c4f05a54793c0bdd0d22ac3edeec8bf397ad5235b1bae7d14ad22e962a78661e4ea963abe382a1bc7106f3f519f2f5c09ccbd2bfe9d40cc60ea134c323e50e0d891071ab5d2c4a114e33ce699d7a26c5ce961ff82633d3b726d13237441e117f703d7fc255c580963f43b4b3bb6cba12db1524e9aecf323f150dc45d764bd742de2be1406f28027e4883b0b3fdac57bd201d1bf08b57fcbf90784a69164db976cfe26322cb6cfd99ebf09634f264e510dfc439932eec5854b05b93f7ff39f63d281035e7d0c3d74dc87c89cfc75d61d7e900b4b42a282e4a33e53a9a4e0d1414b9d9079747521e7ebe5382f8f1f74baca11bb0cc7bb0a618a384c92feabc292a484606598868732c93c160e2cac3fd5087717b9024554d035837018dbe5840e55826c7b6ee22bf277fb4ff7085a75b58ad785fdb178bd05d8efaff733a4d435793edaa7ec9d8333f92601e3c3bd7d99739ef9651f9eb93d009b90e2879c72f88f8ab27542f857e0e7c3ae9e8f8b502aca6ee5a776ef7c4d3f7360825c53cd66254d2aea62023ad68a6507b590bbd503173a07de2876980c3b35125e85c35b860ebf859c74b817ed26844f2cb88eda64fde1633eb3810b74415a3f0b2665fbea640909c1565f0f7b9316cc7c9287516f3d798d2a080251f8d6e864453083dde9250a94285a6765b103269c57cbb1bb36a06b5973006e5ffe1f94448c6ead0fe38a8ff3114defd02ad75510f9c652db096dd35f1ddd1d269b93aeb289e37a0332128ce326967ad058985d9400ceba3062634669cd2dda7dce2dc59b2f50d4a3685b6035f2b4d6b3082b50cdad0ac24ef1a25323d538d046c22b4f3a9183920c17aff66cf019c4cf5ad6b5b1870f8595e0ec4aae600dc604c42155811e5df77cb775bfa0bdbc3909f7b39a25d7b04eed5736fd4523148e9f35054507af1d8fd4eff92f531c2f20e4c656f5541d888856c8eb7f26eb5061fa5434a9b2d0f957001e8ca72512e323fd0cc559836dd5f6eac050f0414579565b9fc2277634469f29eff8404b542add1e54f9a1f91697b402ecf27818d244d375c848bac9e1a534613227cdf500947c7b6c46d065fe61a2fe50c1fd072f5397328b9e2031001566ad665764ec7c3fc4094c8152ac2c4fe2f7cf20c6e395358136a2aa08fd46f0a370f7f92b418012fbbe76a5aa4bac4eeda9bcea3e9582efaa56302a83a47294a686fd79f6d2a137a6bc554fe2715fc4ae95276161ae8f336697c0147a03798f405fe82de034f6b74d59fdafe8dffd5667b734a87ecbd7835a6f9aebd301e58f4c3bccae38f18e15fa4b54f5090409a4249f6adbbba1308409eadab8f30ee599928f5dba651734ec491a0501d32c19ae9312c9971ed4e9476c1e2be807d8c1b44fb0459fcfad7c6bf3517a2b60e6a37627135101dca3046113db6988faa5fda532dc506b05b92d569cdec02a06065e0746fd7ce56f991bbe8d321cd2f9c6f57f11ec66dfd270ebdcfc87a29dd80b5fb5ca5cd5c3af9d29c3e2ede920701e65a0950b39bfc4c62b245da0e7d30bcdeb1264948118b37f5ee2473c4c08605aa0ffe55a2d313c4dde166f512d75c60529150c931ecfeb702756b1bc9c6504b8a94fccf759d6f4349e9b486aa5b12585e6dac224c20e026ea50c225a56eed77ee9104d79fcc493afa3cb4f33b98916f0e9c440e4cd71b6f644fdad7d7f9724ae8ade884c6d5860983c284938f8e7c0ddba9cafb74cdc465c9144974070a00a5d07b851fb378b2c47e043c65868ee2f4c4af9f1a342f50c92b44191156985335cc80cc2e40b6ed0d93f0349cc148b4f1d25496d551b7249457e76fec771a41f22fc85c51d8d9f48a1443a25fc03137ba92aa432c55c7d181298eb3010156427f0e59a48814189d4206f7d333a47dfdfeaca6f5a832e8965d5e83c1358af27fbb3cff2e4a0a5de9f5bfc020f5010a3f0f8219a05010d41656db09c101d348ffc2ae9cebb97c9c6d0664555765d75492409bad4fb56cd6a1aa82c8d076046ab664e27f29022ff89e06ff0bea03a9b75f7d3eb392257026dbf526dbae929af81b23a8fbdbe5b8dbad75f60abeceaa7d75853becaf9bc5067ff34e246b5bf2464242601fd6562c7769d37dea89e73af9cba29bd019c354400d32206f76432a87d1073f0427e8ddca166fd0cce7900b46f1ad70c2b02f87b58c8666c379fb934a956b02f0c1f486b097009ebb51d0282a154eab5874b17200486716dac13eae6ba47e33ad8c8fee5847b469fb8e1da2e48271ab1b9531294c6e751412c4ef31084405131b86a1206a693ef54a99aa5f96b52fe05ea5edeacd66e153641ed7b0880f41bbf4957af68c9ed90fb1db0fc5d76a31cd4b09f4bc26d39f0323840ed66594d3163dbd78b71c19a54fe60f67a3732a1de28524d6239548ec3629cd5f775a19f47612edd1ab5567a0b91b8914434530fe7b45914aa9827f18bf3eadb782e87cb9e90c73caa2633477e04e77c31c6d4733bd6cc7eb80caa80d6c405957932105a6e33fed4fd06527232224692bd075d9a0e0ce6b8b1186942f92bba7c80874aff954abcf47a2b769ca652c1c92e45be3ea3b43fa3f8646747075416742399a08cc2d7481d6568dca69fdf6fb39e5bdd87b7e36bb0bdfad5f3550435864771053348dd5a7f0f87bad7e35837d4e462964d8d74f493683b2337b5372f49440d9d5a35edc8d2dcc131b67d37a83b4cf472ceb4053d81eae203eb9a1a73ad3daf91ea1cbaba58075305363e80208bf94f1d987b2583de4b81c0b83effd1fb106c16e555e1bab89a117e429f19fc8c5f2644745c15863c1a60149ce9919488e9344ceacbbb7de0f07681d7db689c1cef4e7e52c99bb30524d9566477316549a18d6f45db0589fa657f1995e7c1a122035b3f8f9894d09d8f73b72ca84264492dbd837008d922cd34ee6a51fc118033a60076765e13d9608953806533a836f1e22d33583f4350c03b3365fd666ae3af2a1ddbd02a49e74c47955fdf833652144b2e07522bcf1305233ccefc33c380182b39b9d60a5648e415e8c2a50f3ca7630df519642bfa7040f585c0ed3c7c0d0569deeced08c88c33a002c0c72cc165d5c017e623ae8be49dc8a1d06229287985db79c4c72f3d5c7e02da57727da050bdc79f858a38c8dab807909b3d68f9ce6ada7052e00f561983a69c0dfb6fe7e7ae595baa2242fd2c12687629ccf364f800a106ffef105a8871931dd84e925c2813e104c653ce277575f4a0a6382017ce9afc088d8eff4f346bd7737834d943dfb85f94e8d9be060c156364b37a58cb6725d5cb8308b1f39f98481b0c91d1b6905435d881a09da663c19305e8046b3df849957162d27b7cfce0f7b7c06e290c2eb2d9f03c9c26d0952dc28bf11558b19782f2b3c0d2a90f10182b03f4cd2b1b45d7ec460d5aa42e6c8cb42b7d4fbb75157c1fda8c78101085b56700a8634ab59fcf5ad0cbdb77d5859a7455eb254de33897e8ec09b13898d2d5d99177fe62c40595559b683a68bf03dd248bd0c61ad2cdc863e660d7dd6cd1646b9cf4a6c96de782f49e6150a9c89edf1cd576cf046cd320a42fc17626f7b82b2cab6798fe22334bceac08e23002eb537a66e2cd759bdd8620631a2a5c08dfc7634020758c1f86bf6b02975e4fdfed39d81b6aa34cb1f81aacf056a724b7687d64b0436006247e49b42269b3380236e50fb56ff2da998dfb3868bb313bb19f2dfc47c2dead12570e23373704c908699647b4f621258184ebc94e2de150fcb9a7534982d1c12e2e8940e360ccc76407301be426317521c9af60aeb67e14d2fc6833409eae852a35da3e499ae88ff936cd917063f00bdc3a05f1c73caf4a09f4c260caf82697c821a1ceaccadf98205202e4a067f7e86f095eb7e7dc43f3cc4f84d2a70e68d9b388184051e86da9c9a058d47dfc15aab438708cc139b4085255cf927f3fbc1fc0beacf6d22d9c11f7fc79dd06ddc435f5100199703c477cf5e2b0c0efe70d73feb1ba1396d3374f54e7e79f507f13376cb28f97a115c5323aa7a3f443bd621a3b67ac085dfeb2de05d22aa5937e44cf87bb9bf7ed8cb684f345a00eef0e643dd26f480af18ea5769add28321aeffee18104b133d423e8484fdf1b65d1287b19779037397f7e2a27e211310bf076208f051ae87456138e848b5e4381ce28b8aa255d69b5e068dd42c0a88e5a04ab9fbed427382c66572006a76695df93ff9fc583178636ffb8f00aecbcd19f4d0fd9ba1fd2f841c62c7e95932e60d1614ab1747c425862b7bf6079b402a790192a5b522d7f5fc496b48f63242ab889f9d1a3ca9ce28b489ebb952aafac4a05d907d2be9962cf3fb67be686dcfa671a2658a4864d3daff50693ba5c2d422dfc4f97f895946582a5e17860d952dfc6b4f351225c8790bf280271c2bf0c93411856e3f051c84a28d17cf44f44b6a321c6bae800fe19f4098d719870adb07016a4e02c0eeeecc3208622a967e03e7900a8ef032b42549e700a17ebadec1dfcae57bec2d67e17b1bf423c765086fcc81af50f9df7129e0f0aad8858b9739de168141085f6c7ee55715e7c7c8d3f8067992cd0e66c0cc2030128895a456b22c84e4159b6fc38884e8b3fbcc0af614475429af3d7c1dffb0b1633b6eb15f2420aa4b6ab2c056736558cae179f66366df9573bf50a77d8ceba6024945d980841aa0a6d8765a1db6315611c95e8d2a5af5b11b6d76907ec56fa6f5bc4d09ef730f62f1ead045adb9a9d7347ae4be34494784073b55ebc6d275c427417a1811f640ca2c29063a03031482fd61c817e669b58557676dcd2aab8efc98662d580f77f80ab3b84b594b3b64bdbb3db645c7491c69926c0166cfb1665c0e093300a7f8f476e34f3e2caf2388d55ce59a755f89a9d4b70934a12fcf5475c4e2b4fa59a0018c916920e302449ca39c360eec04e76afa871c901dd2fc7445a906b57a0d1a0d0865df0dbdfffac3f9cb506f3a3c06124f338e16d90f2727939a3cc59d1e40a01d74b96ac935b952dd73dfb615b889bb8ad083193b618f14fc2344866a0ef10e2951e077d20f7ed4f888244b32faf59821e31f53d2e10b25c5f4d5cf926c261bf84bdc706735337d4706a834e02581a28f14146bc0391a1200530726ecaf20b74ec47c9e680a70bf1a8d875acc126f60ac4aaea94455e1383de0b0bc95b752ccf0d27d507f6b5ec96bb1d755c3a15b7996202caba1d43e40ae01216301e6ca91c887e13f3ab6cc54cab8014f9066ad92b402f2b5001a2c5313af3467e3065b33afc0855a52a2c7caf04249dd03cbf44c23cda0106cdd21bbbc6dbd395ee8155cdb37d3625481595c5d7192a177b125269b8f273d06f7608e87db4e8fd78fc3d670731a056a98ef39539b424b787dea858b91b4b2e4bf1fda85c6e1a70622a9e41609b564a608a3428388872b9037f3fd0ee9ea2acab82cd569d182e06d741c13112093f178dd189ea0291e561b3a07048f16acff5c150f451809159be00c2dccbf00ab085b790805271254c3b6ab2683c5d84e9af3bcc008184ff3c7552f8dbad7311b61f21c11c6f46228f28584f8e8ea72d53622be7d70480b8d80e560370d8bbecc3dec238564bea3542a453a5231fe7ff2613088ce5c4fb20e48fa9640aa77aba250538786b0160a7e4a4666e11c075b01d880874ffdf09f0151e71036c76e68b3f9b63f385990816f195d1afb6c5f88552bd6a3b3df226036e8e5dffadd00a984c4e0b7f938f1e90f3af2ec7cc2ae9e8a2566131c4128280b541ccd556d36151e0f520f15ad65cda7d98889216ef80946bbf5a3e905b8beceaedae0fd3e6a1d74cbfc3e721a75cedef4ef8b6879244ada99476d2d2fd10a4040efc7e13ff764062ddc927bf1a9b95af7266c7f1a9cace12e46894de25df6b09ab6e710648eacaa8c73e647b8913438e512619bbadc7bf29be969070fbff81bae14ddad793162916ec0ecf3ed5f8efb468eef2e295d11304afa9ae1bc173045ad598d776c463a54e641e3c348bea9c43a9ea065ef7890c2e64f1a8d5d9342b27654c1fe5f19534a73850f824c1c98c733c88fac8b0cedc2c4e7b966bb4fac94879543aaf0755871ee77d5468f34f0a318d1a96b08a855d323959dadc53527a517e079d4f2d5c5c5cbafc8cf4990e67cbd429e3697ffd614c5c0f1e82c7e9bed002deec82b18eb0f57f1acf865566383d5e88fff82172cf42940e96e3ea1b5005394a3003d414cf9a4ddfacb75dfa183df3a83ff6ee54ce1119b8c7518117c8e0de62de1c6415637666dd6b5a73453f4f6238f3d575eb386960f3d9143b8dc64d8b2e9978ff4e89334dad556ffda040f6fd8dd9fea55879b0b4143e73be9b79bb172f6e5a9b94d710ff52c2c89930c02fc6dd9c68bf79614cb467fe58df71dba217c2a1d88026b33a5ff09a99a114ca9f73accc91be0d1b613036b249ed9ba1d57fcfda1d8c12bf8cc6e4edba33809636e1fb7bb480e65bf9ae9030564e053a0b023e62f0d58880f1fdb5291c2ccc012cbc1e40a6fac7d8b306a015982b1338a12c26399beb3a4881c6d3d844ed09c67bf4de11358669811c1dc661ffda5e201cc85b5790941826dff2d50bb135ead459b735e46ff9a412db73c56039a7dd1de74c86fdadb9f2200fc27255bd61054f0bf4150715bdfd2eecad618e171c9fd3450ee627e6793f5f64e1a196b6b993615021a0da9cd93e600d5d949ca27188b147d2a0e781bd37c0315767c14191a228aa9c0cad98f46a9cf3641845f47bfce2a6ce73cbfe2cf56b54ca4a423bde6d7c8a092ad0c80d767a75835fa3e3319e8fa02b59dff1b803e3449b7b47684c0fc5fbeb8f888be588b57871870f131166a932bc5fdbf663ba5d1fa579ed98b10e3ebacfa9a116208418428e2ff0a027f3ddb9ff384654af2c66fd9c0c75e495fa45f1f6c75a2679301634e3f57b8b06c525bd94fc64d185cefc78f4e791f35838629e1e00fbd14259d5ed03a339a5ef2b78e7facaa43362c0eb743086b0f3a2b2423225c5c5426b3cd6115bdcdeb0b73b68f48a861761e020781d6ab8b706b023909c07922b78884ea79f9e4e872076ab2604880a9064c505af379b63c07d7d55e3c5d6d01f693a6d0db5956608804de458f014168e8a13321822202df9b51ffc8a2db666ee0d819c1c191b29bb27ad099e062fa2a7c177812717d0924de1ecfbd3a25e506316266611a0a3674566a2b44af4baeef184a41d333452f852c4add4d34223f9e8ae66853909b07ef93cc76af798f5e4790d845e3ec510fe273bf90ffa4030dc6881f39cf609fb1fc151c9d70b4cb28aaa0dd5e0710d39b24198074977ac7dc25347af1acd33bc3fce731a150293e0767729896db90d1cb9c84b97135e09fe63ee58880468b574e7b372191f136ef00fe7760c5379b86de75b18d014ccb4aa80e1519ab870e422d5ad7adcacf1e981fc05b0220245b76f1e11e0ccfd1cc931e86124f21564be328edc4d67ab1ecb07bdbbf2dd98f1031edde49916b3f0fc79d08731ba2fc4de95092c2bb4caa0a075eade98a1d5a23de17b50168a45dc807f8c7131a0d5fa99c6efea485235b4fd784bc2346972b0392e89d1986bc979af2a1daf0ec347d82db9d5d52452c3b8ea9e3ed2e82633ba8d5c30dc514423b179f898be2ec5a5dc3357940ec28d16fca828760e9eba241cecf6deb2fc7b8b5e947f81ab12e877589cb5e6dc2e672e808779d0c4919be8bed1f2ff9530727e54dbbdacf0c43cf5237291c311c92484b9e2ce8919820fa0878a7819a0c96fea8b297fc0f5bced705e9169748f73e12e0c81b9c80582fee55d2f503d0d26d320c8baded0041903ae3b70672d269aab0d84a851aa1d6266834c9936deeb119fa78669d1299aef3ef0eb9ed57fecb9f18ed128bfe87212fc628a74b23a3a12396fab75f0c1de1efb75d594c9df2fc3e9bac6d5bece26e5b454b1bdfb3e23c6fca17c2c03e529ac756f5c19cd881382759a3d5ff239b41221a96fe35adf42d0ceaa9d422d052f81ca933d8647fd0956452c7fe652d53192319f08b91de326da279c1bab556b71cf188602eefbcdc0cb55c51600681b3a523cd9ddac90015bff4dd226caecc22949e1c65a523ae7380a6f7702f8dc3964fd2d1b4b339dd04008fd9b5ac5b9d700648533ce5b469bc0108705cb73cde091a5fe1a2c941e44ccc3237b5ecaecce43c493d2ade9739c19fd3ffd3909125c6fe5a43c330763c9c06c84aaf92fb0dbafe13794be65c197485d6f832eef70068589f7ec786b85e13fc503591db0b126d3e1f5ca36070e5e02246cdbf7441a03d016e545a9f63ae30214a69eadb09715d97ba1e8bbe3b646c1a1754384c91dc91f8e96548ad08312608e7262a422a98f859adb48bf4948c4077b4755c1da01d0df3947304046c00f21031f0899c747638205fe289a7be142770f210205716ff2ec4e2b6c557243186c70ec994b24ffed8823c24c4ce21249a37195832e1e70ad81de3a683c4294c57efa48d2becd8a4a1a7fd91f67a669116c45245f5dcd268cec60be1c8ca7b92792228e51b3f3122cdceec33ea978b31df30d497a4db998a86110fa9a059402794645b5e7c8b75e1efcccd8ced5cdde56abe6fe21c93c61e4789dc08382cb553dd0c9012e4b12d2ca9b05db368d0fdb2921ed2bcd4f837c6eb72c487302c18eba3b19f309740c5280677b56f22cb312f239ce29b6d4bc5e05458fbf64d962f2a2f3993202b3beb312c203982e537c65a6be651e5ddece4dc4e29a568023b373af3cbe77f1428d2a6d659aa79b5c30ccc596cbe2e8961a0056dfca5084de72d66f125cd9045141c9428a2b7ae9fb1aac922bfaad68fc145b59d3803cbcd7f94a6d1350c20ec5a1432ef1cbb0ce6df40d42c227e29c2de71f650eea7d9615cc628c4da0668ee7d7b7d338b1904cbbb2fa63a0973f503abb3ffeee73c986e01a4422f21c4c97197ebf7c40c2e0ca85a0d8c168d85efd62816ca3c26156da3c537a02308a129294fcbdd0fd489992c1fbfd24369f8d8ac4be026dec8fe83137dd220211ac52f374a8c7218fcb2185b29d3e23b158201ee64488e4d439ba97c48b64cc5f510a37088afe633355ae36cd1a67da4ef67f676b96d244a3159c8c68c358a8ecfa86989dd8744aaf560cb101a8d1b9f10bc5cf03806ef61a0d91d1a20f6a2ad85bafbe6208ac8988ad45d225face2c56e36488b79b850624a1ba23332a8be984a930987289d96a132b6a87f1758296528d7d9bae4ef7f74aba9c611149c302ac35bd17cc9503a8bb9e26270111092360075cb6bf8712044c2444d3fdb45a6606632e3a11b396c0dddc2035f5ac7c213bcfe192f19b27444aa43524c3391a6111dfd4cd2f5fecd00183a39d5090da083c94b6c328627de00664db2a6f3076216a916dea3b342bcd35bd86878be12eb9f483c12c37600980b638086b971523f804d5938a0a7872f5bbdcfdf945f07940f40a043f97344b0fdfbbdd78978f65f09822fb1d477713722150102b6bc4930bfcd47ddae054b6ef31c2fa292e1a8d8c51ca416a087491663b926c3fa137d7dc96586c5735f5b3aa12a100dc29615245a0647cd77a09ea821163b82354dece678bb60b93d2d53053c8ebf70722f4489fb07718eb834390f6499eab160fb7fbc032a9689d63236cbc8368d5169ad7bc4e18280674973421c79c5a35c1cd01a6c25075924aed10903ebc86367f24fda158310768f6c4d3d4223eaf56297b567901212bf2b1bb7723469117a7e72f8a452b99a6b0db690b8a0609a707379f797ec4bd639209886ab89e0e3edeb35a05e8151289b4ee2b673849ea004cb02399d58480f9923cc1f6930f40a8559a40bed3126f8963d2f8ab1f0f900ddd3b16f01123c1bcaf8d1afb564e9b4773a258d5f59126a7cd155170f6901b93abdbb8bc2e699240978bbc58b0bda6c4914ffd004bb8710d505cd38d6195d4d90d392cdbfabb5e1fd6740dc756eca9f12bca9e79d94ecf88932ecb872850a2ec94275859b3e655a3fbd1c72f42c6f179983a4d01fa069131e3d10d8383ece806d1d9698a332981a2ff890ce9b6e615e9251c7e550ecc6d81a7c22dd11f9c0017221b7f8a56a1b90b11a887026fa16388c8e7518ccb3eec990622a56de6b1aaa4874690a7ae6ef40bcb39174ece2aba5b6bed688a85e31949da4189214097bb2e4c795429a47afb5aed8c7e5c25b8cb4e8b04b4181ee2770bc623b90a71721a81bdc0f212abce029c2da9d7a161c8df9ee935b6a073f342d9068720537ad7c798bb0e877a3a1bcddd086e4a58a629998edfbd3eb1c1d4e53ad352387c3ba838772fd7bd5f43790050b9ebe6d03dd421005f70e611ff19de04ec45858ddb8e526064b3da61f818f5fd34baeab91b6791eda0b2567340e848b63fc359f1ca9e511ee8ca375b4116c3c73c65aa636230c3268363018f182161bff6a8ba49a573c4dcdc45d94bcecabe9f560b724c8ab7c0ce59a43a876e2417f0482cdb3d2016af464b60165afbf1f243fb09349cb98ebdc668d5d9494b0df4cfaf994bb702c1064a4fbb7944d67fd274703d31839d9c744807c0a99beef5e3d1d15a970d2cadf3f8291291a642afb4706c1e22534ab27539c0c3e601a5764eb9cb322b983cf44b801615e1df216e94c3de044c0c172f08863077b9a71b5394630d13810d565602697098fcf772960e557885867a41d8f757d0db225644fec57e5444af617e332703c4417344b2a100457df061526300a9b3a207b08bb5281174c6dcaaf4a8ed45a807e77715637db198a5fbb1b4fb2b91f6d7d6b2d7b8f165e7d91c59407c4f484d1a5db591a76457f8393a6fe533c083819c9b2a10fc916589bd859616036f4b2b22ac9867cec709ce767d428438b59c5b185ff141bfd690ecd9a9440d25e723ca9eda4edbadcfe155cafd01f83059d369778a59f6d4a3d815a2732d3dff8612f3a22ba3e1875fa402619c20aa879e17abc39928cbc7e11a2a2a7c69e71e213fadd1a2dc9b9b7e9e3bb60ce12d45e9ca259e1852e075b62fd708ab70c042807bf1ad177400e9caac8fbc9a5ce553e5effb424320784cf3cf9d1c86283035e7ba91b5bbeb3b5d5db83d2aa3c39352441edafb8e10ae1ddaf9b99bd1152098a37d3ab9abcaebebf5c59574fb7efc1bd377c51d1f50c0f361e82eedf13757ae0a4d075e6b68a825644c065430b648cdf13b1ee5ac1430b090a136cbb8cbce70065a48df46726fe24cdca612754f3845e68fa14b3736318e52e5e15dd43f11ecae3f36658ae5e4062b7bbf3820764c50041aa156001a42b0eb77c42090e5e57393af0b30d0c66e8dad2f2a6c69772d188e8d5ec644fae09cab49997fbd81a9a607bb6a5458e5e0c2542ccbf6024630de32bd5161b42c322516ba99132f6d09404a423c2bba547ad92c9a4619a2d3ebd02419055bee2ce5767dce65ce8037093cb9840f8888182c5fb0bcc9ea45ed60b7a102d23fdb53df0be1bde50fd132af668be9ce429089e0184bb7fe851295db757bdb2639c3f75170c123233cd5ea0e1754ea9e6e4c6bf8d7f4d72c138f8d0dedd480a7e49e271f84797b5502b57398ac6123dad91e1c47ad1f97064cefd3887ff228e4827663a02f3704637f914975cdef37447a220c1cd3b725a05de0dfc3a98cd1a4911ef353cfec6f515aca73019c007ad28cfcbe8c5b9a4bb96321f1f9aa2bcd9f7e7f44f911490ff32eca7298210f42ef04f757754997d50c35677846f4ab277da56abae8528bb65a359fe185cc2ba6a7da2d1d056677012edef2bf77b7e50f748866b3691b78c82892201b07441b938824a78ebdc52f4c0fe9555df8c2af5b2ab11e7f7fdbe68a99123ecc39c375a6ab47e4b813a3be6dd8f12e7dba07722b778720b01580892ce560a1eb3c5769a95152e1ff4769292f80a8f5332a45d1ca1020be3ff3ef87df226e01a99e741bb3999674410290de787ec60616252b1bbad5f48b8adeb14d7afc6e6c8fcade689459842652ad8669cbae9ce3f01b1d89ed0b123405f58a943d4ccb0503e24b9b9ec298d55e2e101c47296fd7db6e41f6df406da74d448d488d420c4f49b46fb2ede39c63e6843226603c46b238793242b3e85e1d62cd2671da0607599e0b673af1898ec45667a6bd066586163106de879023a8d44e2392ad4eb6817b76f40f1159e13218ea84d7c6bdd94d2766903e81ddfee0d143e13b3be4a2ac04fec7a0e7741e89d7c9b97067b13c9e675fd45db45480bd5f04ceef909f0791228704f9d8b056370018d6e217f44682bf8de5ca6af12de02f5edc7ec418e656c621d47e103b99acc3878d2b616485af54f6190761404822b08f0120c0004148673bb11c6e86b6f4a05f432c9bff2e50f69f944742eca590c2b81b60d78f1d6f238e2829142321f637a8cc4a81d834ba60c9b34bace1a775d324a5df81e5aeecafb71fb8e47952ccaccd29be13320b3a2f3435076783546c7278fe4ce3f420b6a12f7b1a75f66a3939caab6a497cea406a4950849ea5330afac003ffb3ee2e8379291bd8fedaaf183a509177649221ff4b7ca2068276f341c574858339acc11851109bbdd6e982ba43e78a6114beb2d101849f4e7107f690c3149371fa2f461c9ebeee84fe56b63081ba19b5e26337769eaae029067206e6701b7ca7080f90244b52b94af7165ed6baa975e6787e3b7f23d733e4618b9a06a7d4400c202ba68644fe7b8dba3279ffa7f8ddbc9373836f7ee903f5daf36999b1819b84ff0df34211661998cdfcbe54d7b824393242fbd61b52fa9f401260e7412e66d61876880da1ae9c3eef4139cb8350e0f8cfdd5743e43b83d79064aa4ef093c87a13025d0c3a512bcd8d03c3aee2b7cb265103e73f6020ea667d498766a724386023398de8382f0a9ae92a4049577503e8b6eec42048e625aaae6bdacaf0fb04552d40ed1aa37364d066bc8c55b530d9cab7dcb6432dbb79214cd0dc5c3dcdf82eae36b7152d485f4581f22d45f41b6101c83672fe9c363665e5f1619e3a520583a0ec0e77a5553fff95192d54135279d9f7c2784db9b9738257c96061a0b25a598314b6c6e2a09a05c238769ca055a34995fe3c09fafe4503c356d2a1b0eba6c57f710baf1093709b9019a78b466c1b6fe2b6dda39e1e7043e99861d79943a336b31fdf507425487db43d1f24e496327e3938ea3275b5066c19a5435ba1f02847f1a5d61d6ad48ea1ac807247d6799579678b66a6cb3c054e0067424da321e4e45a9eaaea8218cb607cfaa732aa02f9b4e51a75d0a09ed3c4caa9f5498a632c237b2fa792936405bc098c99ec07efeebc7f71555eb5af8d15b543cb5b73b803dac19161a3507ccd33bd794e9138c600ee41624928a77b01012e3ee93e8f72b936fac2060acc766fb75302367a741ac1f7dd61dcc19e01f5fe726d8d4b21e1062242a930e2db375bdd6117a6ece30b6523ab1dbca0fe088a248e6532ec59cca4691b89a633d58b6836b2efa83e310cbd01c4baaf21d9cc7fc0941b487c496ef782de61d4678f77e8224253dcad9259811bd09fc007f1d32c41923c1864e14692ecbca7f4ede4df3ee83532a42fd5fa286e68c872ad595a6950c0eb58bb002938d5a610e5cc3478ec6ccd4e62127728f38988c7edd708a27b9414f58aca40ad7604a82f743dbd1a59b94024b3fb5f558bd916c2467ecbac164458e934d01ce06b78916913324f41bb6f6ef33f94ca178c72229f9eb44a1f937a9aa0c1a1598a814c0d2f08936a75a4d44264cfb202e48c267c1627e90eecd38ceea2fcf24773eebdfa525b97a0785a60b8984c1f3aa883efcbec38f1cfc26af6bf073ac412dcd804593b9120e5599e1b41d135d5de7009821d2524151dc2dc5c8ec80f93a1f4aa19d81432b5d5a3a7dc3ada6de9e16d39d8fde244cca074d161ddef7f94adc2bfd9fbafe61385cf9a93fbe91063b2eec8301e13d0a9e7b8787d53c8ffa30fdf92e3d49f75163336ee44bfd685617392c365aaeda9e73845ad8c697426ce9b879935d1b481ef1d2327ebfe3442deeeb358a240ab6ff00f7ad2a0322b90fd0cafb0385b18a1326857312d726f04c10ad7cb4a5d2903dbe36637857c9ed04ce5f2b1421de28b7a9f63695f6f6c93c022f81be0c94bbd3112201ac87d354fdcaafe86e88e5fd38712ad7eaf2308aeefa4fb24551fd2e097c650dbd90744a7cce5e883507e5771322977ef486b2bf7bd44c33f2bbf964174bef205dc5ac2dda06c3167296fda61eb0ddaca23e7ff3fe2dfb2664743087d902c3ec3b170f3aa3e061e43e99dd8f45ba9321d1d6bcb6d577dbcff599c8c6f08aa21dbd8e01179153fa2c76203a30fd0c89f2488e84cc8d99f9ac34c7816a0788618f59398b809421dc973f5387a98735f84f84f8d737cd3521cf253328b529b684349a35619ff891f83eb71322a0a64870a33b9e1d1581bab113d034645239d00adf312ebdabd75b3039d4e340baa0de5ad0892e4434fdb45cfcb60943a41871f976bc1c3d0af64386f4304db2bb9df171d3b2f5da26082944a5731a8df7ea43645147e053bdc5e04d40bf10814cee6692a52f65660c8065706182e3a85487ad5253fba5e0faf473f6ddb7c03fc4d5e504d0b183a005fae9908982803d89b7ba654f67fc0df2554ff76f49052e7e14535be0f16cc9169026935f4fc5a496dc36c7e912d4bcdd53817154b2056f75d0d372b32854bacd2cd5bca943543955a0f58e4a1e4ea2c2bc2d9b02e9a251986330489edc21abeb7c03a73c24f32c4fb54dc25acd27fcb1c6e52009ebf37d859079257fd6361a7b65ebdb69c0b781c4c1a397bab761a120da848e1a66668cbbf194630c9aaac9edad1acf4835dac09283e4e0edf3036afd2ca3df40a599aebd94d8fadea163549eb21bbd219aad8040328f3d4a8e06b161655bc9698368fa6f1bfed72f6213ebaacb63489463643fbb0e0d3602443574b6a0c164d45bab23c311f398aa8fcf47372328d6b3e394b9b910c044696c3518000c68184fc1f56079d62e51085fbcad556a885dbfc2bde19ffab456ef76761f9518845dc934848f52465463a26146a2ad1206281330dde4152e5a997bc63b9d7a64f2401d010e3681b82b4c6bf948cf1ff855147bce8e015c21e42442dbfd81eb5c9d667d9fb27be5189f190f3950f52bfa51673bc4267b2d7b45e3bdb36ed4338ab7e91c164a85707308498f428dbf44cbc455cb5e71a10b3c07de01b3a1ac6e3519a0d41e2cb4f37d404fc519db4d886f7f048160f4651dbaa43920ca6dd1e0f09408e319814a60a6b0d3c9c7dba4b14cca3887caefecde5bede7af468442c832e2db5c4e27eb0d42be01f1dcd2df4b486a46b09407dad522db4ec0320216c988f32f76973f694be41780078e0a879269e2efdf80e7cf4efc8f11d1d63dc5698d0293bc06ff08967eb7849089e3abc783fb99e9a610344affce7f986ced40c632410c71ebb3045f2e658aa7d9fd24dce67f2d5bdd694dafde5c6fe5ce364f856a8ca149a35f54d5982d5dffaf656132baea1f99e40ffd3c90010f424211b36de3ba133810d02bc200e10f72203be6a617ba89004b8c4a5b03bfdce666e70b480c407eadf5178f6a97b43dda184678f6f9149c9647266f74da9cdc5d40a5e7c6dca5bd6870fed128b142fac01fb589e27e554af4f72bfcba1b71c53ca055b57cbe48f9ac37028ee7f2666e858662ddeaa8e81ba4a983cda75cdeda389d1b7e9b0ca8564d79148759dd6e045415f833e2ae14750a27b88ccfc14c5f7a3dc040b5d9c34e3d3cc3056f2a4b14b9d0a014199a3954669cfa71c1d77fd4cd0222afbcf8613825c735ccc3caa14314a346e8f79d3936446277d10cb70b18b298ae498e24291c403e14d0bf16bf291e13cd59f472d1c96db022edd0804379b1b80876366037e7457da6ff7ab81e41bef914f2902f6bab6b609a88100d95fd16f10633349f65c406067fcb95a3413155807ae4b033487f5740621cb024beaa2bb1409396d6e6da7c45e64334e4c89b0c790d6dc6a5633587fd86ac411fc0c89167912e45c62298ffed4993f1e1c960283bba66be6b7af506e59f4325493b9b26f08b738ef096854b7ec77856dbc680aad9ce0976e053f1d1c7c455ae68821f9e5b3eb7c96c43fa62418ec84a2dcfd3a03d024e63ebad69f93b8675c78e797aed96b706994603d9373d67c17861814171fd0b10896340bfdbddcd20d7cfe36ee51098fd0a10182e6ba8f4da0f3c9e0f2431efa8013b35ee8852dbe3eed85425de85b395822ae5ca51bb7fb53bb970dd96f1606f42aca12ec1ce028734cd4565caca2ce5c4019f51537fac68e0fb262ff20830ebeb1da42b6a454cc2381bb88cdf43acd9f809c4d8851e0eaecc1251b43a18462a8591790cfaaa3491f96561ca41a1c0d761c7dada7230dd6d9ae97ac6e82762effda5f3f2a2524b28fc79cad3111be0eab52f4baadcc682c3016cb26288cef648ebd92c4a7161f3aaee86550344854053f76725d5604d5b0466dbfdaa654bd3e6e2dbc761e0bf573e24627319d242fe931d31424344f44d217398aa76431e9011c9a147239a0e37c452e8fa75df28ae29a1a8c2cab99606d5d1da815d7bb5e53d3ec8ac11050ba7a817eb1fa045afcc5967f3f01a378dac11785c432d80347239ef19cf773150fc571e7f28847551c7153c7fb77f9b782438313fb522c6ddf637fb950562d47d227f23306d47914860dd896cfd67603b4780145fd31cbd090701e608fbf609d560ccb7107f93a7382bee7edf5fd40d9ec9f83424ba57133e590448903f889fdb3108ea6f1408f8ea6ed5fa66da0f6a3b5587528cdce0e9be2eac0616ec6480eeb615561836df81cb5538ea61df1ffcf828fed026204ce75ef4a217f266bc78841fc525f4c4dac38bb5ab8d846d383fc4102fb47ab7fede642f210a7afac2a1af35d2e908c0c4fbd6627f3819e4bae91f3ae4b4581c0acc70028e980434db60c78878fd96117caa1d2e580f7556cc9f3d54eb44468bf993a18435911159f2888df4e8e099b24f060d8c032bcb5ea2588fe1dc48232716ad50ec48971d2d435dbb5bb3c4dfb9a79d37c5b78b3a9d939705c36377865b80e0b11c0888a9e7c4b20f0a99e7f61c277fec75ef08244af589bbd3d564c048d4755ccdfaa7b0be70565adab3ae6eb3d9bb706d4a7eee04b20ea0a84b3aea4fce9915342d838d3a2d66bee579a1cdcff2f04008de1ac0eb79976ca9e1c539c64f627b29d9f84ada774aeeb5825667073548c5732e082f1d91122e810916a68041c94e0eb9a2a664ac4635d294e4ee683a1cbc141c3144edac9ac63ef66d6d3cbd250d4e8e22e83ffc4b47b97751a69a93ce0bd7ee77840d6d9904c262dafffa5180f231731521f85ad37df3df9e5b5a7f6105db0611072c519b4921d583a9b8a9472ffe1d65126c60f8288755acb11f3a75faa2881a7bd18bc64a51e51d6454720872d540f7917a9f831fb2b61b9c8fa771e73d0d72b3f145a72db842d16b7f7447c62d2c53ffa874c5c47e098c6a860694c0493564f684611be50fdddc824e93c19be1e7eeb7e7646be5f46c0cade5bbdd4ac23bd47eceb201f90f0131aca1f5166427317935aafc0ab2f9b7f2530490c6f06d191404cceb3b38efb97bfbdd0c76483607b2a64e358acb0f25a81ca9c4884a78bc254f58bd297aa8df9c973650e2e625c62cfda0292d7c0ecc09fd8a9212ea46cba564e091d1db0fc8a68bc7fff3f8282db50d581c3152587b0017d5ac3d25c00afc1f7c1cd7ae54682afcab14770008582c628e90d2d4f6e571d3206540a1c9fcbc19697cb29f805675102280e470296f144d4f9c8b58cd0adc74b12b61d002f07eab98d6be210f5c962bf265f2884368253994db93a72ea712fb01a4cebdf1156373f3597f205b2f2138b8f494ac0a270ea60842e0f3cabe9ec667fa7364b71c60917ce9b0f38bcd219c18930b15d45b5b4174a200a5f839aa62ad8f799d39e593fea70ee6ede560589fe73b6d3dd3901611aea5534de7b0ff353f35787890781d8bb632fb1ec16532bea7db2019fb9e29830345021625ff2ef2a36d43374f91db0faf04b30c728ca0ebdbaba3b61b2734c569d4e5c57b16d887af70cb67259a0f48b03c95944089754b1385b0032dd4806550b85d7d50298284f4ce6144b05815e7dd4c818320f9c60ee0ae8555a34f31f8becb902a11cf8d176e99639717d41af1a8f2c32132af66369bbb1aafa6df903c62114d378b3b31308e92b17c2d644b604b984560870ae40938c685b88882c7212396b0778dae098388e660f29f6a4dd81dd081a19c09386f4f5a61af016d720ba03a121563b824eca3d0642b35a4369116a586d8809e857e107d086d280a64aca950a3a8022d8e8eb74ff7a762950c236850c031938ebded538b6af2b2e8c0d0a291b321668d5ba0e3cc3b7f7ef7d854c3fae1bc88db2e12f6d161a51444a46c868a7049c55a3c562f5ca74ffb37c4286cfd807fe6dc0078cdcfe966c098a38f9c5a92b4774ccc183d143258c7e57eb4b30fcdf96acb21e254484d9137610accfb2b08fe72f77d69e886660c31e0f0654cd55ea2de2cd8ec4426cf0587f5eadca33273155b410c22db5a8b2c3f1341d3664e473ee6255623cca9cbeef41d2a73c538dd26f2506c8fa37eadbd80464f51c5ef2da56bb4849c5964952d6a89d2bde647f4a207171e5d6422a065c86a568c83cb0f7181238e1f6ecd92510352e450fd12533bc3cd89f6f512726072977421be2c1ae118333fbf37bf299234c766bc44331bb0ad9a931a259b12d6a0f4aaede7bb1f5a7826cf5e37f54672c8528d4da00b8800c9b89ab731d91ef93acd51853f108bc5d5eec8f3580efdf2a172391c40b67b24ffe7e881ab831234838be247e254fc4b08b9732c16ee8f18a7eae2c94057075f2386d2ae9ee777449a44d91e1431c65c0a7ebd17f0e3bf2b8709ce84dfb02126d55a344f3c648c8a5e9480260b2f9d786df8517b41759cfbd7983fc89915317145ca04c164f2111ffe73010f8c6bf42ae44e239b0acbb56c134ac4a91296b9d5eea8a664d910b66783d6fa8e183f0f0f81a45d624adace440ddd9ddca5c5e61c84d9dbb292efa69e61c395bb578e4cb51f1f41963f3848a3ce25821bba2022718e7ed33740c75525a0d0c7eba2e9a2bd5d90ff26e9cdee93ff848b4970c68fe722e00d77d9de07cf382788556726476b9b06ae06c14215cc62b3368af8aa35b241a311fef9b7dcc2ce1b9146130178c75d010061b3ffaadeca043bdd6f1b9ba13a4c95cdf957d9b4aee7e779260ec9595395697bc3b704585c9069b4db4cbf38ff2547cb53b9cc7b41f6bd76332bebfd310114baca35c8b083df6eb39112da8f8c34a9d023c5f363bdc25af0caa91a8744ace1eb1621349da02b09cc631de521f90ac74b8f50a7e7bd77714cbf3ee843971410e180eed317446932ffa12ce9239c59325aeffaed8c9cb7e73616681e49aba46ad0f217932aec16c87684eebb9c40e4d140acba5a01604dbe2617b6b8a36e6ac4d026595fd84ee0b466bab414b07c9c32c62526718462a1184c933fbbecd97fdbbbf999a7dc90a5fb2641d410cfeb48437fd71e4e575148200d81bbdae05f4fdc624d37f5f8e3a4b7fbbbda7d1da32dcf6aa486aa963edea451e80d9143c595ec73f80ceedf0fdf86f24847cbdebe217ddf3769eeb53db28bc288674cf8deb0092942919129de640555b052750f7f9a489ba7dec9caf8e55ba17276c29c92aa3e517df28f71878f9108ccaaef74ba9e7f074c9502d6d591097d1c09cc603db413405543181f125523e9a7b47d368c3d22e79ed418eee639fc30a3fdca90f2eae416e5a32981c3859cee962afcced6edf24596d38c657c34a72c19a3d20bc458ac0eeafd56c069135d94fde1c6648970eedfd68c7e905ef8a70468b15a891caee4e617d3c1d2d8553c31331c720d901e285fa1d9d1fe6890951b2380b94c8190b55faf9daa8528de326deb28bf189d46a44eece6f8e5e776b428e5d6c0d06d9aa65c43867aacfc1c32bdafe821587bcb3cae5f2b1c77aa7f5e73d9e4daddf0b99cbfa7f7d21f18dd801bf6626f5306464355e709fd982425edcb88a0a66393f26bc47b927dd75455fadf8c8c159877b6e4bb4b6401b40efe25bcae9834d5093584516b665f559649ba78b6ec5e62669370a5651b5cca16acbf84226bb43931c6197c0ff1a59119cd9fd0dfd491a31f1ba1372b39c0d270c85b62e0674ded94e4a18862108f8d4e1b29be0279928c399ca4cde82e85487da1f3564bc63662518aec1c4f4655f283b5590cc1429c18daad6fdc3bc7dcf40e04df4394d95a1b5c1b0a7c397d7335827775e571d6a1df5b3e9439af007572f94dc8ed0dc88ab0c2758bedaaf37b15b456434ca6810c2ee19b0e41ddcd076208dc9e5642ec5a445926413ef3fd75efd28cf31ad2d70c27196d313f72bb8cdccb6e63f49fea7d1d720ecc57d603cdc07ee35644822262f014f5b31c10621b45f497d5570e448a600133180b5c96e704de9ccdf5f741b61cabff80d7ae0e335284f2f2a646ce2d4adc49900c97d5a1e296130b988734d64edeefdae65c2808cbcd96690d127abbc8217f6177c55b130c56da3e047eaa27687a4bd87a98fd6c47847311fa0d4e91f489029eda78a8770f413a4ed072b42058e855da9687160d93e0fcc3416f996b5c7b9b6112faa5759574ef0c23c8145bc1c544285a8127c4a1a8763e368054e40b0862afd7acedb99b72c990785681a52b005f8163a48b896ef1baf20f562c89080e15dfcc3ca2fe340a5a1e1f3f1c39d7bdcf94783c79d359598dc4a47a38fbc7080d6918f9145cb2a45ae859cf4290797dbf0a1601d25f70fc4581d12f0806311b33802b91cab0bdfb147fc46f52f161a66a4f25dac48ba94f297c6b6d3a4404680c60acfe45d9de93e395d3f3fe39e2e36818eef2b8c0ec751477db7c0d6f23949d57c99242914b38cb18c163c4c0a30535a9b092282f9d9c62e4d613f6cccf08fc8d873ebfbfd52ee90be53a350c0e643b5af6bccd3a63b88a731ccf8a49f7a541a99590b583b83b41f493fa2007a694d9e5f67b660370a6e24c06b08035e25cd4a5e5dfb7d2fa2ca1448798381967e6cda41655c36f242880f431497e7a62d73df32300829ceb541a7b39cae43915bbae31b12bedc912ccd983504881abeff0b9c82b6a37567a3a435f8af9f9bd928c2f92b2e28fb95fc26bc19ee46ff3f15c0519e4b188fc1801fdbb243af483231d204a8948ecd55b72ff7d8d21c88aa2e07a579f920905320338ff025b9bea1dcab504356736532b89a7827817c943c5d4689666fa47421002233b3ac68bc8086babf3ca2eb06304ac8030a180994946b44e4a28952111040a5bd1f8a649a3c7c73814177e5e3a17b668781865d97102ad441f5af6c862fbae3bcbff5e306d8891517c811e67763516488da7824a4d761866577239935f37e7bc44c6900fa5487e70c477c6701023fa5ab066732d7c6c640389220bd597a47bb01c14ac5f2d3952b16823242689f1ee48a1b762ab9357241a41438c6b35aa7c502dc3c9b54a5fd484d3df4c03f976a399bcff4872c2fc32effcc78130f67b4e628c9822fae31a5f13febfb84f6d32b8684c4ef720b81e609e50637f3240b3fbb16370555dab522f57fd89b7d2e08ae80783686f0d3c238202165193be3f5fc71c1bc329fd5b56393f0b13822bbbed514f6ce75101c00e8bc0e3c15d6b34fbbc5b551b19c11d8de8b36dfcf51908ff8ed06d37ef24850bfeec5855985851f122e3a5e634e135208fd4c28664d0d4fc9aad666da29fe0c62b629af9d0a9f291fa3d1db1651c0173978e1e7badaa26350e0b2566d73e0dd8790d12bee2b80bdab3db9d54109999ecebf33245594cc7a500e8e25a4937bdd4a569a8d5f3e08950fc43cb4c05158923d36b308f359659bf1dc0215143a56ee7e21d3231d4adc0d8d8063b7f4e6efb7add80476893d2cbe9ca15dc3731350150f1a83e556fc38efe8a48cd0607e9b2bdd56a349c76ec073efd6e68937245e2e1dfc5748c184f9f5f968684125b17d0712605fc200ee3cf5520f13ed103f4dfbd427f9c48936098b1e12d501d84ac721896726805ef39cd2eda679148f0f4920850f909502220ac36255b536752d2ade40a8ea04287c548503bcbebec293026d4e451062a6e62915ee1fec688104a560dab5552cfb00045105ba75ef2898395bdc7b88712807bb28aa515430f96edc2769f6d19103c3979b7b8629c94fc460e39e8f0b886d615197f80c6577e2358b0e9cc07319f08758095ad9d7190a780d8ae4a58e61105d262d1cd6c2fe9af03c5b1b112b22cdbc36a52c661a1f6460073fc80984e989e120e6ba4a90582d0f6e7c067398d45686e1879772219cdae34d8189f306f416b8a32956b85fa97c1d137441899793296cd3cc48612ac7ac9221c1cce9e13551f3a37c5cee2ca78c3cf61705ba138537b2471c2f4d1054aa3a1c151b7a654def787eb2a11635b5921b0d6838628325a454531ddcb629bb757dc2fbccc9e8cf09a4525153fc1e950538e08269344d43d50da5e3ddee9532d98f217f6b779673c665caed771361a7ad516ea45217785b958be0c2a77a8b03709ad38b19588a258b11ebce157c751399b54a710c83885522f52087b186e7f3aa34d6be3aea43dce938b2c6fdbd804f7186a91768a5184c84ebc2a24004b3799bb079ad6acfa9d2c39e865fca7e8ecc1f0a5f23c1d72e6e7145bfd9eba5269af2400f2f76a0ad955b1499f1b20d9412ae2aba63c59be2b538479fa161e1f46326fad10662005e8f7f1763c9551ecef41e07c45f6328e6bf8180fdc9723785aeef088417183886e76267e730d4a05a9252f9e7b09486bf2440c30829f415205f06312597fd2cbdd93e64f8a0aa58abce0e09d27d9ae399c536b95878efa4d558af4c0f5bf118ff3e91188e1824199a2b180a0cb338725566136de08069593a4dde780bf6e1273340e68b11e310d37d476554fff8af02e86029f4a7296bb38406878e3410fa85819429212d1ffdc3122befdd600cf33641fbffc381d76351b78a185b013ff32dc23f95d81211c6c43fa8c86b53c58afe1bd7e7c54c183e909b214b7fe0e2e1597555d7b3c9c828aa267b06759dbd1e0ec655f37a1832b26d92f5defdc605ae193d90c60bc3905a3877f044469804e26dffe1b44ff0a53d6efe3b47e5ae2a89fe882982c5631400f5f2ab02b4aa04eab935055bd51100116cce1a95b3a3c34e707f5d3eb149c51ec0d09d35a3365879c654ddbcef7a9e606cb3c94351c4194721f4cdbc24987328c95821a8c0203e7536314d01b0c8478b718e04464d198644ac0a8f5d5b890e61b6035eea41e7d300f248999502d65b1ca077f044469804e26dffe1b44ff0a53d6e76c5081da624599a1ccdcb9cc9fc6511109569b47016c59c6f187dd1b9537da856439096ea7e0b227e433aa2575317aa3b6918bef276a4febbf2359df75c6fafb24446b582e17e9febc6bb75f20233ea891f099ac2f95a8ddc380d4a2243b2b0f72a52c0b4bffd773bfb73f44d6c5dc541f21b351a9d451446362aa44d525d4eac1f770dbf7b5da9f95aac8bf523221506b4387496751a91d3d1815dc98aeb09a1b75e7443d2697a1b7ddb0d3821391bb10bff9957879edd379f10a9863ef27553dcc8b063b85144e3f93dcfc1ea7e67cae6ebcb7dfc0f80d8b6696873e52cbf2502abbd8144e1353b143028ee99b0e489f05c0881f45d9d3750513201d8840dcc02f5ca03cdd24668f3f1cb536ffdbd189bb2d4dcd6906a1420edcb92aa3eca6f934cdc7af3064a62c1d1880e55af5205b779ed2ba47514453a6db74d4d2481de975482e60b45cf48178fa5563fd504617c0f826ad6872c37648df44f49f406dd3be9cd655d06f7746926a920b4de6e7404055d36eb0455e340a3865ac9fd9afe496a24dcd7c994b9a640d98aea9c973e8cc1690dfcc30aece07cdb0c810ff79c22e268cefa6b08da3249cb11020a610a81ba73cd14a5e1328ac98ab3a8faab65d92113914865850cfbf426e9165afc05d4745d4a207ae2be8ae2f18fb3c074eb17bab0faf013ad6618effd9d8e157bcb4c48d6b62e96570cb9372246868a87d1db852597d3884fb8057c44b56aaadd3ea5866129e66dc9988c44466ca186c5ae6858a003c7f39de5b212462386909b5216c04e322ecd63a35a0c41a814b7d054ac6fa06d6ef42b824c6526cdbc5538eb5acc8debc77e6b9cf8fcaa3a5b901f05e543eab7d78ea9413e2488abf7037e87a546e8ca32b7f8c666b7026ec36fc36e31ee3c9f81c809b10d7e3c4227f33f1c6893ea58c4d82949552e8abf70b872f83992491e183a763f4661bff7924238a69f20cabd7192fe2bcfe083e398b4a51cfdcd958abed87f80e48e6f93377d36dd6eec37401865a590728ba171c73c1508815a39100bf4bee6bb0aa33ee22cda4334abaef9acd6759a97da9aa60e3b8cc925fa403547327254f8d419034ac1e1c8a380b6eacacddd38aed436eaba9e79c6f53206ac65e382e8e6c4c67dfd7b2ce9937caae414bfd6b4fa4e636933179a2daf7a46bd1084e810150622177149a41b7b215cfadb351a0fa268d7a92dbe0d23b09b5062904bbf3ac6e92fa14c4ba34015636f095b05d09018374e8863e7a40618681ad2274c09ad24107424600452223da90374f2d6cbd7287f2a64b4b7833055bd88fd4652f6355eca663e45ce9f395ab37eca5290145a69091217b8b074fdc2745d9debfc7e341ebbcbe9978249b94c60f8669dedeb22d8d5983771d9459fbdec84e73573ec0a9782292a14178111a5c87f5497577f02a17126b7c361c68dc0c6a8a56a3b67071624a4ba82b7fc165ab27850d8b707c794f646fbba2d3d8ed3c0880c0c93d03522148dbe249a284ffbba0eb328e5c4f82fae9c157bad178e0d3fb99a700921ee5144088c9814207c0032d838b63e6a83b8a5c2b195304a9564ccbe130680f250e1201087c6c07e6e8d6f595109187cc183d025f17e12d1042b47741db94879ffed05a9957b01225d150c1e7fea353182869e69cf105446c4fe27d8f4c64d841296bea96822fb4393b9116690d574bf6bcc2dfad5313d0049439fd81fff1349c28711500a2df44c7df933e7a3c1d8f36cf2f84756f46e2b14f2ab586e35727478ea6b9b37f6270f3ca3c289baeb3d090f277fcad4a131e84df387869cd3b8f8e5d412b54d37a1f64d10851f79244a927695be53b774a3f60200ef6456d991d87e77a87354631a77e526c3ba7fdc0c611ee3e092e631199d35a90e9fb80186c5be35a9576e3b64f7665a5389ffb6d754f66c5471264458eb78437a0436f4e51ef96d4da16fa7e8df8ab628044eb4502dd6fbe98d4955036731e779fe3d605aac4035b229570bb757d1464f645c0856538f50ca36c5a2d82421dfe9c9a0d317452bb421b0389a486865f33307b3515ff53e67fe410525f8aeadb3f10e15fef3de372a2de7e7642607af0fac8efcdd31e93e8dc174e8de23783155ba9849eeb4c5f377178195dc87538993ab7d33627d7bef8761748568089836e732636432cef8eea891b4b8d7a4225e59669a69a1d84cda716cbb78540fc95e6b34a0dbed316764eeb625ff174f79fdfbacd25a1ce39e5e9c3e466a0f08c7fc8f6634eb8e41af15c79b492d019424feebc7b337d969e5e450b833a8720b9b3a8af5bff27aa4f994bcf9126542386a87df6b29f9f03495f95ae8cfb8177f4e46c7208a041ef5ad9aaa97d030b45133fca496df29a8f3dccf296f8337b652977e60c230145f48e8173652a67b0fb1258f101ea31298006eeb645f2029bf69bdcd0fceeb48e783b00daced81c01d3350170956c3882f1abbff9dae453624866d5fd716015053ea8223bcd7d8c48830c136fe9d6f659eb97cd690a76e7613c6097bc0de78485250a5a01e5fd47a1f7ae830be183b0e0d5a714797ae81529360baedbbb0f91e13fc23927942366df36c560cce3df5ed7e55f028642a9b15a964db1bfff33b5bdb66fc04fe6559f3d46266d8265f6f613bd14ba3e73b2618e0aad1bc1625b0e41ffdd789c159b31e555690da6fdfca576e5629eb06c704eaaa0e842278024feae99d3ec9f2ef70b047dda0264382c008119bc33c6f89c2084d9f05a90d42a9945924b49a9246b92d4692fb5ed32b107aecfa58561d71c1f87df61c3552119ff6c82954262df08acae22d5d1541d029c0d6c1d00f40a488028bc885784808bcb1c9188d461a9594a65863615eb470600e3ce2ff6f7aa535e67188e5cd3c8cad015955923887645db101310a0be8b23774bd487081b6aae6ef1dc7f667f1c69d1b59aa88d5d0a384677b8d034da841b6d6b985bb68867fade1965e603813fe0ba9063f91093caa6eaf151fffc55c0af7dfe7cc2e9600b4ad5c37381d8558ce433bafd8e24dc031418dbfea60a0418b2ae2dec38bea57450097262e4e3285946a585f06713c993b4dca3c2bae183a0a45b92c479bfae86121de9134e0f400631ec4450324ef8f9edc88bd49990f37156a28587f82b970a1f8dfbc1ea7a0b0e76da579fb2c4567adce9e81bef79339c2a8d99ec41c7d186a94cf6d6e66fdc14ad4d941af56ef7fdf2380187d2024f76cfacba5e95f30a2065d820760bec953518c7d3d763221cd050ebb46aa9ef217ebe6f9fb4ede7e93c74f74ffa116705874b59973aa9418fa92975519b85d399d2ecc27394e09fdb1800cfd39c12d343d5b7fb180e9cd87c3d7ce769c508e484809c121ee2b18aced67587d7e3a4f6579ab3634a3a4dd08867fd55294b823117321e6ae723001d7d03f773edd3287fda5285b551d37dc41601c1bb519b4a21e22c69ae1be0a0e07c2c3812370ad616dd97f17692ce2ea131d06b36f59eb25d9ffc43cdea874c6da89a0f1df798d17bf8e26bfa44184dbb81155e551446f1883fc797ac5054889a3b5a627742ffad9e93bc48a57f9a749a1e3f62021143b43162402ce530a9a0a130fd50030c7526c154ba0414d22ee75ed0493b610f6d345094895f157c17f3ba0feaaba2b2077edadcd5e54d0c7e46870928e95708002dc93440ae25215f3ae6c029e3af3f4ed738c1e2e3dd3a7bb88c24db008a7baedab13056631de954a60b66bf7ea211c8ed0f85269538a667dc99cf825ac6d0d39f4d358908b4c53813516220e002c68f9b1b78b497bf0a20875774118bb00227351a8711e62ab2c3387bd31f6946111f062e911809670a2de8f886cbeb059c83de51c10000d26e810cd81ed01e25e6f5eccfa3a4e53fdbf419ff26f2fdae47e51581f5d2abc71ec19880224c24f8f91cd49a2de1bb1cdcd59131989bfb75655fd1e699316dac6f0d93d8a0a28763af63e84f8a4961ce56823d91468a6cd771c8d7fb34cf33abc49f97a4d80a5124e5f24aa75eec6cbf81f1d08138543127c5e2382524de67d4687c6d3340745e3091bf289fdfc0df26f9b0ffcef408c49f90d76d7e2b55d05c962d511b652e25109553c803cea2f8941457a1bcde1393764889df7b6dcd84666e3dbe5bf4d308a3b6d09ca1a21af7d8ad0677b5e896277f18bf3b22af6c79f454c760dff634c66be133b2c0f8063c02549b9dc029a0f378099463440d61c32904a8c47e9d640d1bec1563861584aeaf1530698b34011265a28940f1131afac952d3ccb2a80e4244d4b3ffd1881cada4b980a020cd0630bdbfacfe986b284350afb6435296c2b302240db1a280ae11806879665f6b82a985bc5b02d3cf7295f9230d93d8982321d71ba2e0b92b91b7fa50bf5998a613ed4c240174370bf30b3e879d0dc3744b9ffcc4b704b59e5bb5a5102d170059da06f9815bd727f83e517bc99e261fbfd281d61e4b9ad513a75ab08e093052529fa9b8f5a28a4a58343966f84d9dd2f1cbe9b88220bf3313b65d8f076e8c83fe384917a01f2c295c0e8ed4d5461c37f4ba4d46522144c97e73357fb89ced25bf408aafcb67267dfbbbbab54028dfb97b3c477b83f4b7dae52a5103d8251f7fde08f90ccfb8d63e2d4bf60765a117ed8d0384d5e12961e35b22899e1855203fd6ca96e97059c3aff4636265296b120a0b14f2fb1cb93c8410ff462cf4988dac0360ed12c97dae6dff99ed5362dc14338e184571914ee5cc40e33f79fadf40b6d60aa64135a21795f36071f4511113b0fb6a08e7b27d12600c67ec60b24e06eba7a39852ff89d8abac3eefe1d04d76732c4346f243316cb016972ccf7dbc97d83e30baf9ac86964c42fe44ba95e62a52b6b5cd2bf85284b7792368504ad975153742b4e26efa21f2dcf6bc5a4ab452bdcc835ecbe3b27b3c80343e32f8f079182cdc8f4a100db7e28c0c86a8cde273c347f8f6d548d2d309838ea77f5c7c644d3f95e2332bf6a62267e8dbeb6f2312628e3ed3cca23c62e3280698734faece7cd44973b56540128f90ad2cf598288c88bc064849dba68c47a47993f9b2ef43a5921c06b98142d417324d2f2972ed7f237879bf7fc456d7b8afb77f39b4dc70299db247f353186798eb8445ecdbbcb19cf45c7a5e1af7d262b518e99518750dd1de7cfc45c3e0d03e64ad51fbeb0d891f1647f9e09bc8d66a31aa828d9d5637ecb79bea5334b22bd53682871aa681adf073273e0582563d8f373411f31368c02e51efe8568364f91bc576d4802d55ab69a5cd866a99002f5f41fe698055141440abb4307756f3fcffca4764894afdb4ed70bf589ab078fa895d794e301fb3fb9604ed4f2acb4916c91b36f3f691696e33e005d436f7a93054a8bb36b34ff4ec8132fde92d7ab99c520fb96444a86ec70885ff454e3278342551d2c4d7dd96cb3c4b2435bb423ef11678680c0bdbf7057e0241ce821ce301256ac30bcff662ab8a5c63604d332810e4495821bfbb0f5c0038a350a5c5651123bb93fcb964c53d41d7fea09338be01613169288af09c07dc0044aeba82154e351b6a00eb1a74829761664119aa9a6660153dc6b8d40296fd97c1ef7f29477b0e6dcb98ef1e2c98eda533422a025457e01a065243ee3dda2f2891b5d67ab4662a7b35d4b04c9ac5dec0c2daf06747ec056c83f2535962cfd158609e72ff029fb9d1ed0c02cb4e354971618b2680fdc9cb0a0a532aee11f818bf9bc3412b85c34ae2bb1466b2072f92b99b37dc818893e13b88adde30e8dfcf454e90cb74bb157a7be7d6e2bdb78cb221262a4e3987b951e140ab921e4b6e515e119201cd126d71f30cf150b0154f6ca535eb9414666390f57fb00d277d5ad57b3cafbdcdea5913ed49370365677143ece45119c57d6bc6e4ffbd1a487912e337d7dbca0fb5590098a6e340b46687c97dcb30ca60f177d1a1376e5839bfdc0f6069bbedf2afe0173322ae828e130ea475e12669b90a6b0688ac911a59ff1409b8dfe689d8d91a6c0c920bc95274a67d16117cf3e346b599fa6e789a500308bf71128df09c137dce775f0c08ad8e16bb44a7e331ccf470596394a741148570390d71c604fa1f3f48e4da482b22ff0e9f3e492480fe69386310caaf4bc6a75ff7812e9d160811a086a9553ba238beafa7d724ebd96f191ae777cd90eeb2e702c0a4a9fb0095f76bdf9895015e0cd493b1c772ce3390e5754e3e6654f930cfa12a8153774dfd602d3bc303754f490c583c31c3f5fa27c828751e84ddc4ac8c8aba18305004d8b1ad345b95961e3df3b875c07b066f03b8e7c52f8e45c07ad4ef7dc49c7fb1273258055ce4576b66b2887324967a254fc96f84158e43b2a67727d6721e28de9eb97b142c968be22b66347ffc5889a23088c011462be3f8b6fc6f99ac4b35b0e579513d08f4fdf77054095b478bda57865e22412a755adbdb0f48fdeb3bf4fd11e6e6fc4bf44fbcd57b536d5adf3c34aed2fc14945b5bac43b3b9840afcaad1b2e14909886d88b4141b766a1027675475ef1d09e2fb5e7dc23fbabfb0d508bf00f09a7e490847988042218f30841430ba72f130b8c08e03d11d3ba386496b04b519f52ddd5c93025333e951b5b11b6ebbcb3629748c15edfd8853a0d62291980f79901d4b9f312cf363192cf693f675dbe708ee4eab7b954035d240e8b8957f27eb7442dbae201586522564e9e20a1e4f96cf41b2c5dc585fb1293dcd8fd4e907ab0f4ec9759fecd9094d9a6acbd4ee79d166aad3a0f5cdf08236fa4cd0268965f590e9bd0dc451fb9162e7536f349f7cf9a4be1aa8c690e80d7754d6372d64bffde24ebd63313fb7cb1df7c7821bd18de855ef6e1d94f5c9ddf793b463e4755a52ba9083689049c2cfaba6420838a441e7d31ee9ccf0a142f328ce1f44b9455fe87fe43bed38e302a442cc5e8bbc5b68b406343220b1d5f09c6a23e28c9f2b93ee10fbeb21574ebae754897333a0760b7b6cf66640827844e95ce615c22d5fcd2b0c6f62b7fe0c55271222a18e6bfd5231c3ebe5b18f265eb4e027aa8b600c579bfe7f480f102cb2f39c0c3e1c96ceb2e596c32a6d98c8888c7c1b7f674ac2584bf051d75104b8576aac31d4bff01af494af45f811651bad5f30fc6a45f7ebc138b47a1659b7af6aed759026831ebeae435efd55953c30f56083c16e675536bff22b18caf39a59146aa1828cb11008d9906db77a57f4f0ec87babaa5006fdda38697b0e54a075a93a291a63357ed99c9cd4988f90eb2418bcc2c3b89c14026d84d850eebd2d5f878c4bfb60ecee020e838f07923c300e91e824eaf7940ff501e7e41c17a407c56f671363652edcde218f0878cd75929203b3399ce4c21e119315fdb6a36392cff2aa8d4f4ed0da39a4cf11af4f4c9518847e72a328319e2e93af4afe3797bf8e2cfbe3795cb5ebe1cc8d0dbee04b4b4e9734a7038bb670568a33c6e7611349bb2ef1dd3ebcb804757a6b9acea7de2bc0d44e0ff847d794958eda1f768c974858a08361c7dbfe71875a9afafdeb1591bd6c734b4232b5e7affb8d8a4c817625708fcda14e9a95051e9aa5cf1f3797bf8e2cfbe3795cb5ebe1cc8d0dbee04b4b4e9734a7038bb670568a33c6e71a2da2cac7133c1e0944fd888ac0890e6cc3271bbfed194e7954df3573e134078f044004c24b3e35987783a8262f47b37132e59a3365d407ec5e3d217e8762f4adfb8f958ee38bc5eec30366e11abb7b2817ddf90b0dbb4d76a222573afe04fd9758bb11024d2be2124a7ec10af4763dbcfb4f833ec60182b1dbad3d84de9ceefed388805a8c36bcd8380a735ce5aac05723e93b74d639958e144fdc6127a11ca9a2ef90f3a83d79b257cd7ebdfa22d9f47fabdd6f54e9ad946fbe9320f13914065a8b0553348de2493c031636a7aec1cd0bf482532811a878e52b94d1b8d11f918a21f4322b79bdb5d3ad4bdccf5f78177399975d3b4f44337c7ee0506485fbd418a511aa96327a2f87d4ec44a9adac9254c1ba3264983faba380a396b232b3000d39b314c6351e11afeda82b8471a2963d53725928427747b59693490aeb4ee75fc8a771a93a8d7ed0e25debce1a16041609b6f4eb19ca50ee2df67ad8c5ac13be9396fa2e5305fc26f5a1e7a076693006c05843b356061ce88bf6d0e4a06c22c3a8d199678c20d1644d2a5c8530fcdb5b8c0e632a2cbcb17a1c0db90d92ae7e19d9a6c62c40934d280f1bc97ee8f143c08657be5a96ef1c32cc4a0b3cfd2c54b9a8af1e05f801ba85a7ac9a53b7a6e3f00c8331fd41efb6b8a38c12d19ffd6522b1fa2a2158b8d64576e1969f59f354519bf8650652d175e26fff09fd386592f01351c77a1a8b484775e5f6c9a059b26bc95acd10b5c463bf9d7509851c4e35d1e8556641e4bd0f65acf68f83f74b4d3295edc561a71dbe9fc9cf5443099867e948e4da7fd540f399b6274398ce8ee1108acb0eea07721ed3bad2eaadd91f481b8f32f5f68b117287f41c8b666b4d28070cb31a244d1915e781bb4a60f3ccc18078a98fcd7d4449a68b518fab54183fab91e84632d4da207430a2bf198ebaa6a53a660fb4afb9a10fa20c804fb27aade71c0c6bd93c20022bf02e88e56d49d4a14bfdf7d8007666440bb4d4e12cd6f4bcf40b6fa280faa8fc9d07d230fd8e0ff215083fc7c5a9705740a29284d45cd5ad3180719a34001b140fb115fc73fd2958dbdbcdf24403df3348e2781a0cf0ff9e8bbda6f0c2d61aa58470cdab30da7600b4b9870536a7f0b6c163c39fb5e84c7bfc92080debce0e76d7ff706064008f0b485586519fb249178e20cc35b21dd4a14bfdf7d8007666440bb4d4e12cd648cbd7901059938bf88a7423de5631faeb0bc1907b5e21fb296ca1aa7172e5c581f1850e61c188771fea08012f8c5fa02c347fd1a2da83bfdb6882fd34ba143a65927909f921ef283e6ef1d3ac807d86c473eca18e49fc78a4882fad32353e3161c7d198882012ce0389ca712e4ce5a229794d7ad901c9b94c9877e2ef597e67d320a4b6d682c9081b100339178de75fc23336028c21259d0ef8cdade6c693c6f2e1330085bb4f1683d9537ffc1bb1834e32d982ad70302c2bd0bb87f42cf43571d00952a0c45b87ebe891c670237ec78f7f84f9a3d4f28479662930c7c3622277414111eef3b8825fca1b0a71a674a9ad881528f96f2603043cb47b6597370a75ae9463ebd71aaa544784b181c907c6e5d636fc0e55232849a2a87f5b2d933b6bba1525dc233e07dbd4b0bfb1013d0d5425ab92fbe0bdd6817e912475f9ad2fd4c0accff80df3313011208eee50a04b3fe12227592f4ffd599c2f7745f54be290f88ad071d05a65f8179eac7ecff2db04418c0e639237184538d47f6dc98b69b9ec997ac321236d52679cd5b43271983b3ba40ac7cd49667a607ae396c4cccb2d59bd39e892e9a3a44f8c825112323901cfdf5320559cc78b3a8b5411c9385af38dc34c29ad32d052e97a5c95830905d1d6b6854ecff77946bc5098bfaa1455f3139dd55e5e99f7e37bc0d81f0df95751888c827ba9e8b3696d66fc127772b33dd0dbf1f65a4d901b0ff1159e9530e2aabf380a17f1f9290e5b8b30807fccf30a5ce8905ab8c94e1f9146009ec602473dd838faaac90832b3c3b4644390f29859079d0d5e39ea9c5fe350bf56e5f187334a325564bde83efd4f6eff5c2eaf9c7ed2abc39f504d5cc0722be3dae00f0eac07563082f4e63551ca4d36ad6acff1576b2d5ac3bed98c9f484d1641d61681f24360bb512ba7e933ae23779186df85de5f9693265b3ed0fdee08a4f154b2bd6a08e226d4739c45e228d8bcf0ea8a2c204f439e00a818b81dab6f3a8b0f57f2c9b7094604fd114194c1d34a4d6ab78358b0e10fb5e7647750aca7b00e8398afe9477448bccea8a3cfb439c777f7e88c724dbfa0fa87544f5d3fde8b75cd1d605b71e3abdc09c817df56cf2f1c6000347604f0acb1201057c41b3307d7cc93929e33a562754d75745dcfd12f7318cfe1809bec02cd1e47acaafe054f340e6544ff67545f79a14cc85a33872d4209d974bece67cf49dea2921e339660d93053af349c5d7959f87a9f55ac874d34a560bed4a14bfdf7d8007666440bb4d4e12cd6e78fd3f18c9e6c580c391502bcd9d87a61c4cfcdff139446e0dd8f64f55931a3f1d2e8213055641093860f62e9d93cb995280e65ff6d29bc471241582691d8a9cfd89182c3dff5f51da2f247628ad1ce5669d8533da4c41928d31c8a51ee6b1ee5225e97d9818b4b9083fb23c8ca19110f15e6f162ffc82c205f09a3f082f46ab949fbc33761455aa5b27d17b659f9fd6fa9b5218770d0be3f8698a317448e1165b6833c95f622da39ecaef37cb379b89cb187319ee9e97f1caa88ccb6e14bf5ecfe46c854fb96cc65c518eb5a7b1f9de90523d454496879035dec525990059fcba581f05e10cc4f784cd5c9bb2421c152fe6c4b1ea76694b9b1e8b8748bd01fc134b0c8c13c335aac286783f0e4fec3ad8621f18180abdc26a394082e7dd78c52f69ee590c7a2f057d1237700f8ab47c20caa1ae3df1a020f4f71df521d8895883091d5c3802385b08b33b8b6db627b0abdf36990b9b698cfc159514f77adb6195804be79f045f19e3a361303295ad1b6ae512519fd4669aaebff7a17546b13e7240c22ccc91da3faf92ef2905d4dd7316dd394a6e25ec0a5fc1922755b9e41f25e0e3a009cc6a91391938edb16ddfce4c7feed18a72cb63bd793f21b85dd889c81e1e999670f20b49abacb3413e30228e3b6447049f964a61b60ef6b646d7e4d07590f3f4cc0d9b09a2c5656542f4a4d922606a95c4d71f691b796e4b6b5763bf7584192bcce08854eebc1102d0b17103d3217736e3cdeba0411ad2d7127f09d261a2b09bb6ec8617fd5320b9df6d63a66b0b0e323467273372a41406fd1bae96723b7c8d4d4f0a4215404e0c866d4217c84544264f5dc6b7ed555e3411898b18bbdc4284a54887a45c28af02c665932df8b9f33c8b98de12763a0b4be2a4f1b610c582db62d699ee72849d34341fca048f8e5f0aed7c0dc3f1f2bae249d7746727cce0772486e6a3c61a32b0f6ffc559f7bccb04469e457716d074dff4a243218e2e811b3d4326d7978923fb08c032cc6d67bfbf6f8203d02e14c47218e575d0b1e293707fd691c6c5d978dce16d1b99385f24fef6b42a554e4fad4803e433252790e27bc57817021ca6979d3fd9e60b0086e89b21cae55405a13eb57983ef2979b62ccb669fb55d904805e66c3e46df95dbdf640c9c28b46aaf33c6358a788ce3b938c4b96f692096b7cabcc865770c1219a55e336b912b73ff9a90ee3671220f322234c778ff54ac70b77e728468e149de67da05285adbf89f8164cbfd001b7170eeff5584848dbf0273e0994bab63d10794f2c881a89f7d98aac950ad18130abe559d81e606e3da06e646464496d94e3d91359ed307ad79c00cddeeb4e9f40ae830f57f866d506dc7c468ce1c5fd4ea0ef51baa61a391c8af344e0e0dea082e3003773089faa95447cef9105f79fa24d26f5b79b54b104589ffd07718abf3aed99ca42f87cc0702e972caad08d069b900d0bd2fc682062142107e42a295c630069942e5efc8f6b24e497c7ea18e3f064aae2bc8b8e161596b1edcc15734136ded01383ff2c5ee932cbe8dd8769560e4c75a4f2ba0df0467b90df4e9ed4958723ed2a5306c4fb4444034e5294b3c2b79b4e8747e569d7e523e072ea95817d81d7cee0aee37a035fe6273105bec143deebc4de654ae399daf300e7d0978f7f5913b4dee903419114c414ac8ae952b001cb7daa657af72bbafc9c495479620ca189abc1c8fd61ff69288b9920e2c30efaabc3a612a9f2f1c02c4ac041ca292e9a8870af5cf99d540cbe21eb7def3beaf4397195c08f18f7db6c31417dc0e451bfb48f6647a2dd18541f2404ad857083a51e035b70a6710638a3d3bb09cdc856c07f41b40907c5b37f11342b1ae1f6454ff30fbf9f190cc72e03220451be311bd9989c68e6d303bae7a02f298a3aac952e8824b11346652b13d9ac5d52de69603317fb3450b17d7a45b1d768f2af4f2b71ecb155e63f5293aa58f865e7ef05ef4bd38b745e4f94d59ac502b4059c8e8ebc0f8e58a3e7633d5098aedfbee753307a19af28bb460680a21618885a06746d36764f50fb08f8a66c50242c8fcb18445538334575c6d714a9dd0dfee2598a556405c49cc8d83ee4c28eeab1aa2688733cb7ceddb336f735146a36cec03821b437021d5d4af4b86a16082b98c63df8e2d3dcad0cf0eb5d6dd4ab402bb7765bcdc971c3b8351c599c04f996f10a3c51a158aee861f680821cd8e0a36966bbc8d6854f09e6d3a69b5c1a1371f16c3e3ed1813f9710fc2e62218cbaa845c7e1815360a0042a899c9edcb8684689f6f579c9972fb926e561ab268e4d7fb4c0d3da57fa2056df50bca876dee28e3f26bdd140846ba391975ee33429177f0a15a6b9ce483c95e4819c7b5ec488e625eb141002ff8127cb3520c3b311363e59df57eca924fe08f92538239191372164dfed1b73a1f2c1abc3429e4044eeb1f5de6f4f619311440cccd867d78dee54f5588bdd4e851b492fad74511692d428297d62b65390b42e6a149813a3b43bd04197765bf170ddfd5154d8b3a56b6fc949ca54ab237411bd95aa699aaf79eb271653a6a29fb491967f762aba7a99b56b0d2ad8b6d41cbde506d06599436970e4b61f2047c493656fb8d32054987e67de799a1e80e9c0e9d49418d023fabe55e667f782990971619a85518936f6d27998d2b94d0ad803b9c6371d76db38b50591a3ad0254d876dea934600b8d2c47ff7a3eaed3ea94a66639be42937652c489627e3bd75b8323415291144bca728953be601f54a2cd299e2a8c7eac72ba59eb64da93c540ef932ca5d6a43e41ede95c7cf960ba308cde8809044fcdf8dc3e190bf68bf80634f149c9086773adf777480f652793e3e0731a0d7549d59982d2d1b2e1c0670286e2716b9802eafdeb5e9b8e9e9db1f63263dc026d96a6517d2c4e35ed5d7cb1e73120b85cc0698d184df326ab2f33ae26f8baf45c49a9cd7f81722f1d602d91cb83cc5ccc06ba80197ff156a4c13c64d59cf019eaeb19e3b8d7c160876dd7f4532dad0ace44b95fb065a822bf58825984135e26dba13dc0931817b6e229e732da81c64f30671a82217d2acffe6cf0e91a0a178b03ef00a0613f299cf50cca0b2cc05f84d30c84a0c23d76a0982f7cf77defdd480c87c3b6fb52ef64ad1dcb03349f6454644341c8d4721e9e15c0bb22f67256f7560536177444ee0c4b06d53b7ba0e327a32687bfbec5a924a9676024484d83fe2dae8e79a3b55c01c563221b6c5191ccc39e2b8f28aeab04f1ffc0b825feb6e540fcd169e209845e54b4aa2cf3aefa3eca794d5a4c18e600df1a229044c5ef1b3c3e1c00c660e1598a2adee30dcbfce99bd3910f08b63b1c765d0458b74643ad503347e7de90626404c6b0a395b47a2d7aa7fd4db7f44f103fcf4e20b50078c1aafaa7ea52c074b9590a329ca836b913de0ba4a91e4db6c072387874ccae92d69b0cdf2294e9aef1b20d481f1e2d432a24d07af2ce25e892d44ef20680753bea0e6879f629a9ac7dda939271060baba67d1e34b8f95b62235308f1a16cac162cc68c38d4f88124616d3f48780e5a4b0227284069ca8202ffcc545f69fd087540f71a1e53f3817041eed18715adef5ff8849f3070e3e60f76bb66c3038e7db932297647c5fab86bc681cca8ab39fb3d9f3898557135f7db9c36e051293ace9e47be9ae06bf320ac52ac07b6a1c9925d9e241ded06a3060e3e26d1b8b7b970bf791769074b895005d65db19924c4c1ca701be0b994eb46ca7aa8bc1ffefa4172c375d4a2f432669aed87a07fa06cd7a78e9ccb3f3bd5d94409ce878a458c5986a58e9f3a0596e4849a2cfdcedc825c86123693a5ed9551cf5c09fb789975cdc5d062eed3c14ee9e2337365f1e34ba664a676dc25b2cee3eb63d84378853d6bf0c7a301fd09fe48dc4b351a457ed29d62e9dbb78ca17586a0595feeb25586ebd7fb56007a760ac05e0bd645add1d973f8d28617f6d528ac39e50b4a97df88c1b03191ca8063def044cf9f146389fc67d95f86ae5921e335501e096c4f9b0c11c90010c6df58fb0b34fa4870c031a24702c8d04851354a420079df6293f30abbd295951a691c790b8599390ca3cac56b634f1333699c728710737a0b6ae960a245473390c3feef81b46d44e21fd5172e0ca7aef221a7fb32f48b33e42adb82e02837f3d28a90f60ad86d91401e7ed44fa19da3af72d57dbd414af5c82921bd7521ae7b7fc5253ad9d1b9c9549e85cb522f2c9aa0b42d33a827ac2c97f9de7a5e4c1f95af2fcceb77296a2638675c5ebe71b1be9c4996503e6502e6ec3c114d06ba9e1591dae3ee603e2d06d14c2a7b0c94aadb76a59a11e19609dccd0a396d1fc3ca805adff9cf4e5754c02ab20506cc584f345d0ae8acdca5bccca17c5774b9148d4fec6f988830659b3402f83c3179a0138034e5045496ad348e71cd963d693454a725913bfc6ba92b28c361ae6af8d446ff1b8bdf01027f94eeff958e35b17bf932bb08db69b22a07de541fafbc76aaba45807e2f2bbf5caf91530e60d4ded4c61813c4fca7b0d2fb7bc67d170027058d39275aa6cae99a68073d87886fa3067f53442af376b2511f1a012b5df89af81d4de123003bd9ee0e95b6b37b9694f0fd459d194bf24229a64def78e323faab7d2c8d5c8a2f4a565044ef80b0c582fc8a7fadfda0bfacb99a7e14ffabba22f16d36b846e2426aea6c6384b84ed3da14020760561660030e9ca2f81cd2d590253a7f3490fe621dfcb8a62609290294c615796b76cd1496450d1bfb2f8d398ad2f1d0c484bc90acf24d02c3a5bba112ee2d64fddaa8ba88e3b707ed246e5a38df6a8d39a9d67ee8afff04758a1c3bf203dd6e9de1f48df107e262db477acdd1d8b10cc707fd5b52948bec5b2268ff7cf4309fcc40edda9244e35441e3e0f18e0641d74f049edb46cad4605ced081d05a2b00e03177611801aeb996f1129e8a1a51cbe6d476e26e06c913e279aa4604ae921e9f0fbf96799fe3a434812d5725d6b14fd112706e09dad0cf93ff35d02eb719766d21e87b201aa28a48158c5ac02e853b3ab9a3240c1de7770b0190dd162d26a847c274ee6d66a4ba26d0e6846a0868ca39033bf14cd9e565e6dfe4a5a85bd9161143f29ce5e5e0086136982128ab4a6a0aad2b2ce6533408d4463f87f2475e2c0aa5cb1bf1f4f2530a67912ac1b0ce35388919344c4585123569237f78f76c281c04407b8f72bae73e090c5d0eaec4dbf7787c9d5e417e9e632873e36959b498ff52d1bcedea5cb02f879794bf4062cb135a5460ce6107124f6ddbda8854a1a47870aa7b524b523e7ae7d54f045fd7f9b21ab49afd56b30312cae7a8adaaf1b29f4c66ef303fce6a066f1caf110b297d2017176f3f3d289d84f69d9a8e9f50d0cb280d844f076a8336971e4e720a37c520e99e4b9b14382b54cb140972ca22db34bcc6bdba75d02ef98fc584c111dcdee71859f9b5a9cf287443caba3fbe64a82cd982bbcc7a6482f843234f4d4a8f28341a0ee94a96394802421e5b310ec423f3334bada16809c8c9908bdbe77adbbad52e536e7e2a04295fcb6e559b36f24eb9838de2646eeffc379016f7ce418bd41f5b0a0330af894879993a9ae7aa7bda67f387d01a37136e509ebb6a7ca8547547a654921c117d48dfe5eb3689786380f825b33fcdab0086f7127e5c8a7bb7baddc5b3d535330c6e9a894f40f35dbde8c7f3ae6d2335a9835338eca068dd8c44e33ed9996f84a34a53526441586ee419b5c14fc3d2b0797d488ad6df22500dafaaf6236fded2659a0f14913326af0476e61bc96601b6f4bd9452a744a2769c3ff1f6b5463577c17994a13f71fa03a129d9d56825c3d770bf028d5cfff878c0d43cf3ef2489ec1d6f42e00efc9cbecd1b5de9f807e21942cba922e2c952111fe3815b021dda496f311b2db8ac1bbf770c703f1aa56edf23482e009877247a54451013fd2950577f3d54c484810d63f65a2eb4c00126924b0e7002706e9be537f70850897feb06142cf118c670f8fd8925d8b37014efe4dad74696eaade3035fe8aab9af24b3c360eb58470b60a14f20d3526081022e7fd3ffce63b5367cb9e8a123afa332528eee28cbba8c43c434ece58d2c62a05907dcdc903513450d2c0bd2d1fd10c0f7c143bba90383105dcb2e4496767c7f602d384f047509f3b3ad82c1d2d2dee1d5b705a13cb8e4722f7fc7ef954309bf13ecf164dddbd1958d46083ea29290626dda4d2200408506ddb8606ed7686ff8cd249c62fc48497fef2eb1366377688e89cad8a0d1588feaaec683e0895f95982820d42e04f0249d9b8d36e430187f633f02296ee730c8f67a815567ff411dc461151f7b712ce276f540444337c055ebe767e8adeab8b2ace7b9063e65857532c11ec4340e49a1e8bdeeb92d3d2e89f33d304949336eb7dae22d8f30e0a8da2a4c55855a7b7777563ee5cc77bdf9d2116557f2c3d83396eb9ed15a2c8c207f1c90a9059fc4e8bc3f65afd0f1d3e0f4ab2fe9f90a3b8a0103b3d5b79a37cb559dee97b905328e87fb12747e13adcd8f95ba340bd58ae339e2f4b64f523d6570ee2530b239520f010e2b8439e51fbe6607a4d8eba456b1db20e36cf688505821ccd730fb063d65ff33055aea9903fa009dd1c8b1383f457722de905675eb44473a447eeffe599178fa4fe2bd7c9f1cc3b6c63298e9f151791e8d8db97ef804bb19bfb79317e9bea428848fcac605eb8bac3416035f41e59a17237316f752620edd553af569a3544bc72a774e55e5693feebed7813bdb0633ab110342cf6686a5cbdd2e270553073fa2e680d623f4d6c637ee95a8e43447f186e6b3aba476c97af97600adc3e843feb8401fb240b557391e3561cd8f74ac6eeb266716eb4d4a66da548e37a7f7e59b5b511c1367c59c20933cafc5aea1b409b3dbb0596805e824a4a77360a022c592e39c306b4b08c6cd25a14f240e56fe780334c9ab995f56dfbd9bf8ccd265f4e5707726cf31139bafafc66902052d49233d8118f894da94267308962737125b5007736ac178e248d6d43ee2dd7b42dba2168829ff10cf15e07a078804d00e75b24688373826701eab0783e5e612ce6813e5811b369a4c812f8297d56e1f9619519b27b47cd34570858805e77b66dd620097ea216a507e6054bed90aaf3bb393c6940fe71726cc923d46f462536494260e4387e3f70f82bce099d10193529c0e178d8183c4029d49d56ec26da9376d5d4f1469b775465cf392e163faa42c7aa1ac6ae49f09cc7dd88cd6eba4a3f73d5ed0a385f30398b64388d251cf13ef521e2276cf224c64823d0dcda0f5cfb4484b527e3a86d7ab9825332ccbebc5443249882f1e16462c1d49986cb566a719599b3d1581e2b1f72c0908368048f7cce962fd29ae92697592f30ae7fbdb0b75260e09751d4c8f8190ad7de5417cdf16aad60b3cff9b217521dcb67ec9850a50c9824764da754984a399f7c603e5f2d3f98300b0600bc34815dae9d1c47916f150af26fe9ff1015c32638aa87b270b8350cc59c6e0cc27336ddac50ad81bde879ef58c404fe94589a066ff64b5744fd3b6c1e4d935bb2595fde87105b690f2b11f022f5faf3851042cf4d2234c235bf4a5c822038d1331453dedd9413c16e86c2430728b02e47b9792cdd629e1b5f83284345332cf74638151820350bef32da5faf54c3352fa293cde5aa7ca3982308408eaf31e1c9248ef88be1d34f7c64ad7f0ff30233a7dbc9a8b0820436cd37f94a02351350493ac669583a612ecfff2454cbff3acf90b3c649d2b901ada176200c3693cde0ad50dd87d507816ee2ca21dad3af95987f788f19b47b31f67c5386bab72a74d81a0755836ba886fe8a3b3bba374f0dd67f5391969a1f25aed90b9c1b8e89c2b073acb4581a28388e08e3000296c8ba219c46d3b3cc8057b481cd89e8fe184c06efb335012f95b941a316d28349c5dc893017d52e7be8a63dc40cc9d4d72d77f45fb134c1672d8dc8634e4948656a70a5989b0d19d1e29d069e6bb6731805fbd05023ca1eae70c4a5cbcc8b83665ae6db0ff6303e72e250d709be50baf2d861055eeab97730a091bd62a26f7b657ada78fb81bb6903c954ec961abcc7124b7c765adcf1091926ad948d0945187f887852d5eda0ec8c53a82eae4277914b52e2b07d698095a3ffc5cf9cf7148723761102180e2548058947b52716d1a74036d29c453aff0028cacd73899387156194e386e829b40e24c7019d1698f9a839262590419bcfd7464e0832bca01934b5568fbea00f3d19bf0af21c26ac9ff3a22f5d8ad77eef7ecae2bd1554af3ebf43619c7f7d8de8295778c7021f918453681bc9e3e43e59a6a480e331aacbf5755aa2c70ebe6d4c1cb0d0b9b7a81a98b5e8436acc5d12cd720944d4028ece9ba9788ba34d6f19311463595de73a5b413e7d7d63819c5453a4c108ecdf89eee59498016abf8c0e8f86233d913a97a775877bef9a6480134efbe9f3d7420d5c593914a90ed6606de8a6d8e9fc1b747e8ed9b66b8fd9ee9c919f30ac53c764bb6b179e345992ac3cda8f2f85e62945d95a9d86f7c6f57fb5247e1478c748fb73852040f8978d7cdbbf82e9c269af585b2809495ed4c125e33b62c28906f497c473c47f2cf5c16b4f6bf2c2f505ce7c5208ce81fddb7e059642799fd8039b0e3a76859f2049d734b13b06359a5c9f6b5a1f7a0ee764e7c65c08c3ff22a96874ee5c9ceb5ac3723f81ebe8965128aa43e01eaca0332884ca2c7f64b220cf7554de5c7bebbfaf8cf4684bfc74cf11256d74edaa77ae08c764ea96b88dc40a0fbdb8354c11f5e3da062b385b2746e243bb9bb0e05e124f1796133639ce24bd9117bf040f5824a566eb5867481f960a333f9a00a338538485bde677e9afc6ec18b58ba1a7bd2ede1cddc3a92613da967d92f96526ef94be80fc6385a3c10db7d953172d86c5693762fe268a56e14ff5124cccad75fae0d33a41bfac2fd52325d579d02e0245a4492ca897400c41354edf61c8d28ea620d5bbc637df2aa8b0afe2a94f62ae6fa13c19d284134b227e56a31ec87c900f48ad629b48f927b81988c0f533154a9c1b8a5fcdfc09fc787fe3ce082956d14ab81f3516ae39abf8f1e82773f621780147595086117bbfa9b2e9e6184f5a51dfb596d9dead7309d2a70fd8f99606222016183f73bb31159e7694dc9eac5a5c637cda1eb1927ee77e3e51c016d7ecc2a76c9c56415dfb0fcdb5038d4111f41aab34586725919f45488ee21bcb3551eea2149677c7b2ead7c8ca8abd88d82cbf8b0b5ffea250c4f92033d296dbbb9f0ae5bbf77ae9d49169a55ae005b3de2bfee63950deb04662cc07981cfefbae49371775d0167cfa0d19d4f6d9d48fd2c322d2162c436cbdab1e8a14f165eba9ad24abf066f699b407e02e5bf70822ab2c1a1af809c2b97094fac6db2693034a214aa60d4c2f97fe4fde5bf7177c5291b6d055e34e8b14d1cbfd9b413f48bae192381a676c1229a495f3e59f99f380fbe5328135467bf473d2d0cbdd01e5705ac134d16bb0f63cd090ca82e1c415b0f975125bcd710b4cd96709448c30168064ddce6fb3cdc5ea069f7745c194ef6150d911ef03b81351c5cc68202d5549be46b830fa6bf2782482d2f5542f6e041641f9e291f87f00002a7590761981808b3829ac18dcece694b63c2da1c9588d9187abd12a44eb7c71e54cf00325d3c959b5ac471a561783618d16a764843d251f77f60313dd09b24d3a39ff560c7c86ac6195d38c97eea9bcfa4ead5741c547a438b4fb5a669c51e45cc55fbfc915798807d6e10ab03821aaaa9b6ca7d958acc2b06a2f58e3ad8ca684654ae308809b45b642b6d574ce8e09dc12e9fef0f3ae007ba5c5b744167b2e72cbf372b1e92a10be62ad2ad1d15655b410f4edc5b2992d83872a6a313633e6e5b5a1ea0db7c1f3d651d0fde5656171b97be134612944541aab5a720598c9e90d2321a1a00fecd64894fa2384d87bfc05e98f072b905667df68a059cf1205a7c6021bedbad68686750017e668684b7ea43869eb31a703808593c7046602c23057d51ddbe6257d83705f326698bc9f9444b02ca5deccf56c65ed9aa73b2564615958161a4e9ba1af3da84549dbcb5e85d46f3079b81e7b5cb160f757f4f24da9af42013eebb20178c1580ea7a707f2828d277fda3b12b4b310a79ee01cca2c47638822b87543811473d336d6ade377c0c5e2851fb1e82a810e30f0bbd4822fe47ffa0f1d6addb0533714a3e37a5073b71dd1e6d310d91650c33f1c8a5d161724f9ef96419cb80f59b41b7b2d391e4b82ac4cf968f1fa25d317985d98bebe00e99445b53f0c30fc6169081d56b1b9e1a9a30a7c23103e134810cd78ea777d1575aa23ea7449ab9236e81da069d36dd008e529aaf566186d20964c7495b209a5255ef59c1848b67753616e81e7bd806b7418a281777b54304503c87d111376a9ca505ad8680edb3efa098dd89b41aaaaa3b382d095002ff62ea5ca79e902dc158f4a2e3b08281d2ffb9b9eafb17a3a2644f90a9830affaf12c817d1927a043b89ee22bcc093bd4af7040e94224c310380b43d6fccfe8c820b0deb49fdfcb3da6aa8d9093d24ba88d17ef7ff1ececa82d251fc14aa25e1bb3eb4631dbdb0facdafc2c64b75aac685c85bb9197d059f7ab0e66dc8b9fbe871db941ffdd28e71a940c87c59f96790ea1e37d74df11c2e5a3a09f7e782668b562f76711ee7064f77cb903df66ab60c21b3a75b9e0b7e6d1b68075ed92e285e8690c2908340832a07814fb109441db2e98d586f4c2c63a19fe46c413b3db020fc115a69c238ba854d32b24520924eaa36e3bb3ec8969e790e97cb29a5fe6bbfe2d99b06cc0955f1f3bb4c74be55e68991206ac21a0a8d1a5d28cce651d32cdf7c924a4ebf192b0ecb6b6f492f58bea1949b5acccc89af67bbfaa7e99c6be27173f325307f9a73e4d5533580e79f1be74ab8dd10c8e159dab0b47ecbed15e62c65f55211d3e35c9e41051a49728a829d0e368aeec5bdf718fc3023bb2b5caabb3a636cb9cd50b0b904fbf74fe8ec3d83ecb669f7711fd5586f4b071f289cc557392028ad7d919804c052bb5250d891247ed6b651620f771e26a7ae763bed7a6adf56fb74cb49b47d6185fa9d3f582d0dffdf7ad355f5252e4f5bbae00702256626a961538c4d59835100e71627e9b35c67787cdf68888b901241ec047fe5591f7e1d45c6a57cf9f25e16301a8548da9cb51f6874431fe70a5b4e86f5e19ba0c0b80d43764b9d71817ccdb3705a70e03b58fcd95811a52593f2d258e1e639b87ef6c24b35d49eb5a2176f32a461701a2e4a9c3e0fe19a9bdf1cccf7933d825c642ae5aaab8ae5e3c923243ffee0903afefb527ffa30a77cb97c70d4072d0793abaec85cf34ac58dbb7655c60e261bceda3f18fd4af3f095dce67aa7e7b95e30efd0c81b59de8299f9e137dcce92cf04da2a67436b52d2f7f1fcb38ac2c399d969f7f08761116ce5884eca6cd9b4cbc8019927b723df2ba40ae075cf5356f9de4a8b3723caa8ed8eb24647f6bc956d32db80a0bd694ee3b4d4d27a29d25540780fdde84b20c7a827dacfe5a3d3958bccdc3802dbd897da078161b7fedc2f0426db8481f287c01f9eedc8f1dd1ba039a3eb286b35519044448978e0c3c4ce5536fd803440373bc0ad9404d4095793c7020386f01a394b4309ee38681c5474596088ed85310be91c212bd139528ab47d29f44617796b46b539ab944ed1265696717a9bc602ef2b3b9a2ab230d9f19f4d9aca1ec4dd942bfff9136c5456fd4fc9883901303fd32cb01918df414b9da5a7a09589d06b88447f1da0929ba3e1ca543fc77631651a0752e9cdd21d90051906ca7a014a6813c1c209be6b9a21d44a286c164f043d1723a7073dcf45ed57c545bf815e9d4f256a03a1066438c351f0286d498781eef23036e4bf427e0444c68c35924a1228eaa9fa0bdb65f1a25adb821a8ab687efe1e934cdd9bae8335b0a5d19c88f9bb4dff4776bddf3bb9e84d94954b8dbdd563fd4c7327ab99bdb2b455f2e2baa20226e056d16465cef8b4f8023e875e8630b6d14fe2b8d94118ec3c94f16474cb986b89046c502d1053bfd9e8906f4eb49c0dd66749c1ef02d38233ce56ff75bb83c94e015f71db660b482644685358c4074e8f15af81bb7c3593bd875a5130ba1b8fc6e3e474a6310859ff9dac0fbab6a9e22c572fcf31c2ddb6cf9890a7a6ecc1751aab4481de6ca801371ef0dbbafe0f2a89fbb2818fdc4b215884fd448f60a354981afa371681d42d3806009ee7977dfca0e8eef30cd4975a690f825fcd1f1a23c12ae9d1d2e4339a63414ef8b4f9ae5250bb887348829118d92fbde0347e0492d831c0ff00885eb8f119e3210d9a0bc72cb71e67b820a5684d53a7739aa463de454918879e86ead07694906746e08f9b1f652acb0c6577bd3171505d9ed0fafaf11c62e3bd8481166993331406f9e7b258315da00f5542f971c840bf48189533e2670e7292df6a9ee08f97a76a9b6323c4d39d4dd8339c567df6a170036691e7ba9b5b44dcc7ee0702e7fea5235b83af084b4de302807977b87d5c9a6d6a443d016f59fe30313e9f1cd420fe4445c75512d4fb9932e991eb0fe08d21b85e52f11d34fc5b565a8905591cf188289d9e163bdf9938c7d2110adc804ac993997d8991d0178e5567b76077d51348cfdb10b38cbf3edbb99929696a0983cfd3ca325f87e382ecb8823a62f389ff6213a01814344cb37e80b9acc1bee007edf5b45e8bb906fe7681986a9333a1f57253ad55a320df198a93e9a7629fd1ab2db59a12cd7ca5538e253a287e330e17ea248fb227a42857d527d1074100970ca1520ff31a954e7a5cace751ce37b56fa78cb4fd9c90564f45068dcbc43242438af723e158897aa454ab17f652c53f6b79187e0b5e0bd90a160dc98c1118aea5befd91f7b87ec1cf8b0a53a41366bacd0d044da72b8922e86e011282d5c60070ddd64477dd176013d0d818bae23b5126524473141c02929114968411a05a14ac5f4ecb0de0abab57c58f094fd6405ec8e055a2501c3a3d815b5f0066f47c1a31900fdeb68dee6d67f19772bd6a6ad6d6d94ea35cc01723364d92f0337402264b0dfdfecf6302df2c02f2b09757cd886d8749b90bc17e73f226732f19caa534cd00ad84d7d765203604fbf68ebc24387de462d200e0abecfbdf9e363ec545fc2f249b60094ec2f7fe5d48c003db14fd9168008cdef45fa1dbceae26f51b721486333c178dac5ede2843711b3b0fe32069ca6e5d54a60380327480bae7f8cfa8a016bfcfa88466f120f6be3b5dd0286ef2ebd32c5bfb72564d7f0d94672b4a9ee66449afdf36b86f8c2d9121a90211f258610610aecc8ebcab1124754107c833e82c8afd453f5fe641ec64ea6b001dd3fc5a92475105cead59ff16a31eb673e9f6bc41190bbad0343f63ee76e365a41bf89180c6829416933529ac24235c3e3154d7fa26481c67fff3a8307aec79827cbbb2151555b1a4feb353c37a32d0b79e75a6a34a08c9ee7246bd5bcbe1c16f496f3cfbb1c4d95f2bfd54077d13df09ff6715b24a54edcd6a7232b696a83e64ce9f457c5c7601a18c95c88ba92794c661711c88bf0e0ee0aea37eed3ce35df92a1554e3efbdec97bfc7ec2350a1bca109d279c97d9fd7caf1fe56684c430dd2b79762976b0bc61ed07fb63392bbae20e3c073be557e28a81234f18127be4c91ebceb6bd02987c99d7f32b6f0b0724b1c902b73e161dd70caedcd657118fed8401bfbe4be2786fc6cf9dcd9dccb50831d11f503361a6b39fe1ac0e509fb13f16f4f6b7758e49881a3dcb6f09d02316e3e1073af3cf99de8abd6aca7b024e7d0b2266d342d457d1c6f38a844b6c97277328584728f4330cfa74b4fb57254663ede924a22697f61d52d2017008c92264f9ace0d55f61a10d43e5b2c9192f9ba03f1b4beb416d74e0ab71cf19c64d3deb2fc5a5060e683f009c0e21af5bcda8e139c0258631d1a9ef7c51f060da63886d7f4800f029823ab17370dc9fe52f2297a4b7c01389445c964fef3f19cc873e25533b8311303a0bd9a33102d3559257d09e0081ae1021314bcc0d30cb313b60b46e6c0715fc71d8b4e116b7dff5c5a23d82cb5316149657172c75fa9d3f6ab72ee5ea1ff97e093f084563e33972674ef02dd6d3ea3680d2bd034cbf508290bc800807afd0420989e4723c10431169989aa0322b01f66c8384898d178b78a16378ddeca946e8f9353ab1c825af78a901576a2b9dc0cf86fa04ec495fe5007f48fe298941d50a416e9e7d035c10bfbeb8a794f44facb737f4624c314536c33ec152b3ff511b7b9301955ae1657a53e037254bbe9b791803b2cddcc0cd4292b283349e0fe8e7b1fa65b68d8f48530c57f9f75dac40c2e722bd49704205950019b0f50bf3ee083c0bf434ded192abde8aa452c5eec80dc5e7b7dd772669c1d665cfbbde0f83e7f49fc61c65233ac4f51fa0438d26c88de537764ee53d276d616748f103ed3c0f1cdba45ec1a9201c22d710f74a25adbcf96acd35589b4e26240249687ea0797982447dad82a28da860b5063da3751b3b37ae28072854baa684c599d166cdd4af1f83098625915db3dc75ecbbdfc7d838a28e24ea3d8d379786c67b39d949487a8d2bb5915079ea34ece560dfdf2eeb3c5ca62e67d56989f349b1739105b0957d66fa80aa2c5f622393518899a8ed5daa1db629733f7df79418577d9157c62fc5758f743178c991e712c43881007fb7309d8c330f18dbf74a143e95ca075eacf270a14614bf5c9e93fefd39c44359f4f49c6ca039fdcd76f17709bbeabc382d50d5705b062336813f14a99d43014d903f32addc2bd05944e2077993d0ded53bcc79e91cae7e01b61849bd550185fe20e3a4a8eec0d756fb5378b58ecf4aa82859577d059e15dc8d7fb275974d1836915fdd9eb260f476bb67407740e1b8da18c703237adfba4be6ab9a62906651ad0fb9ddc7084ec5615eab9b76adcd7b67a3b01c67e774d6f9699b717117e8b31bc728e85d53b6f4abe7bff500f16ff4f84cbc3a0ee1a93b2abdc58a6197cdb124622a3930faef26afff8c297d1fd361f24542b538031b71cfd477c02473bb5bfa9a0f97b4516a803c60324c4f0f1ae0534aaeaa48326cceb6b63ab257ac13ef737ebfdc5f5bc06e4792fb555dd643b29cb3b145f66eaf0d63869fcea6d7263995cdd6e7950ee57ae1071425a8513876e645f02740a4f6ea2c2e1f2b1405a46cc9460b682802b66156e333d2d565c4786dc7c9a20fce03e3c9fcdbcbb27821c02a53b3617d3ed91ce1360b8d1449cc34347c6333dd25b42ba6a18a977bd6664841ac522c5f1948a4913962d476319e2aca14e4213aca1ad02b0e0519b70358b530c76e7d719f864763940910c2ce64d7a4d2dcd0a383d5b537bc8b7e97fcdb56a60c214ddb2f414e48dc2a81c8b197f2c3e2f6103b3e1715fd04a843c0cee673f2080c5aae242390bef8f85464f53f9192fa3c005dfaad5bafc91f993367cad81704ced15995f33740140d78e660778b1d2b56fe6f6df496ffec3acf4f171ad28410b559aa08b02995ce1d35e934c1e762501dd1151fc25e705e26d7fc76f06a12c0119753d3c71c9acae39654fafb612a4872150e60c84435c98020e242621afafd9ab7be89af696771ab8b3fc486c2efab9ba2a49b74956705cc9d0fd72db26b316a992ee743dae8cdcd69bb0cd7b120a89c9ba6733af4b5d71fe5ce94072b9293c54e1fe549faec674c0349a39f688d70e6a190ac74639f80952dd588892edd93d01c64a1421b961d57286ce171704a4964b273f1c69e70d6f220767152f7949f9b9090bafe34935bfc3eca701ffde38d716e86a933e3a79d22580372437ddc98a1b4374c246a5e21937769737466246978d1a14731aeb36df051dd07cd74035b3a514ddefdcc7262e19e2c3cb011f4995bdc66e2ee46131ffebb33f99a423219730e494a86df754d6b5d345e00ba5cb73315302c6360d303e4499f0f36a462dd7b70f2df21690f136df6447b46a954ea6994a41024395c9982ca3ecdaefe3a713eb25cdf01f335e995adb6929a774e276935364687188daee14a1273e967a7dcaec9623ab1bfc492c506acad2616ba51400ac3044b6174a6baa29ad271bf20196ea7470421bb9db1882580224acfe8b889418ca55ecebbc9a7808b5478a8f8de92bd1b904eefe8011340 \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/zephyr/.config b/firmware/canfd_cdc_composite/build/zephyr/.config new file mode 100644 index 0000000..c5238a7 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/.config @@ -0,0 +1,1653 @@ +# CONFIG_INPUT is not set +# CONFIG_WIFI is not set +# CONFIG_REGULATOR is not set +CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024 +CONFIG_MAIN_STACK_SIZE=4096 +CONFIG_SERIAL=y +# CONFIG_SPI is not set +# CONFIG_MIPI_DSI is not set +# CONFIG_MEMC is not set +# CONFIG_MODEM is not set +# CONFIG_UART_INTERRUPT_DRIVEN is not set +# CONFIG_GPIO_HOGS is not set +CONFIG_NUM_IRQS=31 +CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=64000000 +CONFIG_FLASH_SIZE=512 +CONFIG_FLASH_BASE_ADDRESS=0x8000000 +CONFIG_MP_MAX_NUM_CPUS=1 +# CONFIG_SOC_RESET_HOOK is not set +CONFIG_CLOCK_CONTROL=y +CONFIG_IDLE_STACK_SIZE=256 +CONFIG_ISR_STACK_SIZE=2048 +CONFIG_SYS_CLOCK_TICKS_PER_SEC=10000 +CONFIG_BUILD_OUTPUT_BIN=y +CONFIG_ROM_START_OFFSET=0 +CONFIG_KERNEL_ENTRY="__start" +CONFIG_XIP=y +CONFIG_HAS_FLASH_LOAD_OFFSET=y +# CONFIG_COUNTER is not set +# CONFIG_SRAM_VECTOR_TABLE is not set +CONFIG_CPU_HAS_ARM_MPU=y +# CONFIG_SHARED_INTERRUPTS is not set +# CONFIG_STM32_FLASH_PREFETCH is not set +# CONFIG_PM_DEVICE is not set +CONFIG_TICKLESS_KERNEL=y +CONFIG_CORTEX_M_SYSTICK=y +CONFIG_CLOCK_CONTROL_INIT_PRIORITY=1 +# CONFIG_USE_DT_CODE_PARTITION is not set +CONFIG_STM32_BACKUP_PROTECTION=y +# CONFIG_MULTI_LEVEL_INTERRUPTS is not set +# CONFIG_PM is not set +CONFIG_NUM_METAIRQ_PRIORITIES=0 +CONFIG_NUM_PREEMPT_PRIORITIES=15 +CONFIG_BUILD_OUTPUT_HEX=y +CONFIG_GEN_IRQ_VECTOR_TABLE=y +# CONFIG_DYNAMIC_INTERRUPTS is not set +CONFIG_GEN_ISR_TABLES=y +# CONFIG_INIT_STACKS is not set +CONFIG_TIMESLICE_SIZE=20 +CONFIG_FLASH_LOAD_OFFSET=0 +CONFIG_SYS_CLOCK_EXISTS=y +# CONFIG_INIT_ARCH_HW_AT_BOOT is not set +# CONFIG_BUILD_OUTPUT_S19 is not set +# CONFIG_FLASH is not set +# CONFIG_POWER_DOMAIN is not set +# CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set +CONFIG_GPIO=y +# CONFIG_MFD is not set +# CONFIG_CODE_DATA_RELOCATION_SRAM is not set +# CONFIG_CACHE is not set +CONFIG_LOG=y +CONFIG_DCACHE_LINE_SIZE=32 +# CONFIG_CODE_DATA_RELOCATION is not set +# CONFIG_ROMSTART_RELOCATION_ROM is not set +CONFIG_RESET=y +CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4 +CONFIG_LOG_DOMAIN_NAME="" +# CONFIG_ASSERT is not set +CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=768 +# CONFIG_DEVICE_DEPS is not set +CONFIG_UART_USE_RUNTIME_CONFIGURE=y +# CONFIG_SYSCON is not set +CONFIG_SOC_EARLY_INIT_HOOK=y +CONFIG_CONSOLE=y +# CONFIG_WINSTREAM is not set +CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE=-1 +CONFIG_ATOMIC_OPERATIONS_C=y +CONFIG_GEN_SW_ISR_TABLE=y +# CONFIG_REBOOT is not set +CONFIG_GEN_IRQ_START_VECTOR=0 +CONFIG_SRAM_OFFSET=0 +CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4 +CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED=y +# CONFIG_BOOTLOADER_MCUBOOT is not set +# CONFIG_SCHED_CPU_MASK is not set +CONFIG_KERNEL_MEM_POOL=y +CONFIG_MULTITHREADING=y +# CONFIG_OUTPUT_DISASSEMBLY is not set +CONFIG_LINKER_USE_RELAX=y +# CONFIG_WATCHDOG is not set +CONFIG_ICACHE_LINE_SIZE=32 + +# +# Devicetree Info +# +CONFIG_DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED=y +CONFIG_DT_HAS_ARM_CORTEX_M0__ENABLED=y +CONFIG_DT_HAS_ARM_V6M_NVIC_ENABLED=y +CONFIG_DT_HAS_FIXED_CLOCK_ENABLED=y +CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED=y +CONFIG_DT_HAS_GPIO_KEYS_ENABLED=y +CONFIG_DT_HAS_GPIO_LEDS_ENABLED=y +CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y +CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y +CONFIG_DT_HAS_ST_STM32_EXTI_ENABLED=y +CONFIG_DT_HAS_ST_STM32_FDCAN_ENABLED=y +CONFIG_DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED=y +CONFIG_DT_HAS_ST_STM32_GPIO_ENABLED=y +CONFIG_DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED=y +CONFIG_DT_HAS_ST_STM32_LPTIM_ENABLED=y +CONFIG_DT_HAS_ST_STM32_NV_FLASH_ENABLED=y +CONFIG_DT_HAS_ST_STM32_PINCTRL_ENABLED=y +CONFIG_DT_HAS_ST_STM32_RCC_RCTL_ENABLED=y +CONFIG_DT_HAS_ST_STM32_RTC_ENABLED=y +CONFIG_DT_HAS_ST_STM32_TEMP_CAL_ENABLED=y +CONFIG_DT_HAS_ST_STM32_UART_ENABLED=y +CONFIG_DT_HAS_ST_STM32_USART_ENABLED=y +CONFIG_DT_HAS_ST_STM32_USB_ENABLED=y +CONFIG_DT_HAS_ST_STM32_VBAT_ENABLED=y +CONFIG_DT_HAS_ST_STM32_VREF_ENABLED=y +CONFIG_DT_HAS_ST_STM32_WATCHDOG_ENABLED=y +CONFIG_DT_HAS_ST_STM32F0_RCC_ENABLED=y +CONFIG_DT_HAS_ST_STM32G0_EXTI_ENABLED=y +CONFIG_DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED=y +CONFIG_DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED=y +CONFIG_DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED=y +CONFIG_DT_HAS_USB_NOP_XCEIV_ENABLED=y +CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED=y +CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED=y +# end of Devicetree Info + +# +# Modules +# +# CONFIG_BUILD_ONLY_NO_BLOBS is not set + +# +# Available modules. +# + +# +# acpica (C:/Users/iteedi/zephyrproject/modules/lib/acpica) +# + +# +# ACPI driver support +# +# CONFIG_ACPI is not set +# end of ACPI driver support + +CONFIG_ZEPHYR_ACPICA_MODULE=y +# end of acpica (C:/Users/iteedi/zephyrproject/modules/lib/acpica) + +# +# cmsis (C:/Users/iteedi/zephyrproject/modules/hal/cmsis) +# +CONFIG_ZEPHYR_CMSIS_MODULE=y +CONFIG_HAS_CMSIS_CORE=y +# end of cmsis (C:/Users/iteedi/zephyrproject/modules/hal/cmsis) + +# +# cmsis-dsp (C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp) +# +CONFIG_ZEPHYR_CMSIS_DSP_MODULE=y +# CONFIG_CMSIS_DSP is not set +# end of cmsis-dsp (C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp) + +# +# cmsis-nn (C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn) +# +CONFIG_ZEPHYR_CMSIS_NN_MODULE=y +# CONFIG_CMSIS_NN is not set +# end of cmsis-nn (C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn) + +# +# cmsis_6 (C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6) +# +CONFIG_ZEPHYR_CMSIS_6_MODULE=y +CONFIG_HAS_CMSIS_CORE_M=y +# CONFIG_CMSIS_M_CHECK_DEVICE_DEFINES is not set +# end of cmsis_6 (C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6) + +# +# fatfs (C:/Users/iteedi/zephyrproject/modules/fs/fatfs) +# +CONFIG_ZEPHYR_FATFS_MODULE=y +# end of fatfs (C:/Users/iteedi/zephyrproject/modules/fs/fatfs) + +CONFIG_ZEPHYR_ADI_MODULE=y + +# +# hal_afbr (C:/Users/iteedi/zephyrproject/modules/hal/afbr) +# +CONFIG_ZEPHYR_HAL_AFBR_MODULE=y +# end of hal_afbr (C:/Users/iteedi/zephyrproject/modules/hal/afbr) + +# +# hal_ambiq (C:/Users/iteedi/zephyrproject/modules/hal/ambiq) +# +CONFIG_ZEPHYR_HAL_AMBIQ_MODULE=y +# end of hal_ambiq (C:/Users/iteedi/zephyrproject/modules/hal/ambiq) + +CONFIG_ZEPHYR_ATMEL_MODULE=y + +# +# hal_bouffalolab (C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab) +# +CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE=y +# end of hal_bouffalolab (C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab) + +# +# hal_espressif (C:/Users/iteedi/zephyrproject/modules/hal/espressif) +# +CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE=y +# end of hal_espressif (C:/Users/iteedi/zephyrproject/modules/hal/espressif) + +# +# hal_ethos_u (C:/Users/iteedi/zephyrproject/modules/hal/ethos_u) +# +# CONFIG_ETHOS_U is not set +CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE=y +# end of hal_ethos_u (C:/Users/iteedi/zephyrproject/modules/hal/ethos_u) + +# +# hal_gigadevice (C:/Users/iteedi/zephyrproject/modules/hal/gigadevice) +# +CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE=y +# end of hal_gigadevice (C:/Users/iteedi/zephyrproject/modules/hal/gigadevice) + +# +# hal_infineon (C:/Users/iteedi/zephyrproject/modules/hal/infineon) +# +CONFIG_ZEPHYR_HAL_INFINEON_MODULE=y +# CONFIG_USE_INFINEON_ABSTRACTION_RTOS is not set +# end of hal_infineon (C:/Users/iteedi/zephyrproject/modules/hal/infineon) + +# +# hal_intel (C:/Users/iteedi/zephyrproject/modules/hal/intel) +# +CONFIG_ZEPHYR_HAL_INTEL_MODULE=y +# end of hal_intel (C:/Users/iteedi/zephyrproject/modules/hal/intel) + +CONFIG_ZEPHYR_MICROCHIP_MODULE=y + +# +# hal_nordic (C:/Users/iteedi/zephyrproject/modules/hal/nordic) +# +CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y +# end of hal_nordic (C:/Users/iteedi/zephyrproject/modules/hal/nordic) + +CONFIG_ZEPHYR_NUVOTON_MODULE=y + +# +# hal_nxp (C:/Users/iteedi/zephyrproject/modules/hal/nxp) +# +CONFIG_ZEPHYR_HAL_NXP_MODULE=y +# end of hal_nxp (C:/Users/iteedi/zephyrproject/modules/hal/nxp) + +CONFIG_ZEPHYR_OPENISA_MODULE=y +CONFIG_ZEPHYR_QUICKLOGIC_MODULE=y +CONFIG_ZEPHYR_HAL_RENESAS_MODULE=y + +# +# hal_rpi_pico (C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico) +# +CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE=y +# end of hal_rpi_pico (C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico) + +# +# hal_sifli (C:/Users/iteedi/zephyrproject/modules/hal/sifli) +# +CONFIG_ZEPHYR_HAL_SIFLI_MODULE=y +# end of hal_sifli (C:/Users/iteedi/zephyrproject/modules/hal/sifli) + +# +# hal_silabs (C:/Users/iteedi/zephyrproject/modules/hal/silabs) +# +CONFIG_ZEPHYR_HAL_SILABS_MODULE=y +# end of hal_silabs (C:/Users/iteedi/zephyrproject/modules/hal/silabs) + +# +# hal_st (C:/Users/iteedi/zephyrproject/modules/hal/st) +# +CONFIG_ZEPHYR_HAL_ST_MODULE=y +# end of hal_st (C:/Users/iteedi/zephyrproject/modules/hal/st) + +CONFIG_ZEPHYR_HAL_STM32_MODULE=y + +# +# hal_tdk (C:/Users/iteedi/zephyrproject/modules/hal/tdk) +# +CONFIG_ZEPHYR_HAL_TDK_MODULE=y + +# +# TDK drivers +# +# CONFIG_TDK_HAL is not set +# end of TDK drivers +# end of hal_tdk (C:/Users/iteedi/zephyrproject/modules/hal/tdk) + +# +# hal_telink (C:/Users/iteedi/zephyrproject/modules/hal/telink) +# +CONFIG_ZEPHYR_HAL_TELINK_MODULE=y +# end of hal_telink (C:/Users/iteedi/zephyrproject/modules/hal/telink) + +CONFIG_ZEPHYR_TI_MODULE=y + +# +# hal_wch (C:/Users/iteedi/zephyrproject/modules/hal/wch) +# +CONFIG_ZEPHYR_HAL_WCH_MODULE=y +# end of hal_wch (C:/Users/iteedi/zephyrproject/modules/hal/wch) + +CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE=y +CONFIG_ZEPHYR_XTENSA_MODULE=y + +# +# hostap (C:/Users/iteedi/zephyrproject/modules/lib/hostap) +# +# CONFIG_WIFI_NM_WPA_SUPPLICANT is not set +CONFIG_ZEPHYR_HOSTAP_MODULE=y +# end of hostap (C:/Users/iteedi/zephyrproject/modules/lib/hostap) + +# +# liblc3 (C:/Users/iteedi/zephyrproject/modules/lib/liblc3) +# +CONFIG_ZEPHYR_LIBLC3_MODULE=y +# end of liblc3 (C:/Users/iteedi/zephyrproject/modules/lib/liblc3) + +CONFIG_ZEPHYR_LIBMCTP_MODULE=y +CONFIG_ZEPHYR_LIBMETAL_MODULE=y + +# +# libsbc (C:/Users/iteedi/zephyrproject/modules/lib/libsbc) +# +CONFIG_ZEPHYR_LIBSBC_MODULE=y +# CONFIG_LIBSBC_ENCODER is not set +# CONFIG_LIBSBC_DECODER is not set +# end of libsbc (C:/Users/iteedi/zephyrproject/modules/lib/libsbc) + +# +# littlefs (C:/Users/iteedi/zephyrproject/modules/fs/littlefs) +# +CONFIG_ZEPHYR_LITTLEFS_MODULE=y +# end of littlefs (C:/Users/iteedi/zephyrproject/modules/fs/littlefs) + +# +# lora-basics-modem (C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem) +# +CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE=y +# end of lora-basics-modem (C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem) + +# +# loramac-node (C:/Users/iteedi/zephyrproject/modules/lib/loramac-node) +# +CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y +# CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set +# end of loramac-node (C:/Users/iteedi/zephyrproject/modules/lib/loramac-node) + +# +# lvgl (C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl) +# +CONFIG_ZEPHYR_LVGL_MODULE=y +# end of lvgl (C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl) + +# +# mbedtls (C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls) +# +CONFIG_ZEPHYR_MBEDTLS_MODULE=y +# CONFIG_PSA_CRYPTO is not set +# CONFIG_MBEDTLS is not set +# end of mbedtls (C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls) + +CONFIG_ZEPHYR_MCUBOOT_MODULE=y +CONFIG_ZEPHYR_MIPI_SYS_T_MODULE=y + +# +# nanopb (C:/Users/iteedi/zephyrproject/modules/lib/nanopb) +# +CONFIG_ZEPHYR_NANOPB_MODULE=y +# CONFIG_NANOPB is not set +# end of nanopb (C:/Users/iteedi/zephyrproject/modules/lib/nanopb) + +# +# nrf_wifi (C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi) +# +CONFIG_ZEPHYR_NRF_WIFI_MODULE=y +# CONFIG_NRF70_BUSLIB is not set +# end of nrf_wifi (C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi) + +CONFIG_ZEPHYR_OPEN_AMP_MODULE=y + +# +# openthread (C:/Users/iteedi/zephyrproject/modules/lib/openthread) +# +# CONFIG_OPENTHREAD is not set +CONFIG_ZEPHYR_OPENTHREAD_MODULE=y +# end of openthread (C:/Users/iteedi/zephyrproject/modules/lib/openthread) + +# +# percepio (C:/Users/iteedi/zephyrproject/modules/debug/percepio) +# + +# +# Percepio Tracealyzer support can be enabled from the tracing subsystem +# +# CONFIG_PERCEPIO_DFM is not set +CONFIG_ZEPHYR_PERCEPIO_MODULE=y +# end of percepio (C:/Users/iteedi/zephyrproject/modules/debug/percepio) + +# +# picolibc (C:/Users/iteedi/zephyrproject/modules/lib/picolibc) +# +# CONFIG_PICOLIBC_MODULE is not set +CONFIG_ZEPHYR_PICOLIBC_MODULE=y +# end of picolibc (C:/Users/iteedi/zephyrproject/modules/lib/picolibc) + +# +# segger (C:/Users/iteedi/zephyrproject/modules/debug/segger) +# +CONFIG_ZEPHYR_SEGGER_MODULE=y +CONFIG_HAS_SEGGER_RTT=y +# CONFIG_USE_SEGGER_RTT is not set +# end of segger (C:/Users/iteedi/zephyrproject/modules/debug/segger) + +# +# trusted-firmware-a (C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a) +# +CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE=y +# CONFIG_BUILD_WITH_TFA is not set +# end of trusted-firmware-a (C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a) + +# +# trusted-firmware-m (C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m) +# +CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y +# end of trusted-firmware-m (C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m) + +# +# uoscore-uedhoc (C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc) +# +CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y +# end of uoscore-uedhoc (C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc) + +# +# zcbor (C:/Users/iteedi/zephyrproject/modules/lib/zcbor) +# +CONFIG_ZEPHYR_ZCBOR_MODULE=y +# CONFIG_ZCBOR is not set +# end of zcbor (C:/Users/iteedi/zephyrproject/modules/lib/zcbor) + +CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE=y +# CONFIG_LIBMETAL is not set +# CONFIG_LVGL is not set +# CONFIG_HAS_MEC_HAL is not set +# CONFIG_HAS_MPFS_HAL is not set +# CONFIG_HAS_MEC5_HAL is not set +# CONFIG_OPENAMP is not set +CONFIG_HAS_STM32CUBE=y +CONFIG_USE_STM32_HAL_PCD=y +CONFIG_USE_STM32_HAL_PCD_EX=y +CONFIG_USE_STM32_LL_USB=y +CONFIG_USE_STM32_LL_UTILS=y +# CONFIG_MIPI_SYST_LIB is not set +# CONFIG_HAS_TELINK_DRIVERS is not set +# CONFIG_MCUBOOT_BOOTUTIL_LIB is not set + +# +# Unavailable modules, please install those via the project manifest. +# + +# +# Lz4 module not available. +# + +# +# CANopenNode module not available. +# + +# +# CHRE module not available. +# + +# +# THRIFT module not available. +# +# end of Modules + +CONFIG_BOARD="ews" +CONFIG_BOARD_REVISION="" +CONFIG_BOARD_TARGET="ews/stm32g0b1xx" +# CONFIG_NET_DRIVERS is not set +CONFIG_BOARD_EWS=y +CONFIG_BOARD_EWS_STM32G0B1XX=y +CONFIG_BOARD_QUALIFIERS="stm32g0b1xx" + +# +# Board Options +# +# end of Board Options + +# +# Hardware Configuration +# +CONFIG_SOC="stm32g0b1xx" +CONFIG_SOC_SERIES="stm32g0x" +CONFIG_SOC_FAMILY="stm32" +CONFIG_SOC_FAMILY_STM32=y +CONFIG_SOC_SERIES_STM32G0X=y +CONFIG_SOC_STM32G0B1XX=y +CONFIG_HWINFO=y +# CONFIG_STM32_ENABLE_DEBUG_SLEEP_STOP is not set +CONFIG_SWJ_ANALOG_PRIORITY=49 +CONFIG_HAS_STM32_FLASH_PREFETCH=y +# CONFIG_BUILD_OUTPUT_INFO_HEADER is not set +CONFIG_GPIO_INIT_PRIORITY=40 +# CONFIG_SOC_LOG_LEVEL_OFF is not set +# CONFIG_SOC_LOG_LEVEL_ERR is not set +# CONFIG_SOC_LOG_LEVEL_WRN is not set +# CONFIG_SOC_LOG_LEVEL_INF is not set +# CONFIG_SOC_LOG_LEVEL_DBG is not set +CONFIG_SOC_LOG_LEVEL_DEFAULT=y +CONFIG_SOC_LOG_LEVEL=3 +# end of Hardware Configuration + +CONFIG_ARCH="arm" +# CONFIG_EXTRA_EXCEPTION_INFO is not set +CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y +CONFIG_CPU_CORTEX=y +CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=4 + +# +# ARM Options +# +CONFIG_CPU_CORTEX_M=y +# CONFIG_ARM_ZIMAGE_HEADER is not set +CONFIG_ISA_THUMB2=y +CONFIG_ASSEMBLER_ISA_THUMB2=y +CONFIG_COMPILER_ISA_THUMB2=y +CONFIG_STACK_ALIGN_DOUBLE_WORD=y +# CONFIG_RUNTIME_NMI is not set +# CONFIG_PLATFORM_SPECIFIC_INIT is not set +CONFIG_FAULT_DUMP=2 +CONFIG_FP16=y +CONFIG_FP16_IEEE=y +# CONFIG_FP16_ALT is not set +CONFIG_CPU_CORTEX_M0PLUS=y +CONFIG_CPU_CORTEX_M_HAS_SYSTICK=y +CONFIG_CPU_CORTEX_M_HAS_VTOR=y +CONFIG_ARMV6_M_ARMV8_M_BASELINE=y + +# +# ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33/M55 options +# +# CONFIG_SW_VECTOR_RELAY is not set +# end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33/M55 options + +CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y +# end of ARM Options + +CONFIG_ARM=y +CONFIG_ARCH_IS_SET=y + +# +# General Architecture Options +# +# CONFIG_SEMIHOST is not set +CONFIG_ARCH_SUPPORTS_ROM_OFFSET=y +# CONFIG_ARM_MPU is not set +# CONFIG_ARCH_LOG_LEVEL_OFF is not set +# CONFIG_ARCH_LOG_LEVEL_ERR is not set +# CONFIG_ARCH_LOG_LEVEL_WRN is not set +# CONFIG_ARCH_LOG_LEVEL_INF is not set +# CONFIG_ARCH_LOG_LEVEL_DBG is not set +CONFIG_ARCH_LOG_LEVEL_DEFAULT=y +CONFIG_ARCH_LOG_LEVEL=3 +CONFIG_LITTLE_ENDIAN=y +CONFIG_SRAM_SIZE=144 +CONFIG_SRAM_BASE_ADDRESS=0x20000000 +# CONFIG_NOINIT_SNIPPET_FIRST is not set +CONFIG_GEN_PRIV_STACKS=y +# CONFIG_STACK_GROWS_UP is not set +# CONFIG_FRAME_POINTER is not set + +# +# Interrupt Configuration +# +# CONFIG_ISR_TABLES_LOCAL_DECLARATION is not set +CONFIG_ARCH_DEVICE_STATE_ALIGN=4 +CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y +# CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set +# CONFIG_SRAM_SW_ISR_TABLE is not set +CONFIG_EXCEPTION_DEBUG=y +# CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set +# end of Interrupt Configuration +# end of General Architecture Options + +CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y +CONFIG_ARCH_HAS_VECTOR_TABLE_RELOCATION=y +CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y +CONFIG_ARCH_SUPPORTS_COREDUMP=y +CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS=y +CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR=y +CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y +CONFIG_ARCH_SUPPORTS_ROM_START=y +CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO=y +CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE=y +CONFIG_ARCH_HAS_SUSPEND_TO_RAM=y +CONFIG_ARCH_HAS_THREAD_ABORT=y +CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y +CONFIG_CPU_HAS_MPU=y +# CONFIG_MPU is not set + +# +# DSP Options +# +# end of DSP Options + +# +# Floating Point Options +# +# end of Floating Point Options + +# +# Cache Options +# +# end of Cache Options + +CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y +CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y + +# +# General Kernel Options +# +# CONFIG_KERNEL_LOG_LEVEL_OFF is not set +# CONFIG_KERNEL_LOG_LEVEL_ERR is not set +# CONFIG_KERNEL_LOG_LEVEL_WRN is not set +# CONFIG_KERNEL_LOG_LEVEL_INF is not set +# CONFIG_KERNEL_LOG_LEVEL_DBG is not set +CONFIG_KERNEL_LOG_LEVEL_DEFAULT=y +CONFIG_KERNEL_LOG_LEVEL=3 +CONFIG_NUM_COOP_PRIORITIES=16 +CONFIG_MAIN_THREAD_PRIORITY=0 +CONFIG_COOP_ENABLED=y +CONFIG_PREEMPT_ENABLED=y +CONFIG_PRIORITY_CEILING=-127 +# CONFIG_SCHED_DEADLINE is not set +# CONFIG_THREAD_STACK_INFO is not set +# CONFIG_THREAD_CUSTOM_DATA is not set +# CONFIG_SCHED_DUMB is not set +CONFIG_SCHED_SIMPLE=y +# CONFIG_SCHED_SCALABLE is not set +# CONFIG_SCHED_MULTIQ is not set +# CONFIG_WAITQ_DUMB is not set +# CONFIG_WAITQ_SCALABLE is not set +CONFIG_WAITQ_SIMPLE=y + +# +# Misc Kernel related options +# +CONFIG_LIBC_ERRNO=y +CONFIG_ERRNO=y +CONFIG_CURRENT_THREAD_USE_TLS=y +# end of Misc Kernel related options + +# +# Kernel Debugging and Metrics +# +CONFIG_BOOT_BANNER=y +CONFIG_BOOT_BANNER_STRING="Booting Zephyr OS build" +CONFIG_BOOT_DELAY=0 +# CONFIG_BOOT_CLEAR_SCREEN is not set +# CONFIG_THREAD_MONITOR is not set +# CONFIG_THREAD_NAME is not set +# CONFIG_THREAD_RUNTIME_STATS is not set +# end of Kernel Debugging and Metrics + +# CONFIG_OBJ_CORE is not set +# CONFIG_WORKQUEUE_WORK_TIMEOUT is not set + +# +# System Work Queue Options +# +CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1 +# CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set +CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS=0 +# end of System Work Queue Options + +# +# Barrier Operations +# +CONFIG_BARRIER_OPERATIONS_ARCH=y +# end of Barrier Operations + +# +# Atomic Operations +# +# end of Atomic Operations + +# +# Timer API Options +# +CONFIG_TIMESLICING=y +CONFIG_TIMESLICE_PRIORITY=0 +# CONFIG_TIMESLICE_PER_THREAD is not set +# end of Timer API Options + +# +# Other Kernel Object Options +# +# CONFIG_POLL is not set +# CONFIG_MEM_SLAB_POINTER_VALIDATE is not set +# CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION is not set +CONFIG_NUM_MBOX_ASYNC_MSGS=10 +# CONFIG_EVENTS is not set +CONFIG_HEAP_MEM_POOL_SIZE=8192 +# CONFIG_HEAP_MEM_POOL_IGNORE_MIN is not set +# end of Other Kernel Object Options + +CONFIG_SWAP_NONATOMIC=y +CONFIG_TIMEOUT_64BIT=y +CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365 + +# +# Security Options +# +# end of Security Options + +# +# Memory Domains +# +# end of Memory Domains + +# +# SMP Options +# +# CONFIG_TICKET_SPINLOCKS is not set +# end of SMP Options + +CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y +CONFIG_THREAD_LOCAL_STORAGE=y +CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU=y +# CONFIG_STATIC_INIT_GNU is not set +# CONFIG_BOOTARGS is not set +# end of General Kernel Options + +# +# Device Options +# +# CONFIG_DEVICE_MUTABLE is not set +# CONFIG_DEVICE_DT_METADATA is not set +CONFIG_DEVICE_DEINIT_SUPPORT=y +# end of Device Options + +# +# Initialization Priorities +# +CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30 +CONFIG_KERNEL_INIT_PRIORITY_LIBC=35 +CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40 +CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50 +CONFIG_APPLICATION_INIT_PRIORITY=90 +# end of Initialization Priorities + +# +# Virtual Memory Support +# + +# +# MMU Features +# +# end of MMU Features +# end of Virtual Memory Support + +# +# SoC and Board Hooks +# +# CONFIG_SOC_EARLY_RESET_HOOK is not set +# CONFIG_SOC_PREP_HOOK is not set +# CONFIG_SOC_LATE_INIT_HOOK is not set +# CONFIG_SOC_PER_CORE_INIT_HOOK is not set +# CONFIG_BOARD_EARLY_INIT_HOOK is not set +# CONFIG_BOARD_LATE_INIT_HOOK is not set +# end of SoC and Board Hooks + +# +# Device Drivers +# +# CONFIG_ADC is not set +# CONFIG_AUDIO is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_BBRAM is not set +CONFIG_CAN=y +# CONFIG_CAN_LOG_LEVEL_OFF is not set +# CONFIG_CAN_LOG_LEVEL_ERR is not set +# CONFIG_CAN_LOG_LEVEL_WRN is not set +# CONFIG_CAN_LOG_LEVEL_INF is not set +# CONFIG_CAN_LOG_LEVEL_DBG is not set +CONFIG_CAN_LOG_LEVEL_DEFAULT=y +CONFIG_CAN_LOG_LEVEL=3 +CONFIG_CAN_INIT_PRIORITY=80 +CONFIG_CAN_DEFAULT_BITRATE=125000 +CONFIG_CAN_DEFAULT_BITRATE_DATA=1000000 +CONFIG_CAN_SAMPLE_POINT_MARGIN=50 +# CONFIG_CAN_ACCEPT_RTR is not set +CONFIG_CAN_FD_MODE=y +# CONFIG_CAN_MANUAL_RECOVERY_MODE is not set +# CONFIG_CAN_RX_TIMESTAMP is not set +CONFIG_CAN_MAX_STD_ID_FILTER=28 +CONFIG_CAN_MAX_EXT_ID_FILTER=8 +CONFIG_CAN_STM32_FDCAN=y +CONFIG_CAN_MCAN=y + +# +# CAN transceiver drivers +# +CONFIG_CAN_TRANSCEIVER_INIT_PRIORITY=45 +# end of CAN transceiver drivers + +# CONFIG_CHARGER is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set +CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT=y +CONFIG_CLOCK_CONTROL_LOG_LEVEL=3 +CONFIG_CLOCK_CONTROL_STM32_CUBE=y +# CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK is not set +# CONFIG_COMPARATOR is not set +CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128 +CONFIG_CONSOLE_HAS_DRIVER=y +# CONFIG_CONSOLE_HANDLER is not set +CONFIG_CONSOLE_INIT_PRIORITY=60 +CONFIG_UART_CONSOLE=y +# CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set +# CONFIG_UART_CONSOLE_MCUMGR is not set +# CONFIG_RAM_CONSOLE is not set +# CONFIG_IPM_CONSOLE_SENDER is not set +# CONFIG_IPM_CONSOLE_RECEIVER is not set +# CONFIG_UART_MCUMGR is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_OFF is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_ERR is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_WRN is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_INF is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set +CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT=y +CONFIG_UART_CONSOLE_LOG_LEVEL=3 +# CONFIG_EFI_CONSOLE is not set +# CONFIG_COREDUMP_DEVICE is not set +# CONFIG_CRC_DRIVER is not set +# CONFIG_CRYPTO is not set +# CONFIG_DAC is not set +# CONFIG_DAI is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DISK_DRIVERS is not set +# CONFIG_DISPLAY is not set +# CONFIG_DMA is not set +# CONFIG_DP_DRIVER is not set +# CONFIG_EDAC is not set +# CONFIG_EEPROM is not set +# CONFIG_ENTROPY_GENERATOR is not set +# CONFIG_ESPI is not set + +# +# Firmware drivers +# +# CONFIG_ARM_SCMI is not set +# end of Firmware drivers + +# CONFIG_FPGA is not set +# CONFIG_FUEL_GAUGE is not set +# CONFIG_GNSS is not set +# CONFIG_GPIO_LOG_LEVEL_OFF is not set +# CONFIG_GPIO_LOG_LEVEL_ERR is not set +# CONFIG_GPIO_LOG_LEVEL_WRN is not set +# CONFIG_GPIO_LOG_LEVEL_INF is not set +# CONFIG_GPIO_LOG_LEVEL_DBG is not set +CONFIG_GPIO_LOG_LEVEL_DEFAULT=y +CONFIG_GPIO_LOG_LEVEL=3 +# CONFIG_GPIO_GET_DIRECTION is not set +# CONFIG_GPIO_GET_CONFIG is not set +# CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set +CONFIG_GPIO_STM32=y +# CONFIG_HAPTICS is not set +# CONFIG_HWINFO_LOG_LEVEL_OFF is not set +# CONFIG_HWINFO_LOG_LEVEL_ERR is not set +# CONFIG_HWINFO_LOG_LEVEL_WRN is not set +# CONFIG_HWINFO_LOG_LEVEL_INF is not set +# CONFIG_HWINFO_LOG_LEVEL_DBG is not set +CONFIG_HWINFO_LOG_LEVEL_DEFAULT=y +CONFIG_HWINFO_LOG_LEVEL=3 +CONFIG_HWINFO_HAS_DRIVER=y +CONFIG_HWINFO_STM32=y +# CONFIG_HWSPINLOCK is not set +# CONFIG_I2C is not set +# CONFIG_I2S is not set +# CONFIG_I3C is not set + +# +# Interrupt controller drivers +# +CONFIG_INTC_INIT_PRIORITY=40 +# CONFIG_INTC_LOG_LEVEL_OFF is not set +# CONFIG_INTC_LOG_LEVEL_ERR is not set +# CONFIG_INTC_LOG_LEVEL_WRN is not set +# CONFIG_INTC_LOG_LEVEL_INF is not set +# CONFIG_INTC_LOG_LEVEL_DBG is not set +CONFIG_INTC_LOG_LEVEL_DEFAULT=y +CONFIG_INTC_LOG_LEVEL=3 +CONFIG_EXTI_STM32=y +CONFIG_GPIO_INTC_STM32=y +# end of Interrupt controller drivers + +# CONFIG_IPM is not set +# CONFIG_LED is not set +# CONFIG_LED_STRIP is not set +# CONFIG_LORA is not set +# CONFIG_MBOX is not set +# CONFIG_MDIO is not set +# CONFIG_MIPI_DBI is not set + +# +# Miscellaneous Drivers +# +# CONFIG_TIMEAWARE_GPIO is not set + +# +# Interconn Drivers +# +# end of Interconn Drivers +# end of Miscellaneous Drivers + +# CONFIG_MM_DRV is not set +# CONFIG_MSPI is not set +# CONFIG_OPAMP is not set +# CONFIG_PCIE is not set +# CONFIG_PCIE_ENDPOINT is not set +# CONFIG_PECI is not set +CONFIG_PINCTRL=y +# CONFIG_PINCTRL_LOG_LEVEL_OFF is not set +# CONFIG_PINCTRL_LOG_LEVEL_ERR is not set +# CONFIG_PINCTRL_LOG_LEVEL_WRN is not set +# CONFIG_PINCTRL_LOG_LEVEL_INF is not set +# CONFIG_PINCTRL_LOG_LEVEL_DBG is not set +CONFIG_PINCTRL_LOG_LEVEL_DEFAULT=y +CONFIG_PINCTRL_LOG_LEVEL=3 +# CONFIG_PINCTRL_DYNAMIC is not set +CONFIG_PINCTRL_KEEP_SLEEP_STATE=y +# CONFIG_PINCTRL_NPCX_EX is not set +CONFIG_PINCTRL_STM32=y +CONFIG_PINCTRL_STM32_REMAP_INIT_PRIORITY=2 +# CONFIG_PM_CPU_OPS is not set +# CONFIG_PS2 is not set +# CONFIG_PSI5 is not set +# CONFIG_PTP_CLOCK is not set +# CONFIG_PWM is not set +CONFIG_RESET_INIT_PRIORITY=35 + +# +# Reset Controller Drivers +# +CONFIG_RESET_STM32=y +# CONFIG_RETAINED_MEM is not set +# CONFIG_RTC is not set +# CONFIG_SDHC is not set +# CONFIG_SENSOR is not set +# CONFIG_SENT is not set + +# +# Capabilities +# +CONFIG_SERIAL_HAS_DRIVER=y +CONFIG_SERIAL_SUPPORT_INTERRUPT=y +CONFIG_SERIAL_INIT_PRIORITY=50 +# CONFIG_UART_LOG_LEVEL_OFF is not set +# CONFIG_UART_LOG_LEVEL_ERR is not set +# CONFIG_UART_LOG_LEVEL_WRN is not set +# CONFIG_UART_LOG_LEVEL_INF is not set +# CONFIG_UART_LOG_LEVEL_DBG is not set +CONFIG_UART_LOG_LEVEL_DEFAULT=y +CONFIG_UART_LOG_LEVEL=3 +CONFIG_UART_LINE_CTRL=y +# CONFIG_UART_DRV_CMD is not set +# CONFIG_UART_WIDE_DATA is not set +# CONFIG_UART_PIPE is not set +# CONFIG_UART_ASYNC_RX_HELPER is not set + +# +# Serial Drivers +# +# CONFIG_UART_NATIVE_POSIX is not set +# CONFIG_UART_NPCX_FIFO_EX is not set +CONFIG_UART_STM32=y +# CONFIG_SMBUS is not set +# CONFIG_STEPPER is not set + +# +# Timer drivers +# +CONFIG_TIMER_HAS_64BIT_CYCLE_COUNTER=y +# CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set +# CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set +CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0 +CONFIG_TICKLESS_CAPABLE=y +CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y +CONFIG_CORTEX_M_SYSTICK_INSTALL_ISR=y +CONFIG_CORTEX_M_SYSTICK_64BIT_CYCLE_COUNTER=y +CONFIG_CORTEX_M_SYSTICK_LPM_TIMER_NONE=y +# end of Timer drivers + +# CONFIG_USB_BC12 is not set +# CONFIG_UDC_DRIVER is not set +# CONFIG_UHC_DRIVER is not set +# CONFIG_UVB is not set +CONFIG_USB_DEVICE_DRIVER=y +# CONFIG_USB_DC_HAS_HS_SUPPORT is not set +CONFIG_USB_DEVICE_REMOTE_WAKEUP=y +CONFIG_USB_DC_STM32=y +CONFIG_USB_DC_STM32_CLOCK_CHECK=y +# CONFIG_USB_DRIVER_LOG_LEVEL_OFF is not set +# CONFIG_USB_DRIVER_LOG_LEVEL_ERR is not set +# CONFIG_USB_DRIVER_LOG_LEVEL_WRN is not set +# CONFIG_USB_DRIVER_LOG_LEVEL_INF is not set +# CONFIG_USB_DRIVER_LOG_LEVEL_DBG is not set +CONFIG_USB_DRIVER_LOG_LEVEL_DEFAULT=y +CONFIG_USB_DRIVER_LOG_LEVEL=3 + +# +# USB common +# +# end of USB common + +# CONFIG_USBC_TCPC_DRIVER is not set +# CONFIG_USBC_VBUS_DRIVER is not set +# CONFIG_USBC_PPC_DRIVER is not set +# CONFIG_VIDEO is not set +# CONFIG_VIRTIO is not set +# CONFIG_VIRTUALIZATION is not set +# CONFIG_W1 is not set +# CONFIG_TEE is not set +# end of Device Drivers + +# CONFIG_REQUIRES_FULL_LIBC is not set +# CONFIG_REQUIRES_FLOAT_PRINTF is not set +# CONFIG_LIBC_ALLOW_LESS_THAN_64BIT_TIME is not set +CONFIG_FULL_LIBC_SUPPORTED=y +CONFIG_MINIMAL_LIBC_SUPPORTED=y +CONFIG_NEWLIB_LIBC_SUPPORTED=y +CONFIG_PICOLIBC_SUPPORTED=y + +# +# C Library +# +# CONFIG_MINIMAL_LIBC is not set +CONFIG_PICOLIBC=y +# CONFIG_NEWLIB_LIBC is not set +# CONFIG_EXTERNAL_LIBC is not set +CONFIG_HAS_NEWLIB_LIBC_NANO=y +CONFIG_COMMON_LIBC_ABORT=y +# CONFIG_COMMON_LIBC_ASCTIME_R is not set +# CONFIG_COMMON_LIBC_CTIME_R is not set +CONFIG_COMMON_LIBC_TIME=y +CONFIG_COMMON_LIBC_MALLOC=y +CONFIG_COMMON_LIBC_CALLOC=y +CONFIG_COMMON_LIBC_REALLOCARRAY=y +# CONFIG_COMMON_LIBC_REMOVE is not set +# CONFIG_PICOLIBC_USE_MODULE is not set +CONFIG_PICOLIBC_USE_TOOLCHAIN=y +# CONFIG_PICOLIBC_IO_FLOAT is not set +CONFIG_PICOLIBC_IO_LONG_LONG=y +CONFIG_STDOUT_CONSOLE=y +CONFIG_NEED_LIBC_MEM_PARTITION=y +# end of C Library + +# +# C++ Language Support +# +# CONFIG_CPP is not set +# end of C++ Language Support + +# +# Additional libraries +# + +# +# Hash Function Support +# +# CONFIG_SYS_HASH_FUNC32 is not set +# end of Hash Function Support + +# +# Hashmap (Hash Table) Support +# +# CONFIG_SYS_HASH_MAP is not set +# end of Hashmap (Hash Table) Support + +# +# Heap and Memory Allocation +# +# CONFIG_SYS_HEAP_STRESS is not set +# CONFIG_SYS_HEAP_INFO is not set +CONFIG_SYS_HEAP_ALLOC_LOOPS=3 +# CONFIG_SYS_HEAP_RUNTIME_STATS is not set +CONFIG_SYS_HEAP_ARRAY_SIZE=0 +# CONFIG_SYS_HEAP_LISTENER is not set +CONFIG_SYS_HEAP_SMALL_ONLY=y +# CONFIG_SYS_HEAP_BIG_ONLY is not set +# CONFIG_SYS_HEAP_AUTO is not set +# CONFIG_MULTI_HEAP is not set +# CONFIG_SHARED_MULTI_HEAP is not set +# end of Heap and Memory Allocation + +# +# Memory Blocks +# +# CONFIG_SYS_MEM_BLOCKS is not set +# end of Memory Blocks + +# +# MIDI2 +# +# CONFIG_MIDI2_UMP_STREAM_RESPONDER is not set +# end of MIDI2 + +# CONFIG_NET_BUF is not set + +# +# OS Support Library +# +# CONFIG_FDTABLE is not set +CONFIG_ZVFS_OPEN_MAX=0 +# CONFIG_ZVFS_OPEN_IGNORE_MIN is not set +# CONFIG_PRINTK_SYNC is not set +CONFIG_MPSC_PBUF=y +# CONFIG_SPSC_PBUF is not set +# CONFIG_MPSC_CLEAR_ALLOCATED is not set +CONFIG_HAS_POWEROFF=y +# CONFIG_POWEROFF is not set +CONFIG_CBPRINTF_COMPLETE=y +# CONFIG_CBPRINTF_NANO is not set +CONFIG_CBPRINTF_FULL_INTEGRAL=y +# CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set +# CONFIG_CBPRINTF_FP_SUPPORT is not set +# CONFIG_CBPRINTF_FP_A_SUPPORT is not set +# CONFIG_CBPRINTF_LIBC_SUBSTS is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG is not set +CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT=y +CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL=3 +# CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set +CONFIG_CBPRINTF_CONVERT_CHECK_PTR=y +# CONFIG_ZVFS is not set +# CONFIG_CPU_LOAD_METRIC is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_OFF is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_ERR is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_WRN is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_INF is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_DBG is not set +CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT=y +CONFIG_CPU_LOAD_LOG_LEVEL=3 +# end of OS Support Library + +# +# POSIX API Support +# +# CONFIG_POSIX_SYSTEM_INTERFACES is not set +# CONFIG_POSIX_API is not set +# CONFIG_POSIX_AEP_CHOICE_NONE is not set +CONFIG_POSIX_AEP_CHOICE_ZEPHYR=y +# CONFIG_POSIX_AEP_CHOICE_BASE is not set +# CONFIG_POSIX_AEP_CHOICE_PSE51 is not set +# CONFIG_POSIX_AEP_CHOICE_PSE52 is not set +# CONFIG_POSIX_AEP_CHOICE_PSE53 is not set +CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R=y + +# +# POSIX C Library Extensions +# +CONFIG_POSIX_C_LANG_SUPPORT_R=y +CONFIG_POSIX_C_LIB_EXT=y +# CONFIG_GETOPT_LONG is not set +# end of POSIX C Library Extensions +# end of POSIX API Support + +# CONFIG_EVENTFD is not set +# CONFIG_SMF is not set +CONFIG_LIBGCC_RTLIB=y + +# +# Utility Library +# +# CONFIG_JSON_LIBRARY is not set +CONFIG_RING_BUFFER=y +# CONFIG_RING_BUFFER_LARGE is not set +# CONFIG_NOTIFY is not set +# CONFIG_BASE64 is not set +# CONFIG_ONOFF is not set +# CONFIG_UTF8 is not set +# CONFIG_COBS is not set +# end of Utility Library + +# +# Universally Unique Identifier (UUID) +# +# CONFIG_UUID is not set +# end of Universally Unique Identifier (UUID) + +# CONFIG_MIN_HEAP is not set +# end of Additional libraries + +# +# Subsystems and OS Services +# +# CONFIG_BINDESC is not set +# CONFIG_BT is not set + +# +# Controller Area Network (CAN) bus subsystem +# +# CONFIG_CANOPEN is not set +# CONFIG_ISOTP is not set +# end of Controller Area Network (CAN) bus subsystem + +# CONFIG_CONSOLE_SUBSYS is not set +# CONFIG_CPU_FREQ is not set +# CONFIG_CRC is not set +# CONFIG_DAP is not set + +# +# System Monitoring Options +# +# CONFIG_THREAD_ANALYZER is not set +# end of System Monitoring Options + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_UBSAN is not set +# CONFIG_STACK_USAGE is not set +# CONFIG_STACK_SENTINEL is not set +CONFIG_PRINTK=y +CONFIG_EARLY_CONSOLE=y +# CONFIG_FORCE_NO_ASSERT is not set +CONFIG_ASSERT_VERBOSE=y +# CONFIG_ASSERT_NO_FILE_INFO is not set +# CONFIG_ASSERT_NO_COND_INFO is not set +# CONFIG_ASSERT_NO_MSG_INFO is not set +# CONFIG_ASSERT_TEST is not set +# CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set +# CONFIG_DEBUG_THREAD_INFO is not set +# CONFIG_DEBUG_COREDUMP is not set +# CONFIG_SYMTAB is not set +# end of Debugging Options + +# CONFIG_MIPI_STP_DECODER is not set +# CONFIG_CS_TRACE_DEFMT is not set +# CONFIG_CPU_LOAD is not set +CONFIG_CPU_LOAD_LOG_PERIODICALLY=0 +# CONFIG_DISK_ACCESS is not set +# CONFIG_DSP is not set +# CONFIG_EMUL is not set +# CONFIG_CHARACTER_FRAMEBUFFER is not set + +# +# File Systems +# +# CONFIG_FILE_SYSTEM_LIB_LINK is not set +# CONFIG_FILE_SYSTEM is not set +# CONFIG_ZMS is not set +# end of File Systems + +# CONFIG_GNSS_RTK is not set +# CONFIG_INSTRUMENTATION is not set + +# +# Inter Processor Communication +# +# CONFIG_RPMSG_SERVICE is not set +# CONFIG_IPC_SERVICE is not set +# CONFIG_OPENAMP_RSC_TABLE is not set +# end of Inter Processor Communication + +# CONFIG_JWT is not set +# CONFIG_LLEXT is not set +# CONFIG_LLEXT_EDK is not set + +# +# Logging +# +CONFIG_LOG_CORE_INIT_PRIORITY=0 +CONFIG_LOG_MODE_DEFERRED=y +# CONFIG_LOG_MODE_IMMEDIATE is not set +# CONFIG_LOG_MODE_MINIMAL is not set +# CONFIG_LOG_FRONTEND is not set +# CONFIG_LOG_FRONTEND_OPT_API is not set +# CONFIG_LOG_CUSTOM_HEADER is not set +# CONFIG_LOG_MULTIDOMAIN is not set +CONFIG_LOG_FLUSH_SLEEP_US=10000 + +# +# Logging levels filtering +# +# CONFIG_LOG_RUNTIME_FILTERING is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_OVERRIDE_LEVEL=0 +CONFIG_LOG_MAX_LEVEL=4 +# end of Logging levels filtering + +# +# Processing +# +CONFIG_LOG_PRINTK=y +CONFIG_LOG_MODE_OVERFLOW=y +# CONFIG_LOG_BLOCK_IN_THREAD is not set +CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD=10 +CONFIG_LOG_PROCESS_THREAD=y +CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS=0 +CONFIG_LOG_PROCESS_THREAD_SLEEP_MS=1000 +# CONFIG_LOG_PROCESS_THREAD_CUSTOM_PRIORITY is not set +CONFIG_LOG_BUFFER_SIZE=1024 +CONFIG_LOG_TRACE_SHORT_TIMESTAMP=y +# CONFIG_LOG_TIMESTAMP_64BIT is not set +# CONFIG_LOG_TIMESTAMP_USE_REALTIME is not set +# CONFIG_LOG_SPEED is not set +# end of Processing + +# +# Output Formatting +# + +# +# Prepend non-hexdump log message with function name +# +# CONFIG_LOG_FUNC_NAME_PREFIX_ERR is not set +# CONFIG_LOG_FUNC_NAME_PREFIX_WRN is not set +# CONFIG_LOG_FUNC_NAME_PREFIX_INF is not set +CONFIG_LOG_FUNC_NAME_PREFIX_DBG=y +# end of Prepend non-hexdump log message with function name + +# CONFIG_LOG_MIPI_SYST_ENABLE is not set +# CONFIG_LOG_THREAD_ID_PREFIX is not set +# CONFIG_LOG_CUSTOM_FORMAT_SUPPORT is not set +CONFIG_LOG_BACKEND_SHOW_TIMESTAMP=y +CONFIG_LOG_BACKEND_SHOW_LEVEL=y +CONFIG_LOG_BACKEND_SHOW_COLOR=y +# CONFIG_LOG_INFO_COLOR_GREEN is not set +# CONFIG_LOG_DBG_COLOR_BLUE is not set +CONFIG_LOG_TAG_MAX_LEN=0 +CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP=y +CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP=y +CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP=y +# CONFIG_LOG_OUTPUT_FORMAT_DATE_TIMESTAMP is not set +# CONFIG_LOG_OUTPUT_FORMAT_ISO8601_TIMESTAMP is not set +# CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP is not set +# CONFIG_LOG_OUTPUT_FORMAT_CUSTOM_TIMESTAMP is not set +# end of Output Formatting + +# +# Backends +# +CONFIG_LOG_BACKEND_UART=y +CONFIG_LOG_BACKEND_UART_BUFFER_SIZE=1 +CONFIG_LOG_BACKEND_UART_AUTOSTART=y +CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT=y +# CONFIG_LOG_BACKEND_UART_OUTPUT_DICTIONARY is not set +# CONFIG_LOG_BACKEND_UART_OUTPUT_CUSTOM is not set +CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT=0 +# CONFIG_LOG_BACKEND_IPC_SERVICE is not set +# end of Backends + +# +# Misc +# +CONFIG_LOG_USE_VLA=y +CONFIG_LOG_SIMPLE_MSG_OPTIMIZE=y +# CONFIG_LOG_ALWAYS_RUNTIME is not set +# CONFIG_LOG_FMT_SECTION is not set +# CONFIG_LOG_FMT_STRING_VALIDATE is not set +# CONFIG_LOG_MEM_UTILIZATION is not set +CONFIG_LOG_FAILURE_REPORT_PERIOD=1000 +# end of Misc + +CONFIG_LOG_RATELIMIT=y +CONFIG_LOG_RATELIMIT_INTERVAL_MS=5000 +CONFIG_LOG_OUTPUT=y +# end of Logging + +# CONFIG_MEM_ATTR is not set + +# +# Device Management +# + +# +# Host command handler subsystem +# +# CONFIG_EC_HOST_CMD is not set +# end of Host command handler subsystem + +# CONFIG_OSDP is not set +# end of Device Management + +# CONFIG_MODBUS is not set +# CONFIG_MODEM_MODULES is not set + +# +# Networking +# +# CONFIG_NETWORKING is not set +# end of Networking + +# CONFIG_NVMEM is not set + +# +# Power Management +# +CONFIG_HAS_PM=y +# CONFIG_PM_POLICY_LATENCY_STANDALONE is not set +# end of Power Management + +# +# Platform Management Communications Infrastructure (PMCI) +# +# CONFIG_MCTP is not set +# end of Platform Management Communications Infrastructure (PMCI) + +# +# Portability +# +# end of Portability + +# CONFIG_PROFILING is not set + +# +# Random Number Generators +# +# CONFIG_TEST_RANDOM_GENERATOR is not set +CONFIG_TIMER_RANDOM_INITIAL_STATE=123456789 +# end of Random Number Generators + +# CONFIG_RTIO is not set + +# +# SD +# +# CONFIG_MMC_STACK is not set +# CONFIG_SDMMC_STACK is not set +# CONFIG_SDIO_STACK is not set +# end of SD + +# CONFIG_SECURE_STORAGE is not set +# CONFIG_SETTINGS is not set +# CONFIG_SHELL is not set +# CONFIG_STATS is not set + +# +# Storage +# +# CONFIG_STREAM_FLASH is not set +# end of Storage + +# CONFIG_TASK_WDT is not set + +# +# Testing +# +# CONFIG_ZTEST is not set +# CONFIG_ZTEST_MOCKING is not set +# CONFIG_ZTRESS is not set +# CONFIG_TEST is not set +# CONFIG_TEST_USERSPACE is not set +# end of Testing + +# +# Coverage +# +# CONFIG_FORCE_COVERAGE is not set +CONFIG_COVERAGE_DUMP_PATH_EXCLUDE="" +# end of Coverage + +# CONFIG_TIMING_FUNCTIONS is not set +# CONFIG_TRACING is not set +CONFIG_USB_DEVICE_STACK=y +# CONFIG_USB_DEVICE_LOG_LEVEL_OFF is not set +# CONFIG_USB_DEVICE_LOG_LEVEL_ERR is not set +# CONFIG_USB_DEVICE_LOG_LEVEL_WRN is not set +# CONFIG_USB_DEVICE_LOG_LEVEL_INF is not set +# CONFIG_USB_DEVICE_LOG_LEVEL_DBG is not set +CONFIG_USB_DEVICE_LOG_LEVEL_DEFAULT=y +CONFIG_USB_DEVICE_LOG_LEVEL=3 +CONFIG_USB_DEVICE_VID=0x1d50 +CONFIG_USB_DEVICE_PID=0x606f +CONFIG_USB_DEVICE_MANUFACTURER="EWS" +CONFIG_USB_DEVICE_PRODUCT="EWS gs_usb CAN-FD" +CONFIG_USB_DEVICE_SN="0123456789ABCDEF" +# CONFIG_USB_CONFIGURATION_STRING_DESC_ENABLE is not set +# CONFIG_USB_COMPOSITE_DEVICE is not set +CONFIG_USB_MAX_NUM_TRANSFERS=4 +CONFIG_USB_REQUEST_BUFFER_SIZE=128 +CONFIG_USB_MAX_ALT_SETTING=8 +CONFIG_USB_NUMOF_EP_WRITE_RETRIES=3 +# CONFIG_USB_DEVICE_SOF is not set +# CONFIG_USB_DEVICE_BOS is not set +# CONFIG_USB_DEVICE_OS_DESC is not set +CONFIG_USB_SELF_POWERED=y +CONFIG_USB_MAX_POWER=50 +# CONFIG_USB_WORKQUEUE is not set + +# +# USB CDC ACM Class support +# +# end of USB CDC ACM Class support + +# CONFIG_USB_MASS_STORAGE is not set +# CONFIG_USB_DEVICE_BLUETOOTH is not set + +# +# USB Device Networking support +# +# CONFIG_USB_DEVICE_NETWORK_ECM is not set +# CONFIG_USB_DEVICE_NETWORK_EEM is not set +# CONFIG_USB_DEVICE_NETWORK_RNDIS is not set +# end of USB Device Networking support + +# CONFIG_USB_DEVICE_HID is not set +# CONFIG_USB_DEVICE_AUDIO is not set +# CONFIG_USB_DEVICE_STACK_NEXT is not set +# CONFIG_USB_HOST_STACK is not set +# CONFIG_USBC_STACK is not set +# CONFIG_ZBUS is not set +# CONFIG_MODULES is not set +# end of Subsystems and OS Services + +CONFIG_TOOLCHAIN_ZEPHYR_0_17=y +CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y +CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS=y + +# +# Build and Link Features +# + +# +# Linker Options +# +# CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set +CONFIG_LINKER_ORPHAN_SECTION_WARN=y +# CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set +CONFIG_FLASH_LOAD_SIZE=0 +CONFIG_ROM_END_OFFSET=0 +CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y +CONFIG_LD_LINKER_TEMPLATE=y +# CONFIG_CMAKE_LINKER_GENERATOR is not set +# CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set +CONFIG_LINKER_SORT_BY_ALIGNMENT=y + +# +# Linker Sections +# +# CONFIG_LINKER_USE_BOOT_SECTION is not set +# CONFIG_LINKER_USE_PINNED_SECTION is not set +CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y +CONFIG_LINKER_LAST_SECTION_ID=y +CONFIG_LINKER_LAST_SECTION_ID_PATTERN=0xE015E015 +# end of Linker Sections + +CONFIG_LINKER_ITERABLE_SUBALIGN=4 +CONFIG_LINKER_DEVNULL_SUPPORT=y +# CONFIG_LINKER_DEVNULL_MEMORY is not set +# end of Linker Options + +# +# Compiler Options +# +# CONFIG_STD_C90 is not set +CONFIG_STD_C99=y +# CONFIG_STD_C11 is not set +# CONFIG_STD_C17 is not set +# CONFIG_STD_C23 is not set +CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS=y +# CONFIG_GNU_C_EXTENSIONS is not set +# CONFIG_CODING_GUIDELINE_CHECK is not set +# CONFIG_COMPILER_FREESTANDING is not set +CONFIG_SIZE_OPTIMIZATIONS=y +# CONFIG_SIZE_OPTIMIZATIONS_AGGRESSIVE is not set +# CONFIG_SPEED_OPTIMIZATIONS is not set +# CONFIG_DEBUG_OPTIMIZATIONS is not set +# CONFIG_NO_OPTIMIZATIONS is not set +# CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set +# CONFIG_DEPRECATION_TEST is not set +# CONFIG_COMPILER_SAVE_TEMPS is not set +CONFIG_COMPILER_TRACK_MACRO_EXPANSION=y +CONFIG_COMPILER_COLOR_DIAGNOSTICS=y +# CONFIG_FORTIFY_SOURCE_NONE is not set +CONFIG_FORTIFY_SOURCE_COMPILE_TIME=y +# CONFIG_FORTIFY_SOURCE_RUN_TIME is not set +CONFIG_COMPILER_OPT="" +# CONFIG_MISRA_SANE is not set +CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS=y +# end of Compiler Options + +# CONFIG_ASSERT_ON_ERRORS is not set +# CONFIG_NO_RUNTIME_CHECKS is not set +CONFIG_RUNTIME_ERROR_CHECKS=y + +# +# Build Options +# +CONFIG_KERNEL_BIN_NAME="zephyr" +CONFIG_OUTPUT_STAT=y +# CONFIG_OUTPUT_SYMBOLS is not set +CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y +# CONFIG_CLEANUP_INTERMEDIATE_FILES is not set +CONFIG_BUILD_GAP_FILL_PATTERN=0xFF +# CONFIG_BUILD_NO_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_HEX_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_EXE is not set +# CONFIG_BUILD_OUTPUT_S19_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_UF2 is not set +# CONFIG_BUILD_OUTPUT_MOT is not set +# CONFIG_BUILD_OUTPUT_STRIPPED is not set +# CONFIG_BUILD_OUTPUT_COMPRESS_DEBUG_SECTIONS is not set +# CONFIG_BUILD_ALIGN_LMA is not set +# CONFIG_APPLICATION_DEFINED_SYSCALL is not set +# CONFIG_MAKEFILE_EXPORTS is not set +# CONFIG_BUILD_OUTPUT_META is not set +CONFIG_BUILD_OUTPUT_STRIP_PATHS=y +CONFIG_CHECK_INIT_PRIORITIES=y +# CONFIG_EMIT_ALL_SYSCALLS is not set +# end of Build Options + +CONFIG_DEPRECATED=y +CONFIG_WARN_DEPRECATED=y +# CONFIG_WARN_EXPERIMENTAL is not set +CONFIG_ENFORCE_ZEPHYR_STDINT=y +# end of Build and Link Features + +# +# Boot Options +# +# CONFIG_IS_BOOTLOADER is not set +# CONFIG_BOOTLOADER_BOSSA is not set +# end of Boot Options + +# +# Compatibility +# +CONFIG_LEGACY_GENERATED_INCLUDE_PATH=y +# end of Compatibility diff --git a/firmware/canfd_cdc_composite/build/zephyr/.config-trace.json b/firmware/canfd_cdc_composite/build/zephyr/.config-trace.json new file mode 100644 index 0000000..0e60738 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/.config-trace.json @@ -0,0 +1,8732 @@ +[ + [ + "CONFIG_INPUT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WIFI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REGULATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE", + "y", + "int", + "1024", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 590 + ] + ], + [ + "CONFIG_MAIN_STACK_SIZE", + "y", + "int", + "4096", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 31 + ] + ], + [ + "CONFIG_SERIAL", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 12 + ] + ], + [ + "CONFIG_SPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIPI_DSI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MEMC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_INTERRUPT_DRIVEN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_HOGS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NUM_IRQS", + "n", + "int", + "31", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32\\stm32g0x\\Kconfig.defconfig.stm32g0b1xx", + 9 + ] + ], + [ + "CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC", + "y", + "int", + "64000000", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig", + 65 + ] + ], + [ + "CONFIG_FLASH_SIZE", + "y", + "int", + "512", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 252 + ] + ], + [ + "CONFIG_FLASH_BASE_ADDRESS", + "y", + "hex", + "0x8000000", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig", + 109 + ] + ], + [ + "CONFIG_MP_MAX_NUM_CPUS", + "y", + "int", + "1", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.smp", + 43 + ] + ], + [ + "CONFIG_SOC_RESET_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig", + 18 + ] + ], + [ + "CONFIG_IDLE_STACK_SIZE", + "y", + "int", + "256", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 176 + ] + ], + [ + "CONFIG_ISR_STACK_SIZE", + "y", + "int", + "2048", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 185 + ] + ], + [ + "CONFIG_SYS_CLOCK_TICKS_PER_SEC", + "y", + "int", + "10000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 806 + ] + ], + [ + "CONFIG_BUILD_OUTPUT_BIN", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 747 + ] + ], + [ + "CONFIG_ROM_START_OFFSET", + "y", + "hex", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 134 + ] + ], + [ + "CONFIG_KERNEL_ENTRY", + "y", + "string", + "__start", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 206 + ] + ], + [ + "CONFIG_XIP", + "y", + "bool", + "y", + "imply", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_HAS_FLASH_LOAD_OFFSET", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_COUNTER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SRAM_VECTOR_TABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_HAS_ARM_MPU", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_SHARED_INTERRUPTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STM32_FLASH_PREFETCH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PM_DEVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TICKLESS_KERNEL", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 1067 + ] + ], + [ + "CONFIG_CORTEX_M_SYSTICK", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\timer\\Kconfig.cortex_m_systick", + 11 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_INIT_PRIORITY", + "y", + "int", + "1", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig", + 96 + ] + ], + [ + "CONFIG_USE_DT_CODE_PARTITION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STM32_BACKUP_PROTECTION", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig", + 131 + ] + ], + [ + "CONFIG_MULTI_LEVEL_INTERRUPTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NUM_METAIRQ_PRIORITIES", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 94 + ] + ], + [ + "CONFIG_NUM_PREEMPT_PRIORITIES", + "y", + "int", + "15", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 55 + ] + ], + [ + "CONFIG_BUILD_OUTPUT_HEX", + "y", + "bool", + "y", + "select", + [ + "SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_GEN_IRQ_VECTOR_TABLE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 529 + ] + ], + [ + "CONFIG_DYNAMIC_INTERRUPTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GEN_ISR_TABLES", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core\\cortex_m/Kconfig", + 324 + ] + ], + [ + "CONFIG_INIT_STACKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMESLICE_SIZE", + "y", + "int", + "20", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 672 + ] + ], + [ + "CONFIG_FLASH_LOAD_OFFSET", + "y", + "hex", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 106 + ] + ], + [ + "CONFIG_SYS_CLOCK_EXISTS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 842 + ] + ], + [ + "CONFIG_INIT_ARCH_HW_AT_BOOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_S19", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FLASH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POWER_DOMAIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews_defconfig", + 4 + ] + ], + [ + "CONFIG_MFD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CODE_DATA_RELOCATION_SRAM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CACHE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 27 + ] + ], + [ + "CONFIG_DCACHE_LINE_SIZE", + "n", + "int", + "32", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core\\cortex_m/Kconfig", + 115 + ] + ], + [ + "CONFIG_CODE_DATA_RELOCATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ROMSTART_RELOCATION_ROM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RESET", + "y", + "bool", + "y", + "select", + [ + "UART_STM32 && DT_HAS_ST_STM32_UART_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_ARCH_SW_ISR_TABLE_ALIGN", + "y", + "int", + "4", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 587 + ] + ], + [ + "CONFIG_LOG_DOMAIN_NAME", + "y", + "string", + "", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.misc", + 124 + ] + ], + [ + "CONFIG_ASSERT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_PROCESS_THREAD_STACK_SIZE", + "y", + "int", + "768", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 91 + ] + ], + [ + "CONFIG_DEVICE_DEPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_USE_RUNTIME_CONFIGURE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\serial\\Kconfig", + 53 + ] + ], + [ + "CONFIG_SYSCON", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_EARLY_INIT_HOOK", + "y", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_CONSOLE", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 23 + ] + ], + [ + "CONFIG_WINSTREAM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE", + "y", + "int", + "-1", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\common\\Kconfig", + 64 + ] + ], + [ + "CONFIG_ATOMIC_OPERATIONS_C", + "n", + "bool", + "y", + "select", + [ + "ARMV6_M_ARMV8_M_BASELINE && !ARMV8_M_BASELINE && CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_GEN_SW_ISR_TABLE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 576 + ] + ], + [ + "CONFIG_REBOOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GEN_IRQ_START_VECTOR", + "n", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 597 + ] + ], + [ + "CONFIG_SRAM_OFFSET", + "n", + "hex", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 225 + ] + ], + [ + "CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN", + "y", + "int", + "4", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 541 + ] + ], + [ + "CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 475 + ] + ], + [ + "CONFIG_BOOTLOADER_MCUBOOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_CPU_MASK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_MEM_POOL", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 748 + ] + ], + [ + "CONFIG_MULTITHREADING", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 14 + ] + ], + [ + "CONFIG_OUTPUT_DISASSEMBLY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_USE_RELAX", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 318 + ] + ], + [ + "CONFIG_WATCHDOG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ICACHE_LINE_SIZE", + "n", + "int", + "32", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core\\cortex_m/Kconfig", + 118 + ] + ], + [ + "CONFIG_DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 933 + ] + ], + [ + "CONFIG_DT_HAS_ARM_CORTEX_M0__ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 1043 + ] + ], + [ + "CONFIG_DT_HAS_ARM_V6M_NVIC_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 1303 + ] + ], + [ + "CONFIG_DT_HAS_FIXED_CLOCK_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 2558 + ] + ], + [ + "CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 2573 + ] + ], + [ + "CONFIG_DT_HAS_GPIO_KEYS_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 2823 + ] + ], + [ + "CONFIG_DT_HAS_GPIO_LEDS_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 2828 + ] + ], + [ + "CONFIG_DT_HAS_MMIO_SRAM_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 5133 + ] + ], + [ + "CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 10863 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_EXTI_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11348 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_FDCAN_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11353 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11358 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_GPIO_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11383 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11403 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_LPTIM_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11438 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_NV_FLASH_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11478 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_PINCTRL_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11508 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_RCC_RCTL_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11543 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_RTC_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11558 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_TEMP_CAL_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11608 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_UART_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11623 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_USART_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11633 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_USB_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11638 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_VBAT_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11648 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_VREF_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11658 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32_WATCHDOG_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11663 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32F0_RCC_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11703 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32G0_EXTI_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11813 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11818 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11823 + ] + ], + [ + "CONFIG_DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 11828 + ] + ], + [ + "CONFIG_DT_HAS_USB_NOP_XCEIV_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 13258 + ] + ], + [ + "CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 14408 + ] + ], + [ + "CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.dts", + 14528 + ] + ], + [ + "CONFIG_BUILD_ONLY_NO_BLOBS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ACPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_ACPICA_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 5 + ] + ], + [ + "CONFIG_ZEPHYR_CMSIS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 11 + ] + ], + [ + "CONFIG_HAS_CMSIS_CORE", + "n", + "bool", + "y", + "select", + [ + "HAS_STM32CUBE && SOC_FAMILY_STM32", + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ZEPHYR_CMSIS_DSP_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 17 + ] + ], + [ + "CONFIG_CMSIS_DSP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_CMSIS_NN_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 23 + ] + ], + [ + "CONFIG_CMSIS_NN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_CMSIS_6_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 29 + ] + ], + [ + "CONFIG_HAS_CMSIS_CORE_M", + "n", + "bool", + "y", + "select", + [ + "HAS_CMSIS_CORE && CPU_CORTEX_M" + ] + ], + [ + "CONFIG_CMSIS_M_CHECK_DEVICE_DEFINES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_FATFS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 35 + ] + ], + [ + "CONFIG_ZEPHYR_ADI_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 39 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_AFBR_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 44 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_AMBIQ_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 53 + ] + ], + [ + "CONFIG_ZEPHYR_ATMEL_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 57 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 62 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 68 + ] + ], + [ + "CONFIG_ETHOS_U", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 77 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 83 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_INFINEON_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 89 + ] + ], + [ + "CONFIG_USE_INFINEON_ABSTRACTION_RTOS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_INTEL_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 98 + ] + ], + [ + "CONFIG_ZEPHYR_MICROCHIP_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 102 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_NORDIC_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 107 + ] + ], + [ + "CONFIG_ZEPHYR_NUVOTON_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 114 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_NXP_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 119 + ] + ], + [ + "CONFIG_ZEPHYR_OPENISA_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 126 + ] + ], + [ + "CONFIG_ZEPHYR_QUICKLOGIC_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 129 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_RENESAS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 132 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 140 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_SIFLI_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 146 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_SILABS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 152 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_ST_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 161 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_STM32_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 165 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_TDK_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 173 + ] + ], + [ + "CONFIG_TDK_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_TELINK_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 179 + ] + ], + [ + "CONFIG_ZEPHYR_TI_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 183 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_WCH_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 188 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 192 + ] + ], + [ + "CONFIG_ZEPHYR_XTENSA_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 195 + ] + ], + [ + "CONFIG_WIFI_NM_WPA_SUPPLICANT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HOSTAP_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 200 + ] + ], + [ + "CONFIG_ZEPHYR_LIBLC3_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 206 + ] + ], + [ + "CONFIG_ZEPHYR_LIBMCTP_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 210 + ] + ], + [ + "CONFIG_ZEPHYR_LIBMETAL_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 213 + ] + ], + [ + "CONFIG_ZEPHYR_LIBSBC_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 218 + ] + ], + [ + "CONFIG_LIBSBC_ENCODER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LIBSBC_DECODER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_LITTLEFS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 224 + ] + ], + [ + "CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 230 + ] + ], + [ + "CONFIG_ZEPHYR_LORAMAC_NODE_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 236 + ] + ], + [ + "CONFIG_HAS_SEMTECH_RADIO_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_LVGL_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 242 + ] + ], + [ + "CONFIG_ZEPHYR_MBEDTLS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 248 + ] + ], + [ + "CONFIG_PSA_CRYPTO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MBEDTLS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_MCUBOOT_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 252 + ] + ], + [ + "CONFIG_ZEPHYR_MIPI_SYS_T_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 255 + ] + ], + [ + "CONFIG_ZEPHYR_NANOPB_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 260 + ] + ], + [ + "CONFIG_NANOPB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_NRF_WIFI_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 266 + ] + ], + [ + "CONFIG_NRF70_BUSLIB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_OPEN_AMP_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 273 + ] + ], + [ + "CONFIG_OPENTHREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_OPENTHREAD_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 278 + ] + ], + [ + "CONFIG_PERCEPIO_DFM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_PERCEPIO_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 284 + ] + ], + [ + "CONFIG_PICOLIBC_MODULE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_PICOLIBC_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 290 + ] + ], + [ + "CONFIG_ZEPHYR_SEGGER_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 296 + ] + ], + [ + "CONFIG_HAS_SEGGER_RTT", + "n", + "bool", + "y", + "select", + [ + "SOC_FAMILY_STM32 && ZEPHYR_SEGGER_MODULE" + ] + ], + [ + "CONFIG_USE_SEGGER_RTT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 302 + ] + ], + [ + "CONFIG_BUILD_WITH_TFA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 308 + ] + ], + [ + "CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 314 + ] + ], + [ + "CONFIG_ZEPHYR_ZCBOR_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 320 + ] + ], + [ + "CONFIG_ZCBOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/Kconfig/Kconfig.modules", + 324 + ] + ], + [ + "CONFIG_LIBMETAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LVGL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_MEC_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_MPFS_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_MEC5_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OPENAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_STM32CUBE", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_USE_STM32_HAL_PCD", + "n", + "bool", + "y", + "select", + [ + "USB_DC_STM32 && (DT_HAS_ST_STM32_OTGFS_ENABLED || DT_HAS_ST_STM32_OTGHS_ENABLED || DT_HAS_ST_STM32_USB_ENABLED) && USB_DEVICE_DRIVER" + ] + ], + [ + "CONFIG_USE_STM32_HAL_PCD_EX", + "n", + "bool", + "y", + "select", + [ + "USB_DC_STM32 && (DT_HAS_ST_STM32_OTGFS_ENABLED || DT_HAS_ST_STM32_OTGHS_ENABLED || DT_HAS_ST_STM32_USB_ENABLED) && USB_DEVICE_DRIVER" + ] + ], + [ + "CONFIG_USE_STM32_LL_USB", + "n", + "bool", + "y", + "select", + [ + "USB_DC_STM32 && (DT_HAS_ST_STM32_OTGFS_ENABLED || DT_HAS_ST_STM32_OTGHS_ENABLED || DT_HAS_ST_STM32_USB_ENABLED) && USB_DEVICE_DRIVER" + ] + ], + [ + "CONFIG_USE_STM32_LL_UTILS", + "n", + "bool", + "y", + "select", + [ + "CLOCK_CONTROL_STM32_CUBE && SOC_FAMILY_STM32 && CLOCK_CONTROL" + ] + ], + [ + "CONFIG_MIPI_SYST_LIB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_TELINK_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MCUBOOT_BOOTUTIL_LIB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD", + "n", + "string", + "ews", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\boards\\Kconfig", + 5 + ] + ], + [ + "CONFIG_BOARD_REVISION", + "n", + "string", + "", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\boards\\Kconfig", + 14 + ] + ], + [ + "CONFIG_BOARD_TARGET", + "n", + "string", + "ews/stm32g0b1xx", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\boards\\Kconfig", + 24 + ] + ], + [ + "CONFIG_NET_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD_EWS", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\boards\\Kconfig.v2", + 10 + ] + ], + [ + "CONFIG_BOARD_EWS_STM32G0B1XX", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\boards\\Kconfig.v2", + 15 + ] + ], + [ + "CONFIG_BOARD_QUALIFIERS", + "n", + "string", + "stm32g0b1xx", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\boards\\Kconfig.v2", + 21 + ] + ], + [ + "CONFIG_SOC", + "n", + "string", + "stm32g0b1xx", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32\\stm32g0x\\Kconfig.soc", + 74 + ] + ], + [ + "CONFIG_SOC_SERIES", + "n", + "string", + "stm32g0x", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32\\stm32g0x\\Kconfig.soc", + 13 + ] + ], + [ + "CONFIG_SOC_FAMILY", + "n", + "string", + "stm32", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc", + 10 + ] + ], + [ + "CONFIG_SOC_FAMILY_STM32", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X" + ] + ], + [ + "CONFIG_SOC_SERIES_STM32G0X", + "n", + "bool", + "y", + "select", + [ + "SOC_STM32G0B1XX" + ] + ], + [ + "CONFIG_SOC_STM32G0B1XX", + "n", + "bool", + "y", + "select", + [ + "BOARD_EWS" + ] + ], + [ + "CONFIG_HWINFO", + "y", + "bool", + "y", + "select", + [ + "USB_DEVICE_STACK" + ] + ], + [ + "CONFIG_STM32_ENABLE_DEBUG_SLEEP_STOP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SWJ_ANALOG_PRIORITY", + "y", + "int", + "49", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/Kconfig", + 52 + ] + ], + [ + "CONFIG_HAS_STM32_FLASH_PREFETCH", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_BUILD_OUTPUT_INFO_HEADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_INIT_PRIORITY", + "y", + "int", + "40", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\gpio\\Kconfig", + 50 + ] + ], + [ + "CONFIG_SOC_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_SOC_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_ARCH", + "n", + "string", + "arm", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm/Kconfig", + 10 + ] + ], + [ + "CONFIG_EXTRA_EXCEPTION_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_CPU_CORTEX", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE", + "n", + "int", + "4", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core\\mpu/Kconfig", + 15 + ] + ], + [ + "CONFIG_CPU_CORTEX_M", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M0PLUS && ARM" + ] + ], + [ + "CONFIG_ARM_ZIMAGE_HEADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ISA_THUMB2", + "n", + "bool", + "y", + "select", + [ + "ARMV6_M_ARMV8_M_BASELINE && CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ASSEMBLER_ISA_THUMB2", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core/Kconfig", + 117 + ] + ], + [ + "CONFIG_COMPILER_ISA_THUMB2", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core/Kconfig", + 134 + ] + ], + [ + "CONFIG_STACK_ALIGN_DOUBLE_WORD", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core/Kconfig", + 152 + ] + ], + [ + "CONFIG_RUNTIME_NMI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PLATFORM_SPECIFIC_INIT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FAULT_DUMP", + "y", + "int", + "2", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core/Kconfig", + 180 + ] + ], + [ + "CONFIG_FP16", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core/Kconfig", + 299 + ] + ], + [ + "CONFIG_FP16_IEEE", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core/Kconfig", + 307 + ] + ], + [ + "CONFIG_FP16_ALT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_CORTEX_M0PLUS", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_CPU_CORTEX_M_HAS_SYSTICK", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_CPU_CORTEX_M_HAS_VTOR", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_ARMV6_M_ARMV8_M_BASELINE", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M0PLUS && ARM" + ] + ], + [ + "CONFIG_SW_VECTOR_RELAY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE", + "y", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyrproject/zephyr/arch/arm\\core\\cortex_m/Kconfig", + 418 + ] + ], + [ + "CONFIG_ARM", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_ARCH_IS_SET", + "n", + "bool", + "y", + "select", + [ + "ARM" + ] + ], + [ + "CONFIG_SEMIHOST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_SUPPORTS_ROM_OFFSET", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\common\\Kconfig", + 29 + ] + ], + [ + "CONFIG_ARM_MPU", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_ARCH_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_LITTLE_ENDIAN", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 205 + ] + ], + [ + "CONFIG_SRAM_SIZE", + "y", + "int", + "144", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 221 + ] + ], + [ + "CONFIG_SRAM_BASE_ADDRESS", + "y", + "hex", + "0x20000000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 229 + ] + ], + [ + "CONFIG_NOINIT_SNIPPET_FIRST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GEN_PRIV_STACKS", + "n", + "bool", + "y", + "select", + [ + "ARM" + ] + ], + [ + "CONFIG_STACK_GROWS_UP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FRAME_POINTER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ISR_TABLES_LOCAL_DECLARATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_DEVICE_STATE_ALIGN", + "y", + "int", + "4", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 551 + ] + ], + [ + "CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 559 + ] + ], + [ + "CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SRAM_SW_ISR_TABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EXCEPTION_DEBUG", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 642 + ] + ], + [ + "CONFIG_SIMPLIFIED_EXCEPTION_CODES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_HAS_RAMFUNC_SUPPORT", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_HAS_VECTOR_TABLE_RELOCATION", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && CPU_CORTEX_M_HAS_VTOR && ARM" + ] + ], + [ + "CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_COREDUMP", + "n", + "bool", + "y", + "select", + [ + "ARM && CPU_CORTEX_M" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS", + "n", + "bool", + "y", + "select", + [ + "ARM && CPU_CORTEX_M" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR", + "n", + "bool", + "y", + "select", + [ + "ARM && CPU_CORTEX_M" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_ROM_START", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE", + "n", + "bool", + "y", + "select", + [ + "ARM && (CPU_AARCH32_CORTEX_R || CPU_CORTEX_M || CPU_AARCH32_CORTEX_A)" + ] + ], + [ + "CONFIG_ARCH_HAS_SUSPEND_TO_RAM", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_HAS_THREAD_ABORT", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_ARCH_HAS_CODE_DATA_RELOCATION", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_CPU_HAS_MPU", + "n", + "bool", + "y", + "select", + [ + "CPU_HAS_ARM_MPU && ARM" + ] + ], + [ + "CONFIG_MPU", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\arch\\Kconfig", + 1191 + ] + ], + [ + "CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_KERNEL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_NUM_COOP_PRIORITIES", + "y", + "int", + "16", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 30 + ] + ], + [ + "CONFIG_MAIN_THREAD_PRIORITY", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 73 + ] + ], + [ + "CONFIG_COOP_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 79 + ] + ], + [ + "CONFIG_PREEMPT_ENABLED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 82 + ] + ], + [ + "CONFIG_PRIORITY_CEILING", + "y", + "int", + "-127", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 86 + ] + ], + [ + "CONFIG_SCHED_DEADLINE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_STACK_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_CUSTOM_DATA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_DUMB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_SIMPLE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 309 + ] + ], + [ + "CONFIG_SCHED_SCALABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_MULTIQ", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WAITQ_DUMB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WAITQ_SCALABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WAITQ_SIMPLE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 369 + ] + ], + [ + "CONFIG_LIBC_ERRNO", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && THREAD_LOCAL_STORAGE && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_ERRNO", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 406 + ] + ], + [ + "CONFIG_CURRENT_THREAD_USE_TLS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 430 + ] + ], + [ + "CONFIG_BOOT_BANNER", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 459 + ] + ], + [ + "CONFIG_BOOT_BANNER_STRING", + "y", + "string", + "Booting Zephyr OS build", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 468 + ] + ], + [ + "CONFIG_BOOT_DELAY", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 475 + ] + ], + [ + "CONFIG_BOOT_CLEAR_SCREEN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_MONITOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_NAME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_RUNTIME_STATS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OBJ_CORE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WORKQUEUE_WORK_TIMEOUT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_PRIORITY", + "y", + "int", + "-1", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 596 + ] + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_NO_YIELD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 614 + ] + ], + [ + "CONFIG_BARRIER_OPERATIONS_ARCH", + "n", + "bool", + "y", + "select", + [ + "ARM" + ] + ], + [ + "CONFIG_TIMESLICING", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 664 + ] + ], + [ + "CONFIG_TIMESLICE_PRIORITY", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 683 + ] + ], + [ + "CONFIG_TIMESLICE_PER_THREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POLL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MEM_SLAB_POINTER_VALIDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NUM_MBOX_ASYNC_MSGS", + "y", + "int", + "10", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 726 + ] + ], + [ + "CONFIG_EVENTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HEAP_MEM_POOL_SIZE", + "y", + "int", + "8192", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 32 + ] + ], + [ + "CONFIG_HEAP_MEM_POOL_IGNORE_MIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SWAP_NONATOMIC", + "n", + "bool", + "y", + "select", + [ + "CPU_CORTEX_M && ARM" + ] + ], + [ + "CONFIG_TIMEOUT_64BIT", + "y", + "bool", + "y", + "select", + [ + "MPSC_PBUF" + ] + ], + [ + "CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS", + "y", + "int", + "365", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 863 + ] + ], + [ + "CONFIG_TICKET_SPINLOCKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE", + "n", + "bool", + "y", + "select", + [ + "TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE" + ] + ], + [ + "CONFIG_THREAD_LOCAL_STORAGE", + "y", + "bool", + "y", + "select", + [ + "PICOLIBC_USE_TOOLCHAIN && ARCH_HAS_THREAD_LOCAL_STORAGE && TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE && y = y && " + ] + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig", + 1097 + ] + ], + [ + "CONFIG_STATIC_INIT_GNU", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOOTARGS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEVICE_MUTABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEVICE_DT_METADATA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEVICE_DEINIT_SUPPORT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.device", + 38 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_OBJECTS", + "y", + "int", + "30", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.device", + 52 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_LIBC", + "y", + "int", + "35", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.device", + 60 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_DEFAULT", + "y", + "int", + "40", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.device", + 68 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_DEVICE", + "y", + "int", + "50", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.device", + 74 + ] + ], + [ + "CONFIG_APPLICATION_INIT_PRIORITY", + "y", + "int", + "90", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\kernel\\Kconfig.device", + 82 + ] + ], + [ + "CONFIG_SOC_EARLY_RESET_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_PREP_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LATE_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_PER_CORE_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD_EARLY_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD_LATE_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ADC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_AUDIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_AUXDISPLAY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BBRAM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 16 + ] + ], + [ + "CONFIG_CAN_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CAN_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_CAN_INIT_PRIORITY", + "y", + "int", + "80", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig", + 22 + ] + ], + [ + "CONFIG_CAN_DEFAULT_BITRATE", + "y", + "int", + "125000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig", + 28 + ] + ], + [ + "CONFIG_CAN_DEFAULT_BITRATE_DATA", + "y", + "int", + "1000000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig", + 35 + ] + ], + [ + "CONFIG_CAN_SAMPLE_POINT_MARGIN", + "y", + "int", + "50", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig", + 43 + ] + ], + [ + "CONFIG_CAN_ACCEPT_RTR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_FD_MODE", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 17 + ] + ], + [ + "CONFIG_CAN_MANUAL_RECOVERY_MODE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_RX_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN_MAX_STD_ID_FILTER", + "y", + "int", + "28", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig.stm32", + 62 + ] + ], + [ + "CONFIG_CAN_MAX_EXT_ID_FILTER", + "y", + "int", + "8", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig.stm32", + 70 + ] + ], + [ + "CONFIG_CAN_STM32_FDCAN", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\Kconfig.stm32", + 53 + ] + ], + [ + "CONFIG_CAN_MCAN", + "n", + "bool", + "y", + "select", + [ + "CAN_STM32_FDCAN && DT_HAS_ST_STM32_FDCAN_ENABLED && CAN" + ] + ], + [ + "CONFIG_CAN_TRANSCEIVER_INIT_PRIORITY", + "y", + "int", + "45", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\can\\transceiver\\Kconfig", + 10 + ] + ], + [ + "CONFIG_CHARGER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_STM32_CUBE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\clock_control\\Kconfig.stm32", + 11 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPARATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE_INPUT_MAX_LINE_LEN", + "y", + "int", + "128", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\console\\Kconfig", + 16 + ] + ], + [ + "CONFIG_CONSOLE_HAS_DRIVER", + "n", + "bool", + "y", + "select", + [ + "UART_CONSOLE && SERIAL && SERIAL_HAS_DRIVER && CONSOLE" + ] + ], + [ + "CONFIG_CONSOLE_HANDLER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE_INIT_PRIORITY", + "y", + "int", + "60", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\console\\Kconfig", + 37 + ] + ], + [ + "CONFIG_UART_CONSOLE", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 24 + ] + ], + [ + "CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_MCUMGR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RAM_CONSOLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPM_CONSOLE_SENDER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPM_CONSOLE_RECEIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_MCUMGR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_EFI_CONSOLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COREDUMP_DEVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CRC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CRYPTO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DAC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DAI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DISK_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DISPLAY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DMA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DP_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EDAC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EEPROM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ENTROPY_GENERATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARM_SCMI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FPGA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FUEL_GAUGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GNSS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_GPIO_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_GPIO_GET_DIRECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_GET_CONFIG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\gpio\\Kconfig.stm32", + 9 + ] + ], + [ + "CONFIG_HAPTICS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWINFO_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWINFO_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWINFO_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWINFO_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWINFO_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWINFO_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_HWINFO_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_HWINFO_HAS_DRIVER", + "n", + "bool", + "y", + "select", + [ + "HWINFO_STM32 && SOC_FAMILY_STM32 && !SOC_SERIES_STM32WB0X && HWINFO" + ] + ], + [ + "CONFIG_HWINFO_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\hwinfo\\Kconfig.stm32", + 6 + ] + ], + [ + "CONFIG_HWSPINLOCK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_I2C", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_I2S", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_I3C", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_INIT_PRIORITY", + "y", + "int", + "40", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\interrupt_controller\\Kconfig", + 51 + ] + ], + [ + "CONFIG_INTC_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_INTC_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_EXTI_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\interrupt_controller\\Kconfig.stm32", + 11 + ] + ], + [ + "CONFIG_GPIO_INTC_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\interrupt_controller\\Kconfig.stm32", + 18 + ] + ], + [ + "CONFIG_IPM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LED_STRIP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MBOX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MDIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIPI_DBI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMEAWARE_GPIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MM_DRV", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MSPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OPAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PCIE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PCIE_ENDPOINT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PECI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL", + "y", + "bool", + "y", + "select", + [ + "CAN_STM32_FDCAN && DT_HAS_ST_STM32_FDCAN_ENABLED && CAN", + "UART_STM32 && DT_HAS_ST_STM32_UART_ENABLED && SERIAL", + "USB_DC_STM32 && (DT_HAS_ST_STM32_OTGFS_ENABLED || DT_HAS_ST_STM32_OTGHS_ENABLED || DT_HAS_ST_STM32_USB_ENABLED) && USB_DEVICE_DRIVER" + ] + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_PINCTRL_DYNAMIC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_KEEP_SLEEP_STATE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\pinctrl\\Kconfig", + 39 + ] + ], + [ + "CONFIG_PINCTRL_NPCX_EX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\pinctrl\\Kconfig.stm32", + 6 + ] + ], + [ + "CONFIG_PINCTRL_STM32_REMAP_INIT_PRIORITY", + "y", + "int", + "2", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\pinctrl\\Kconfig.stm32", + 13 + ] + ], + [ + "CONFIG_PM_CPU_OPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PS2", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PSI5", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PTP_CLOCK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PWM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RESET_INIT_PRIORITY", + "y", + "int", + "35", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\reset\\Kconfig", + 21 + ] + ], + [ + "CONFIG_RESET_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\reset\\Kconfig.stm32", + 6 + ] + ], + [ + "CONFIG_RETAINED_MEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RTC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SDHC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SENSOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SENT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SERIAL_HAS_DRIVER", + "n", + "bool", + "y", + "select", + [ + "UART_STM32 && DT_HAS_ST_STM32_UART_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_SERIAL_SUPPORT_INTERRUPT", + "n", + "bool", + "y", + "select", + [ + "UART_STM32 && DT_HAS_ST_STM32_UART_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_SERIAL_INIT_PRIORITY", + "y", + "int", + "50", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\serial\\Kconfig", + 36 + ] + ], + [ + "CONFIG_UART_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_UART_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_UART_LINE_CTRL", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 13 + ] + ], + [ + "CONFIG_UART_DRV_CMD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_WIDE_DATA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_PIPE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_ASYNC_RX_HELPER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_NATIVE_POSIX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_NPCX_FIFO_EX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\serial\\Kconfig.stm32", + 8 + ] + ], + [ + "CONFIG_SMBUS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STEPPER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMER_HAS_64BIT_CYCLE_COUNTER", + "n", + "bool", + "y", + "select", + [ + "CORTEX_M_SYSTICK_64BIT_CYCLE_COUNTER && CORTEX_M_SYSTICK && SYS_CLOCK_EXISTS" + ] + ], + [ + "CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_CLOCK_INIT_PRIORITY", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\timer\\Kconfig", + 35 + ] + ], + [ + "CONFIG_TICKLESS_CAPABLE", + "n", + "bool", + "y", + "select", + [ + "CORTEX_M_SYSTICK && CPU_CORTEX_M_HAS_SYSTICK && (DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV7M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV8_1M_SYSTICK_ENABLED) && SYS_CLOCK_EXISTS" + ] + ], + [ + "CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT", + "n", + "bool", + "y", + "select", + [ + "CORTEX_M_SYSTICK && CPU_CORTEX_M_HAS_SYSTICK && (DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV7M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV8_1M_SYSTICK_ENABLED) && SYS_CLOCK_EXISTS" + ] + ], + [ + "CONFIG_CORTEX_M_SYSTICK_INSTALL_ISR", + "n", + "bool", + "y", + "select", + [ + "CORTEX_M_SYSTICK && CPU_CORTEX_M_HAS_SYSTICK && (DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV7M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED || DT_HAS_ARM_ARMV8_1M_SYSTICK_ENABLED) && SYS_CLOCK_EXISTS" + ] + ], + [ + "CONFIG_CORTEX_M_SYSTICK_64BIT_CYCLE_COUNTER", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\timer\\Kconfig.cortex_m_systick", + 33 + ] + ], + [ + "CONFIG_CORTEX_M_SYSTICK_LPM_TIMER_NONE", + "y", + "bool", + "y", + "default", + null + ], + [ + "CONFIG_USB_BC12", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UDC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UHC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UVB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_DRIVER", + "y", + "bool", + "y", + "select", + [ + "USB_DEVICE_STACK" + ] + ], + [ + "CONFIG_USB_DC_HAS_HS_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_REMOTE_WAKEUP", + "y", + "bool", + "y", + "imply", + [ + "USB_DC_STM32 && (DT_HAS_ST_STM32_OTGFS_ENABLED || DT_HAS_ST_STM32_OTGHS_ENABLED || DT_HAS_ST_STM32_USB_ENABLED) && USB_DEVICE_DRIVER" + ] + ], + [ + "CONFIG_USB_DC_STM32", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\usb\\device\\Kconfig", + 50 + ] + ], + [ + "CONFIG_USB_DC_STM32_CLOCK_CHECK", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\drivers\\usb\\device\\Kconfig", + 66 + ] + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_USB_DRIVER_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_USBC_TCPC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_VBUS_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_PPC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_VIDEO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_VIRTIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_VIRTUALIZATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_W1", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REQUIRES_FULL_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REQUIRES_FLOAT_PRINTF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LIBC_ALLOW_LESS_THAN_64BIT_TIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FULL_LIBC_SUPPORTED", + "n", + "bool", + "y", + "select", + [ + "NEWLIB_LIBC_SUPPORTED && y = y", + "PICOLIBC_SUPPORTED && (y = y || (ZEPHYR_PICOLIBC_MODULE && !REQUIRES_FULL_LIBCPP))" + ] + ], + [ + "CONFIG_MINIMAL_LIBC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\Kconfig", + 42 + ] + ], + [ + "CONFIG_NEWLIB_LIBC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\Kconfig", + 48 + ] + ], + [ + "CONFIG_PICOLIBC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\Kconfig", + 58 + ] + ], + [ + "CONFIG_MINIMAL_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\Kconfig", + 81 + ] + ], + [ + "CONFIG_NEWLIB_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EXTERNAL_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_NEWLIB_LIBC_NANO", + "n", + "bool", + "y", + "select", + [ + "TOOLCHAIN_ZEPHYR_0_17 && !XTENSA" + ] + ], + [ + "CONFIG_COMMON_LIBC_ABORT", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_COMMON_LIBC_ASCTIME_R", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_CTIME_R", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_TIME", + "n", + "bool", + "y", + "imply", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_COMMON_LIBC_MALLOC", + "y", + "bool", + "y", + "imply", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_COMMON_LIBC_CALLOC", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\common\\Kconfig", + 88 + ] + ], + [ + "CONFIG_COMMON_LIBC_REALLOCARRAY", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\common\\Kconfig", + 97 + ] + ], + [ + "CONFIG_COMMON_LIBC_REMOVE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC_USE_MODULE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC_USE_TOOLCHAIN", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\Kconfig", + 8 + ] + ], + [ + "CONFIG_PICOLIBC_IO_FLOAT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC_IO_LONG_LONG", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\picolibc\\Kconfig", + 34 + ] + ], + [ + "CONFIG_STDOUT_CONSOLE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\libc\\Kconfig", + 173 + ] + ], + [ + "CONFIG_NEED_LIBC_MEM_PARTITION", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && ", + "COMMON_LIBC_MALLOC && COMMON_LIBC_MALLOC_ARENA_SIZE != 0" + ] + ], + [ + "CONFIG_CPP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HASH_FUNC32", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HASH_MAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_STRESS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_ALLOC_LOOPS", + "y", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\heap\\Kconfig", + 36 + ] + ], + [ + "CONFIG_SYS_HEAP_RUNTIME_STATS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_ARRAY_SIZE", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\heap\\Kconfig", + 57 + ] + ], + [ + "CONFIG_SYS_HEAP_LISTENER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_SMALL_ONLY", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\heap\\Kconfig", + 84 + ] + ], + [ + "CONFIG_SYS_HEAP_BIG_ONLY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_AUTO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MULTI_HEAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SHARED_MULTI_HEAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_MEM_BLOCKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIDI2_UMP_STREAM_RESPONDER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NET_BUF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FDTABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZVFS_OPEN_MAX", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\Kconfig", + 15 + ] + ], + [ + "CONFIG_ZVFS_OPEN_IGNORE_MIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PRINTK_SYNC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MPSC_PBUF", + "y", + "bool", + "y", + "select", + [ + "LOG_MODE_DEFERRED && " + ] + ], + [ + "CONFIG_SPSC_PBUF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MPSC_CLEAR_ALLOCATED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_POWEROFF", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_POWEROFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_COMPLETE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\Kconfig.cbprintf", + 6 + ] + ], + [ + "CONFIG_CBPRINTF_NANO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_FULL_INTEGRAL", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\Kconfig.cbprintf", + 29 + ] + ], + [ + "CONFIG_CBPRINTF_REDUCED_INTEGRAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_FP_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_FP_A_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_LIBC_SUBSTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_CONVERT_CHECK_PTR", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\os\\Kconfig.cbprintf", + 170 + ] + ], + [ + "CONFIG_ZVFS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_METRIC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_POSIX_SYSTEM_INTERFACES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_API", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_NONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_ZEPHYR", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\posix\\Kconfig.profile", + 29 + ] + ], + [ + "CONFIG_POSIX_AEP_CHOICE_BASE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_PSE51", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_PSE52", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_PSE53", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_POSIX_C_LANG_SUPPORT_R", + "y", + "bool", + "y", + "select", + [ + "POSIX_AEP_CHOICE_ZEPHYR && " + ] + ], + [ + "CONFIG_POSIX_C_LIB_EXT", + "y", + "bool", + "y", + "select", + [ + "POSIX_AEP_CHOICE_ZEPHYR && " + ] + ], + [ + "CONFIG_GETOPT_LONG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EVENTFD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SMF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LIBGCC_RTLIB", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\lib\\runtime\\Kconfig", + 13 + ] + ], + [ + "CONFIG_JSON_LIBRARY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RING_BUFFER", + "y", + "bool", + "y", + "select", + [ + "MULTITHREADING" + ] + ], + [ + "CONFIG_RING_BUFFER_LARGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NOTIFY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BASE64", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ONOFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UTF8", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COBS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UUID", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIN_HEAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BINDESC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CANOPEN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ISOTP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE_SUBSYS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_FREQ", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CRC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_ANALYZER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UBSAN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STACK_USAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STACK_SENTINEL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PRINTK", + "y", + "bool", + "y", + "select", + [ + "BOOT_BANNER" + ] + ], + [ + "CONFIG_EARLY_CONSOLE", + "y", + "bool", + "y", + "select", + [ + "BOOT_BANNER" + ] + ], + [ + "CONFIG_FORCE_NO_ASSERT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_VERBOSE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\debug\\Kconfig", + 230 + ] + ], + [ + "CONFIG_ASSERT_NO_FILE_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_NO_COND_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_NO_MSG_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_TEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_THREAD_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_COREDUMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYMTAB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIPI_STP_DECODER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CS_TRACE_DEFMT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_PERIODICALLY", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\debug\\Kconfig", + 374 + ] + ], + [ + "CONFIG_DISK_ACCESS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DSP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EMUL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CHARACTER_FRAMEBUFFER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FILE_SYSTEM_LIB_LINK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FILE_SYSTEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZMS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GNSS_RTK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INSTRUMENTATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RPMSG_SERVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPC_SERVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OPENAMP_RSC_TABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_JWT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LLEXT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LLEXT_EDK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_CORE_INIT_PRIORITY", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig", + 18 + ] + ], + [ + "CONFIG_LOG_MODE_DEFERRED", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.mode", + 9 + ] + ], + [ + "CONFIG_LOG_MODE_IMMEDIATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_MODE_MINIMAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FRONTEND", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FRONTEND_OPT_API", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_CUSTOM_HEADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_MULTIDOMAIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FLUSH_SLEEP_US", + "y", + "int", + "10000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.mode", + 83 + ] + ], + [ + "CONFIG_LOG_RUNTIME_FILTERING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_DEFAULT_LEVEL", + "y", + "int", + "3", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 28 + ] + ], + [ + "CONFIG_LOG_OVERRIDE_LEVEL", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.filtering", + 30 + ] + ], + [ + "CONFIG_LOG_MAX_LEVEL", + "y", + "int", + "4", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.filtering", + 47 + ] + ], + [ + "CONFIG_LOG_PRINTK", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 10 + ] + ], + [ + "CONFIG_LOG_MODE_OVERFLOW", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 19 + ] + ], + [ + "CONFIG_LOG_BLOCK_IN_THREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD", + "y", + "int", + "10", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 44 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 55 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 66 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD_SLEEP_MS", + "y", + "int", + "1000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 73 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD_CUSTOM_PRIORITY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BUFFER_SIZE", + "y", + "int", + "1024", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 123 + ] + ], + [ + "CONFIG_LOG_TRACE_SHORT_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.processing", + 152 + ] + ], + [ + "CONFIG_LOG_TIMESTAMP_64BIT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_TIMESTAMP_USE_REALTIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_SPEED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_DBG", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 20 + ] + ], + [ + "CONFIG_LOG_MIPI_SYST_ENABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_THREAD_ID_PREFIX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_CUSTOM_FORMAT_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_SHOW_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 137 + ] + ], + [ + "CONFIG_LOG_BACKEND_SHOW_LEVEL", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 143 + ] + ], + [ + "CONFIG_LOG_BACKEND_SHOW_COLOR", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 150 + ] + ], + [ + "CONFIG_LOG_INFO_COLOR_GREEN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_DBG_COLOR_BLUE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_TAG_MAX_LEN", + "y", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 166 + ] + ], + [ + "CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP", + "n", + "bool", + "y", + "select", + [ + "LOG_BACKEND_UART && UART_CONSOLE && !LOG_FRONTEND_ONLY && !LOG_MODE_MINIMAL && LOG" + ] + ], + [ + "CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 187 + ] + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.formatting", + 194 + ] + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_DATE_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_ISO8601_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_CUSTOM_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_UART", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\backends\\Kconfig.uart", + 7 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_BUFFER_SIZE", + "y", + "int", + "1", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\backends\\Kconfig.uart", + 22 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_AUTOSTART", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\backends\\Kconfig.uart", + 33 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_format_config", + 6 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_DICTIONARY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_CUSTOM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT", + "n", + "int", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_format_config", + 42 + ] + ], + [ + "CONFIG_LOG_BACKEND_IPC_SERVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_USE_VLA", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.misc", + 21 + ] + ], + [ + "CONFIG_LOG_SIMPLE_MSG_OPTIMIZE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.misc", + 31 + ] + ], + [ + "CONFIG_LOG_ALWAYS_RUNTIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FMT_SECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FMT_STRING_VALIDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_MEM_UTILIZATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FAILURE_REPORT_PERIOD", + "y", + "int", + "1000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.misc", + 115 + ] + ], + [ + "CONFIG_LOG_RATELIMIT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig", + 54 + ] + ], + [ + "CONFIG_LOG_RATELIMIT_INTERVAL_MS", + "y", + "int", + "5000", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig", + 65 + ] + ], + [ + "CONFIG_LOG_OUTPUT", + "y", + "bool", + "y", + "select", + [ + "LOG_BACKEND_UART_OUTPUT_TEXT && " + ] + ], + [ + "CONFIG_MEM_ATTR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EC_HOST_CMD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OSDP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODBUS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODEM_MODULES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NETWORKING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NVMEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_PM", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_STM32G0X && SOC_FAMILY_STM32" + ] + ], + [ + "CONFIG_PM_POLICY_LATENCY_STANDALONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MCTP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PROFILING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEST_RANDOM_GENERATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMER_RANDOM_INITIAL_STATE", + "y", + "int", + "123456789", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\random\\Kconfig", + 33 + ] + ], + [ + "CONFIG_RTIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MMC_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SDMMC_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SDIO_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SECURE_STORAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SETTINGS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SHELL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STATS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STREAM_FLASH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TASK_WDT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTEST_MOCKING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTRESS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEST_USERSPACE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FORCE_COVERAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COVERAGE_DUMP_PATH_EXCLUDE", + "y", + "string", + "", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\testsuite\\Kconfig.coverage", + 96 + ] + ], + [ + "CONFIG_TIMING_FUNCTIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TRACING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_STACK", + "y", + "bool", + "y", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 2 + ] + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_USB_DEVICE_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\logging\\Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_USB_DEVICE_VID", + "y", + "hex", + "0x1d50", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 4 + ] + ], + [ + "CONFIG_USB_DEVICE_PID", + "y", + "hex", + "0x606f", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 5 + ] + ], + [ + "CONFIG_USB_DEVICE_MANUFACTURER", + "y", + "string", + "EWS", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 6 + ] + ], + [ + "CONFIG_USB_DEVICE_PRODUCT", + "y", + "string", + "EWS gs_usb CAN-FD", + "assign", + [ + "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/prj.conf", + 3 + ] + ], + [ + "CONFIG_USB_DEVICE_SN", + "y", + "string", + "0123456789ABCDEF", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 46 + ] + ], + [ + "CONFIG_USB_CONFIGURATION_STRING_DESC_ENABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_COMPOSITE_DEVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_MAX_NUM_TRANSFERS", + "y", + "int", + "4", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 79 + ] + ], + [ + "CONFIG_USB_REQUEST_BUFFER_SIZE", + "y", + "int", + "128", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 99 + ] + ], + [ + "CONFIG_USB_MAX_ALT_SETTING", + "y", + "int", + "8", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 104 + ] + ], + [ + "CONFIG_USB_NUMOF_EP_WRITE_RETRIES", + "y", + "int", + "3", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 111 + ] + ], + [ + "CONFIG_USB_DEVICE_SOF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_BOS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_OS_DESC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_SELF_POWERED", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 127 + ] + ], + [ + "CONFIG_USB_MAX_POWER", + "y", + "int", + "50", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\subsys\\usb\\device\\Kconfig", + 134 + ] + ], + [ + "CONFIG_USB_WORKQUEUE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_MASS_STORAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_BLUETOOTH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_NETWORK_ECM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_NETWORK_EEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_NETWORK_RNDIS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_HID", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_AUDIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_STACK_NEXT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_HOST_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZBUS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODULES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_ZEPHYR_0_17", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/Kconfig", + 4 + ] + ], + [ + "CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/Kconfig", + 10 + ] + ], + [ + "CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS", + "n", + "bool", + "y", + "default", + [ + "C:/Users/iteedi/zephyr-sdk-0.17.4/cmake/zephyr/Kconfig", + 14 + ] + ], + [ + "CONFIG_LINKER_ORPHAN_SECTION_PLACE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_ORPHAN_SECTION_WARN", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 62 + ] + ], + [ + "CONFIG_LINKER_ORPHAN_SECTION_ERROR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FLASH_LOAD_SIZE", + "y", + "hex", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 119 + ] + ], + [ + "CONFIG_ROM_END_OFFSET", + "y", + "hex", + "0", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 147 + ] + ], + [ + "CONFIG_LD_LINKER_SCRIPT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 158 + ] + ], + [ + "CONFIG_LD_LINKER_TEMPLATE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 162 + ] + ], + [ + "CONFIG_CMAKE_LINKER_GENERATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAVE_CUSTOM_LINKER_SCRIPT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_SORT_BY_ALIGNMENT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 212 + ] + ], + [ + "CONFIG_LINKER_USE_BOOT_SECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_USE_PINNED_SECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 273 + ] + ], + [ + "CONFIG_LINKER_LAST_SECTION_ID", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 286 + ] + ], + [ + "CONFIG_LINKER_LAST_SECTION_ID_PATTERN", + "y", + "hex", + "0xE015E015", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 302 + ] + ], + [ + "CONFIG_LINKER_ITERABLE_SUBALIGN", + "n", + "int", + "4", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 332 + ] + ], + [ + "CONFIG_LINKER_DEVNULL_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 338 + ] + ], + [ + "CONFIG_LINKER_DEVNULL_MEMORY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C90", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C99", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 386 + ] + ], + [ + "CONFIG_STD_C11", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C17", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C23", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS", + "n", + "bool", + "y", + "select", + [ + "TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS" + ] + ], + [ + "CONFIG_GNU_C_EXTENSIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CODING_GUIDELINE_CHECK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_FREESTANDING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SIZE_OPTIMIZATIONS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 484 + ] + ], + [ + "CONFIG_SIZE_OPTIMIZATIONS_AGGRESSIVE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPEED_OPTIMIZATIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_OPTIMIZATIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NO_OPTIMIZATIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_WARNINGS_AS_ERRORS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEPRECATION_TEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_SAVE_TEMPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_TRACK_MACRO_EXPANSION", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 553 + ] + ], + [ + "CONFIG_COMPILER_COLOR_DIAGNOSTICS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 561 + ] + ], + [ + "CONFIG_FORTIFY_SOURCE_NONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FORTIFY_SOURCE_COMPILE_TIME", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 568 + ] + ], + [ + "CONFIG_FORTIFY_SOURCE_RUN_TIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_OPT", + "y", + "string", + null, + "unset", + null + ], + [ + "CONFIG_MISRA_SANE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS", + "n", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 617 + ] + ], + [ + "CONFIG_ASSERT_ON_ERRORS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NO_RUNTIME_CHECKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RUNTIME_ERROR_CHECKS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 626 + ] + ], + [ + "CONFIG_KERNEL_BIN_NAME", + "y", + "string", + "zephyr", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 650 + ] + ], + [ + "CONFIG_OUTPUT_STAT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 656 + ] + ], + [ + "CONFIG_OUTPUT_SYMBOLS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OUTPUT_PRINT_MEMORY_USAGE", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 698 + ] + ], + [ + "CONFIG_CLEANUP_INTERMEDIATE_FILES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_GAP_FILL_PATTERN", + "y", + "hex", + "0xFF", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 719 + ] + ], + [ + "CONFIG_BUILD_NO_GAP_FILL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_HEX_GAP_FILL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_EXE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_S19_GAP_FILL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_UF2", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_MOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_STRIPPED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_COMPRESS_DEBUG_SECTIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_ALIGN_LMA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_APPLICATION_DEFINED_SYSCALL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MAKEFILE_EXPORTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_META", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_STRIP_PATHS", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 964 + ] + ], + [ + "CONFIG_CHECK_INIT_PRIORITIES", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 978 + ] + ], + [ + "CONFIG_EMIT_ALL_SYSCALLS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEPRECATED", + "n", + "bool", + "y", + "select", + [ + "USB_DEVICE_DRIVER", + "USB_DEVICE_STACK" + ] + ], + [ + "CONFIG_WARN_DEPRECATED", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 1010 + ] + ], + [ + "CONFIG_WARN_EXPERIMENTAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ENFORCE_ZEPHYR_STDINT", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 1045 + ] + ], + [ + "CONFIG_IS_BOOTLOADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOOTLOADER_BOSSA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LEGACY_GENERATED_INCLUDE_PATH", + "y", + "bool", + "y", + "default", + [ + "C:\\Users\\iteedi\\zephyrproject\\zephyr\\Kconfig.zephyr", + 1117 + ] + ] +] \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/zephyr/.config-trace.pickle b/firmware/canfd_cdc_composite/build/zephyr/.config-trace.pickle new file mode 100644 index 0000000..e0e0bed Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/.config-trace.pickle differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj new file mode 100644 index 0000000..ba07f68 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj new file mode 100644 index 0000000..57a98e3 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj new file mode 100644 index 0000000..3838ae6 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj new file mode 100644 index 0000000..18071c3 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj new file mode 100644 index 0000000..a3b0d1a Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj new file mode 100644 index 0000000..bc29d57 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj new file mode 100644 index 0000000..610e339 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj new file mode 100644 index 0000000..965e179 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj new file mode 100644 index 0000000..51d478e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj new file mode 100644 index 0000000..829538c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj new file mode 100644 index 0000000..9cea661 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj new file mode 100644 index 0000000..9f2cc0c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj new file mode 100644 index 0000000..5c9e8e8 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj new file mode 100644 index 0000000..b70089c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj new file mode 100644 index 0000000..d1ba3fd Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj new file mode 100644 index 0000000..16a57fc Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj new file mode 100644 index 0000000..25afcfc Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj new file mode 100644 index 0000000..4719a13 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj new file mode 100644 index 0000000..b8a9eb9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj new file mode 100644 index 0000000..2119c1c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj new file mode 100644 index 0000000..e0fca44 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj new file mode 100644 index 0000000..b73afc2 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj new file mode 100644 index 0000000..9271d17 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj new file mode 100644 index 0000000..0d4b4a5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g0x/soc.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj new file mode 100644 index 0000000..b740301 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj new file mode 100644 index 0000000..253a936 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj new file mode 100644 index 0000000..1077b3b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj new file mode 100644 index 0000000..bd4c89e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj new file mode 100644 index 0000000..268e699 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj new file mode 100644 index 0000000..b94a0a0 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj new file mode 100644 index 0000000..46a4453 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj new file mode 100644 index 0000000..fc751b6 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_descriptor.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj new file mode 100644 index 0000000..f0dda0b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_device.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj new file mode 100644 index 0000000..22fe614 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr.dir/subsys/usb/device/usb_transfer.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj new file mode 100644 index 0000000..c0e192b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj new file mode 100644 index 0000000..92e3c1f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj new file mode 100644 index 0000000..92e3c1f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/cmake_install.cmake new file mode 100644 index 0000000..f000040 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/arch/arm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj new file mode 100644 index 0000000..3205eaf Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj new file mode 100644 index 0000000..583c092 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj new file mode 100644 index 0000000..f5eab1b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj new file mode 100644 index 0000000..f0f8189 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cmake_install.cmake new file mode 100644 index 0000000..a2401ba --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj new file mode 100644 index 0000000..9180f2a Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj new file mode 100644 index 0000000..24f8af1 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj new file mode 100644 index 0000000..b99d972 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj new file mode 100644 index 0000000..d6e80d5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj new file mode 100644 index 0000000..72a2233 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj new file mode 100644 index 0000000..7324703 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj new file mode 100644 index 0000000..84dc6da Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj new file mode 100644 index 0000000..94573f5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj new file mode 100644 index 0000000..06a8dc7 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj new file mode 100644 index 0000000..1cb1cd7 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj new file mode 100644 index 0000000..d338f48 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj new file mode 100644 index 0000000..bfc1592 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj new file mode 100644 index 0000000..7f27a29 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj new file mode 100644 index 0000000..dce6cde Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj new file mode 100644 index 0000000..a49bc97 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj new file mode 100644 index 0000000..9c84342 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake new file mode 100644 index 0000000..63702d2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/arch/arm/core/cortex_m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a new file mode 100644 index 0000000..40f682f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/libarch__arm__core.a b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/libarch__arm__core.a new file mode 100644 index 0000000..ed060ad Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/core/libarch__arm__core.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/arch/cmake_install.cmake new file mode 100644 index 0000000..bd35ae1 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/arch/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/arch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/arch/arm/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj new file mode 100644 index 0000000..a485ee9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj new file mode 100644 index 0000000..d7956ab Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj new file mode 100644 index 0000000..1eb67fa Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj new file mode 100644 index 0000000..e64086d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/arch/common/cmake_install.cmake new file mode 100644 index 0000000..25d424b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/arch/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/arch/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/libarch__common.a b/firmware/canfd_cdc_composite/build/zephyr/arch/common/libarch__common.a new file mode 100644 index 0000000..0ad80d4 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/common/libarch__common.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/arch/common/libisr_tables.a b/firmware/canfd_cdc_composite/build/zephyr/arch/common/libisr_tables.a new file mode 100644 index 0000000..b67dfa8 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/arch/common/libisr_tables.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/boards/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/boards/cmake_install.cmake new file mode 100644 index 0000000..2aca042 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/boards/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/boards + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/boards/shields/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/boards/shields/cmake_install.cmake new file mode 100644 index 0000000..420dd9c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/boards/shields/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/boards/shields + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/shields/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/cmake_install.cmake new file mode 100644 index 0000000..122ed42 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/cmake/flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/cmake_install.cmake new file mode 100644 index 0000000..5fe1163 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/cmake/reports + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/cmake_install.cmake new file mode 100644 index 0000000..7798240 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/cmake/usage + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/cmake_install.cmake new file mode 100644 index 0000000..9395910 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/cmake_install.cmake @@ -0,0 +1,385 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/arch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/boards/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/acpica/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-dsp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis-nn/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/cmsis_6/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/adi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_afbr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ambiq/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/atmel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_bouffalolab/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_espressif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_ethos_u/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_gigadevice/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_infineon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_intel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/microchip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nordic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nuvoton/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_nxp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openisa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/quicklogic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_renesas/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_rpi_pico/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_sifli/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_silabs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_st/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_stm32/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_tdk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_telink/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/ti/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hal_wurthelektronik/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/hostap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/liblc3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmctp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libmetal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/libsbc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/littlefs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lora-basics-modem/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/loramac-node/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/lvgl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mcuboot/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/mipi-sys-t/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nanopb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/open-amp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/percepio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/picolibc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/segger/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-a/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/trusted-firmware-m/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/uoscore-uedhoc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/zcbor/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/modules/nrf_hw_models/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/usage/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/cmake/reports/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj new file mode 100644 index 0000000..f4c3b6d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_common.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj new file mode 100644 index 0000000..7c53004 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_mcan.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj new file mode 100644 index 0000000..f5b7bf9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/CMakeFiles/drivers__can.dir/can_stm32_fdcan.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/can/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/cmake_install.cmake new file mode 100644 index 0000000..47c1c70 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/can + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/can/libdrivers__can.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/libdrivers__can.a new file mode 100644 index 0000000..05c78d7 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/libdrivers__can.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/cmake_install.cmake new file mode 100644 index 0000000..39e02c5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/can/transceiver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/transceiver/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj new file mode 100644 index 0000000..5d0063f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj new file mode 100644 index 0000000..f59bf16 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g0_u0.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/cmake_install.cmake new file mode 100644 index 0000000..3490e2a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/clock_control + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/libdrivers__clock_control.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/libdrivers__clock_control.a new file mode 100644 index 0000000..7771592 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/libdrivers__clock_control.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/cmake_install.cmake new file mode 100644 index 0000000..fffcde9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/cmake_install.cmake @@ -0,0 +1,125 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/can/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/clock_control/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj new file mode 100644 index 0000000..22b12f5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/console/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/console/cmake_install.cmake new file mode 100644 index 0000000..1da0c3e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/console/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/console/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/console/libdrivers__console.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/console/libdrivers__console.a new file mode 100644 index 0000000..c1e5d45 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/console/libdrivers__console.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/cmake_install.cmake new file mode 100644 index 0000000..a7d023f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/disk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/disk/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/cmake_install.cmake new file mode 100644 index 0000000..29725b1 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/firmware + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/firmware/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj new file mode 100644 index 0000000..b5585b4 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/cmake_install.cmake new file mode 100644 index 0000000..2ad2344 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/libdrivers__gpio.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/libdrivers__gpio.a new file mode 100644 index 0000000..9b328c5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/gpio/libdrivers__gpio.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj new file mode 100644 index 0000000..f6c4b33 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj new file mode 100644 index 0000000..cfe7cf4 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/CMakeFiles/drivers__hwinfo.dir/hwinfo_weak_impl.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/cmake_install.cmake new file mode 100644 index 0000000..64b1b54 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/hwinfo + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/libdrivers__hwinfo.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/libdrivers__hwinfo.a new file mode 100644 index 0000000..f7b034c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/hwinfo/libdrivers__hwinfo.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj new file mode 100644 index 0000000..93267d9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj new file mode 100644 index 0000000..eb50e21 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/cmake_install.cmake new file mode 100644 index 0000000..18ab5d6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/interrupt_controller + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a new file mode 100644 index 0000000..06ff66b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/cmake_install.cmake new file mode 100644 index 0000000..2f3c45f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/misc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/cmake_install.cmake new file mode 100644 index 0000000..7cb7f61 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/misc/interconn + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/misc/interconn/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/cmake_install.cmake new file mode 100644 index 0000000..f79e96a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/pcie + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pcie/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj new file mode 100644 index 0000000..a2fda87 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj new file mode 100644 index 0000000..c2e23a9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/cmake_install.cmake new file mode 100644 index 0000000..dee1211 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/libdrivers__pinctrl.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/libdrivers__pinctrl.a new file mode 100644 index 0000000..2880f40 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/libdrivers__pinctrl.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake new file mode 100644 index 0000000..c008f17 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/pinctrl/renesas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/pinctrl/renesas/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj new file mode 100644 index 0000000..a8fe771 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/CMakeFiles/drivers__reset.dir/reset_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/cmake_install.cmake new file mode 100644 index 0000000..c21a61f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/reset + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/libdrivers__reset.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/libdrivers__reset.a new file mode 100644 index 0000000..73d5187 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/reset/libdrivers__reset.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj new file mode 100644 index 0000000..95f9fa5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/cmake_install.cmake new file mode 100644 index 0000000..e46e128 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/serial + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/libdrivers__serial.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/libdrivers__serial.a new file mode 100644 index 0000000..8b8327b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/serial/libdrivers__serial.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj new file mode 100644 index 0000000..7625177 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj new file mode 100644 index 0000000..a79d5f4 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/cmake_install.cmake new file mode 100644 index 0000000..7102064 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/libdrivers__timer.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/libdrivers__timer.a new file mode 100644 index 0000000..81a34f7 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/timer/libdrivers__timer.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/cmake_install.cmake new file mode 100644 index 0000000..8df7ba6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/cmake_install.cmake new file mode 100644 index 0000000..c71ddc9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/usb/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj new file mode 100644 index 0000000..f8a7ced Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/CMakeFiles/drivers__usb__device.dir/usb_dc_stm32.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/cmake_install.cmake new file mode 100644 index 0000000..8c4db06 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/usb/device + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/libdrivers__usb__device.a b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/libdrivers__usb__device.a new file mode 100644 index 0000000..d8f391f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb/device/libdrivers__usb__device.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/cmake_install.cmake new file mode 100644 index 0000000..ea92558 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/drivers/usb_c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/drivers/usb_c/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/edt.pickle b/firmware/canfd_cdc_composite/build/zephyr/edt.pickle new file mode 100644 index 0000000..d12af5e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/edt.pickle differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/edt.pickle.cmake b/firmware/canfd_cdc_composite/build/zephyr/edt.pickle.cmake new file mode 100644 index 0000000..7c78e0e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/edt.pickle.cmake @@ -0,0 +1,1557 @@ +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash-controller" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,console" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,shell-uart" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,uart-mcumgr" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,sram" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,code-partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,canbus" "/soc/can@40006800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|watchdog0" "/soc/watchdog@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|die-temp0" "/dietemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|volt-sensor0" "/vref") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|volt-sensor1" "/vbat") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|pfet0" "/gpio_keys/pfet1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|pfet1" "/gpio_keys/pfet2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/|compatible" "st,stm32g0b1kb-ews;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/chosen" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/aliases" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|compatible" "st,stm32g0b1;st,stm32g0;simple-bus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@e000e100" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|nvic" "/soc/interrupt-controller@e000e100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|reg" "3758153984;3072;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|arm,num-irq-priority-bits" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|compatible" "arm,v6m-nvic;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|ADDR" "0xe000e100;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|SIZE" "0xc00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@e000e010" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|systick" "/soc/timer@e000e010") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|reg" "3758153744;16;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|compatible" "arm,armv6m-systick;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|ADDR" "0xe000e010;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|SIZE" "0x10;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|st,rdp1-enable-byte" "85") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|reg" "1073881088;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|compatible" "st,stm32-flash-controller;st,stm32g0-flash-controller;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|interrupts" "3;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000|ADDR" "0x40022000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash0" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|max-erase-time" "40") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|erase-block-size" "2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|write-block-size" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|compatible" "st,stm32-nv-flash;soc-nv-flash;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|reg" "134217728;524288;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000|ADDR" "0x8000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000|SIZE" "0x80000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|boot_partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|label" "mcuboot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|read-only" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|reg" "0;16384;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|SIZE" "0x4000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|label" "image-0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|reg" "16384;98304;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|ADDR" "0x4000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|SIZE" "0x18000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|label" "image-1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|reg" "114688;16384;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|ADDR" "0x1c000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|SIZE" "0x4000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rcc@40021000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rcc" "/soc/rcc@40021000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|reg" "1073876992;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|clock-frequency" "64000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|ahb-prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|apb1-prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|undershoot-prevention" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|compatible" "st,stm32f0-rcc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000|ADDR" "0x40021000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rcc@40021000/reset-controller" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rctl" "/soc/rcc@40021000/reset-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|set-bit-to-deassert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|compatible" "st,stm32-rcc-rctl;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000/reset-controller|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000/reset-controller|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000/reset-controller|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@40021800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|exti" "/soc/interrupt-controller@40021800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|reg" "1073879040;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|interrupts" "5;0;6;0;7;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|interrupt-names" "line0-1;line2-3;line4-15;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|num-lines" "64") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|num-gpio-lines" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|line-ranges" "0;2;2;2;4;12;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|compatible" "st,stm32g0-exti;st,stm32-exti;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@40021800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@40021800|ADDR" "0x40021800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@40021800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pinctrl" "/soc/pin-controller@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|reg" "1342177280;8192;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|remap-pa11" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|remap-pa12" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|remap-pa11-pa12" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|compatible" "st,stm32-pinctrl;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000|ADDR" "0x50000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000|SIZE" "0x2000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpioa" "/soc/pin-controller@50000000/gpio@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|reg" "1342177280;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000000|ADDR" "0x50000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiob" "/soc/pin-controller@50000000/gpio@50000400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|reg" "1342178304;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000400|ADDR" "0x50000400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpioc" "/soc/pin-controller@50000000/gpio@50000800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|reg" "1342179328;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000800|ADDR" "0x50000800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiod" "/soc/pin-controller@50000000/gpio@50000c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|reg" "1342180352;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000c00|ADDR" "0x50000c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50001400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiof" "/soc/pin-controller@50000000/gpio@50001400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|reg" "1342182400;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001400|ADDR" "0x50001400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50001000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpioe" "/soc/pin-controller@50000000/gpio@50001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|reg" "1342181376;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001000|ADDR" "0x50001000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/fdcan2_rx_pb0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan2_rx_pb0" "/soc/pin-controller@50000000/fdcan2_rx_pb0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|pinmux" "515") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_rx_pb0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_rx_pb0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_rx_pb0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/fdcan2_tx_pb1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan2_tx_pb1" "/soc/pin-controller@50000000/fdcan2_tx_pb1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|pinmux" "547") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_tx_pb1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_tx_pb1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_tx_pb1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usart1_rx_pc5" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart1_rx_pc5" "/soc/pin-controller@50000000/usart1_rx_pc5") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|pinmux" "1185") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_rx_pc5|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_rx_pc5|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_rx_pc5|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usart1_tx_pc4" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart1_tx_pc4" "/soc/pin-controller@50000000/usart1_tx_pc4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|pinmux" "1153") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_tx_pc4|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_tx_pc4|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_tx_pc4|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usb_dm_pa11" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_dm_pa11" "/soc/pin-controller@50000000/usb_dm_pa11") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|pinmux" "368") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dm_pa11|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dm_pa11|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dm_pa11|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usb_dp_pa12" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_dp_pa12" "/soc/pin-controller@50000000/usb_dp_pa12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|pinmux" "400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dp_pa12|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dp_pa12|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dp_pa12|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@40002800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc" "/soc/rtc@40002800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|reg" "1073752064;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|alarms-count" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|alrm-exti-line" "19") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|interrupts" "2;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|prescaler" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|compatible" "st,stm32-rtc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800|ADDR" "0x40002800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@40002800/backup_regs" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|bbram" "/soc/rtc@40002800/backup_regs") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|st,backup-regs" "5") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|compatible" "st,stm32-bbram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800/backup_regs|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800/backup_regs|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800/backup_regs|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@40003000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|iwdg" "/soc/watchdog@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|reg" "1073754112;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|compatible" "st,stm32-watchdog;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40003000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40003000|ADDR" "0x40003000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40003000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@40002c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wwdg" "/soc/watchdog@40002c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|reg" "1073753088;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|compatible" "st,stm32-window-watchdog;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|interrupts" "0;2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40002c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40002c00|ADDR" "0x40002c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40002c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40013800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart1" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|reg" "1073821696;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|interrupts" "27;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|pinctrl-names" "default;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013800|ADDR" "0x40013800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40004400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart2" "/soc/serial@40004400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|reg" "1073759232;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|interrupts" "28;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004400|ADDR" "0x40004400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40007c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lptim1" "/soc/timers@40007c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|stm32_lp_tick_source" "/soc/timers@40007c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|st,prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|reg" "1073773568;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|compatible" "st,stm32-lptim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|interrupts" "17;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|interrupt-names" "wakeup;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40007c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40007c00|ADDR" "0x40007c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40007c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers1" "/soc/timers@40012c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|reg" "1073818624;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|interrupts" "13;0;14;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|interrupt-names" "brk_up_trg_com;cc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00|ADDR" "0x40012c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers3" "/soc/timers@40000400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|reg" "1073742848;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|interrupts" "16;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400|ADDR" "0x40000400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40002000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers14" "/soc/timers@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|reg" "1073750016;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|interrupts" "19;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000|ADDR" "0x40002000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40002000/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40002000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers16" "/soc/timers@40014400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|reg" "1073824768;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|interrupts" "21;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400|ADDR" "0x40014400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014400/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014400/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers17" "/soc/timers@40014800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|reg" "1073825792;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|interrupts" "22;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800|ADDR" "0x40014800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014800/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014800/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40005400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1" "/soc/i2c@40005400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|reg" "1073763328;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|interrupts" "23;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|compatible" "st,stm32-i2c-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|interrupt-names" "combined;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005400|ADDR" "0x40005400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40005800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c2" "/soc/i2c@40005800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|reg" "1073764352;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|interrupts" "24;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|compatible" "st,stm32-i2c-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|interrupt-names" "combined;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005800|ADDR" "0x40005800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40013000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi1" "/soc/spi@40013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|reg" "1073819648;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|interrupts" "25;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|ioswp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|compatible" "st,stm32-spi-fifo;st,stm32-spi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40013000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40013000|ADDR" "0x40013000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40013000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40003800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi2" "/soc/spi@40003800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|reg" "1073756160;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|interrupts" "26;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|ioswp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|compatible" "st,stm32-spi-fifo;st,stm32-spi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003800|ADDR" "0x40003800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@40012400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc1" "/soc/adc@40012400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|reg" "1073816576;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|clock-names" "adcx;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|interrupts" "12;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|vref-mv" "3300") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|resolutions" "6316812;5333772;4350732;3367692;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|sampling-times" "3;5;8;13;20;40;80;161;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|num-sampling-time-common-channels" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-sequencer" "fixed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-oversampler" "minimal") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-internal-regulator" "startup-sw-delay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-has-deep-powerdown" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-has-channel-preselection" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-has-differential-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|compatible" "st,stm32-adc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40012400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40012400|ADDR" "0x40012400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40012400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dma@40020000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dma1" "/soc/dma@40020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|reg" "1073872896;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|interrupts" "9;0;10;0;10;0;11;0;11;0;11;0;11;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|st,mem2mem" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|dma-offset" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|dma-requests" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|compatible" "st,stm32-dma-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020000|ADDR" "0x40020000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dmamux@40020800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dmamux1" "/soc/dmamux@40020800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|reg" "1073874944;2048;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|dma-channels" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|dma-generators" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|dma-requests" "73") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|compatible" "st,stm32-dmamux;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|interrupts" "11;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dmamux@40020800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dmamux@40020800|ADDR" "0x40020800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dmamux@40020800|SIZE" "0x800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pwr" "/soc/power@40007000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|reg" "1073770496;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wkup-pins-nb" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wkup-pins-pol" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wkup-pins-pupd" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|compatible" "st,stm32-pwr;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000|ADDR" "0x40007000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@1|reg" "1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@1|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@1|ADDR" "0x1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@1|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@2|reg" "2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@2|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@2|ADDR" "0x2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@2|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@4" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@4|reg" "4;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@4|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@4|ADDR" "0x4;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@4|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@5" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@5|reg" "5;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@5|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@5|ADDR" "0x5;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@5|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@6" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@6|reg" "6;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@6|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@6|ADDR" "0x6;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@6|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@3" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@3|reg" "3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@3|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@3|ADDR" "0x3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@3|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40008000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lpuart1" "/soc/serial@40008000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|reg" "1073774592;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|compatible" "st,stm32-lpuart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008000|ADDR" "0x40008000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers2" "/soc/timers@40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|reg" "1073741824;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|interrupts" "15;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000|ADDR" "0x40000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000000/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000000/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers6" "/soc/timers@40001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|reg" "1073745920;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|interrupts" "17;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000|ADDR" "0x40001000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers7" "/soc/timers@40001400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|reg" "1073746944;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|interrupts" "18;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400|ADDR" "0x40001400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001400/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers15" "/soc/timers@40014000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|reg" "1073823744;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|interrupts" "20;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000|ADDR" "0x40014000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014000/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dac@40007400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dac1" "/soc/dac@40007400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|reg" "1073771520;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|compatible" "st,stm32-dac;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dac@40007400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dac@40007400|ADDR" "0x40007400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dac@40007400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40004800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart3" "/soc/serial@40004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|reg" "1073760256;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004800|ADDR" "0x40004800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40004c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart4" "/soc/serial@40004c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|reg" "1073761280;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004c00|ADDR" "0x40004c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ucpd@4000a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ucpd1" "/soc/ucpd@4000a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|reg" "1073782784;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|interrupts" "8;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|psc-ucpdclk" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|ifrgap" "17") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|transwin" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|hbitclkdiv" "14") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|dead-battery" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|compatible" "st,stm32-ucpd;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a000|ADDR" "0x4000a000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ucpd@4000a400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ucpd2" "/soc/ucpd@4000a400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|reg" "1073783808;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|interrupts" "8;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|psc-ucpdclk" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|ifrgap" "17") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|transwin" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|hbitclkdiv" "14") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|dead-battery" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|compatible" "st,stm32-ucpd;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a400|ADDR" "0x4000a400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/can@40006400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan1" "/soc/can@40006400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|reg" "1073767424;1024;1073787904;848;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|interrupts" "21;0;22;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|interrupt-names" "int0;int1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|bosch,mram-cfg" "0;28;8;3;3;0;3;3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|compatible" "st,stm32-fdcan;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|reg-names" "m_can;message_ram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006400|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006400|ADDR" "0x40006400;0x4000b400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006400|SIZE" "0x400;0x350;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/can@40006800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan2" "/soc/can@40006800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|reg" "1073768448;1024;1073788752;848;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|interrupts" "21;0;22;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|interrupt-names" "int0;int1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|bosch,mram-cfg" "0;28;8;3;3;0;3;3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|compatible" "st,stm32-fdcan;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|reg-names" "m_can;message_ram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|pinctrl-names" "default;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006800|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006800|ADDR" "0x40006800;0x4000b750;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006800|SIZE" "0x400;0x350;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40005000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart5" "/soc/serial@40005000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|reg" "1073762304;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40005000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40005000|ADDR" "0x40005000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40005000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40013c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart6" "/soc/serial@40013c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|reg" "1073822720;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013c00|ADDR" "0x40013c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40008400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lpuart2" "/soc/serial@40008400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|reg" "1073775616;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|interrupts" "28;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|compatible" "st,stm32-lpuart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008400|ADDR" "0x40008400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers4" "/soc/timers@40000800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|reg" "1073743872;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|interrupts" "16;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800|ADDR" "0x40000800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000800/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000800/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40008800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c3" "/soc/i2c@40008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|reg" "1073776640;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|interrupts" "24;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|compatible" "st,stm32-i2c-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|interrupt-names" "combined;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40008800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40008800|ADDR" "0x40008800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40008800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40003c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi3" "/soc/spi@40003c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|reg" "1073757184;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|interrupts" "26;3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|ioswp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|compatible" "st,stm32-spi-fifo;st,stm32-spi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003c00|ADDR" "0x40003c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dma@40020400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dma2" "/soc/dma@40020400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|reg" "1073873920;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|interrupts" "11;0;11;0;11;0;11;0;11;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|st,mem2mem" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|dma-offset" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|dma-requests" "5") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|compatible" "st,stm32-dma-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020400|ADDR" "0x40020400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/usb@40005c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb" "/soc/usb@40005c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|zephyr_udc0" "/soc/usb@40005c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|reg" "1073765376;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|interrupts" "8;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|ram-size" "2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|num-bidir-endpoints" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|maximum-speed" "full-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|compatible" "st,stm32-usb;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|interrupt-names" "usb;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|pinctrl-names" "default;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb@40005c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb@40005c00|ADDR" "0x40005c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb@40005c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cpu0" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|compatible" "arm,cortex-m0+;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|reg" "0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/state0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|stop0" "/cpus/power-states/state0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|power-state-name" "suspend-to-idle") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|substate-id" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|min-residency-us" "20") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/state1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|stop1" "/cpus/power-states/state1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|power-state-name" "suspend-to-idle") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|substate-id" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|min-residency-us" "100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/memory@20000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram0" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|zephyr,memory-region" "SRAM0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|compatible" "zephyr,memory-region;mmio-sram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|reg" "536870912;147456;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/memory@20000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/memory@20000000|ADDR" "0x20000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/memory@20000000|SIZE" "0x24000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-hse" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_hse" "/clocks/clk-hse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|hse-bypass" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|css-enabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|compatible" "st,stm32-hse-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hse|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hse|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hse|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-hsi" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_hsi" "/clocks/clk-hsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|hsi-div" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|clock-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|compatible" "st,stm32g0-hsi-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-lse" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_lse" "/clocks/clk-lse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|driving-capability" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|lse-bypass" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|clock-frequency" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|compatible" "st,stm32-lse-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lse|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lse|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lse|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-lsi" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_lsi" "/clocks/clk-lsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|clock-frequency" "32000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|compatible" "fixed-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lsi|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lsi|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lsi|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/pll" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pll" "/clocks/pll") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-m" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|mul-n" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-p" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-q" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-r" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|compatible" "st,stm32g0-pll-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/pll|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/pll|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/pll|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-hsi48" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_hsi48" "/clocks/clk-hsi48") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|crs-usb-sof" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|clock-frequency" "48000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|compatible" "st,stm32-hsi48-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi48|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi48|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi48|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/mcos" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/mcos/mco1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mco1" "/mcos/mco1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|compatible" "st,stm32-clock-mco;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/mcos/mco2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mco2" "/mcos/mco2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|compatible" "st,stm32-clock-mco;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/dietemp" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|die_temp" "/dietemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal2-addr" "536835530") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal2-temp" "130") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal1-addr" "536835496") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal1-temp" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal-vrefanalog" "3000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal-resolution" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|compatible" "st,stm32-temp-cal;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/dietemp|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/dietemp|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/dietemp|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/vref" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|vref" "/vref") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|vrefint-cal-addr" "536835498") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|vrefint-cal-mv" "3000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|vrefint-cal-resolution" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|compatible" "st,stm32-vref;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vref|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vref|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vref|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/vbat" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|vbat" "/vbat") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|ratio" "3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|compatible" "st,stm32-vbat;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vbat|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vbat|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vbat|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/smbus1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|smbus1" "/smbus1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|compatible" "st,stm32-smbus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/smbus2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|smbus2" "/smbus2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|compatible" "st,stm32-smbus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/usbphy" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_fs_phy" "/usbphy") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|compatible" "usb-nop-xceiv;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/usbphy|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/usbphy|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/usbphy|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/smbus3" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|smbus3" "/smbus3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|compatible" "st,stm32-smbus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus3|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus3|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus3|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|leds" "/leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds|compatible" "gpio-leds;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds/led_0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|status_led" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds/led_0|label" "Status LED") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/gpio_keys" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|debounce-interval-ms" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|polling-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|no-disconnect" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|compatible" "gpio-keys;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/gpio_keys/pfet1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pfet1" "/gpio_keys/pfet1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet1|label" "PFET1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet1|zephyr,code" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/gpio_keys/pfet2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pfet2" "/gpio_keys/pfet2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet2|label" "PFET2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet2|zephyr,code" "3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0b1kb-ews" "/") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0b1" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|simple-bus" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,v6m-nvic" "/soc/interrupt-controller@e000e100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,armv6m-systick" "/soc/timer@e000e010") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-flash-controller" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-flash-controller" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-nv-flash" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|soc-nv-flash" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|fixed-partitions" "/soc/flash-controller@40022000/flash@8000000/partitions") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32f0-rcc" "/soc/rcc@40021000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-rcc-rctl" "/soc/rcc@40021000/reset-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-exti" "/soc/interrupt-controller@40021800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-exti" "/soc/interrupt-controller@40021800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-pinctrl" "/soc/pin-controller@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-gpio" "/soc/pin-controller@50000000/gpio@50000000;/soc/pin-controller@50000000/gpio@50000400;/soc/pin-controller@50000000/gpio@50000800;/soc/pin-controller@50000000/gpio@50000c00;/soc/pin-controller@50000000/gpio@50001400;/soc/pin-controller@50000000/gpio@50001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-rtc" "/soc/rtc@40002800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-bbram" "/soc/rtc@40002800/backup_regs") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-watchdog" "/soc/watchdog@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-window-watchdog" "/soc/watchdog@40002c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-usart" "/soc/serial@40013800;/soc/serial@40004400;/soc/serial@40004800;/soc/serial@40004c00;/soc/serial@40005000;/soc/serial@40013c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-uart" "/soc/serial@40013800;/soc/serial@40004400;/soc/serial@40008000;/soc/serial@40004800;/soc/serial@40004c00;/soc/serial@40005000;/soc/serial@40013c00;/soc/serial@40008400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-lptim" "/soc/timers@40007c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-timers" "/soc/timers@40012c00;/soc/timers@40000400;/soc/timers@40002000;/soc/timers@40014400;/soc/timers@40014800;/soc/timers@40000000;/soc/timers@40001000;/soc/timers@40001400;/soc/timers@40014000;/soc/timers@40000800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-pwm" "/soc/timers@40012c00/pwm;/soc/timers@40000400/pwm;/soc/timers@40002000/pwm;/soc/timers@40014400/pwm;/soc/timers@40014800/pwm;/soc/timers@40000000/pwm;/soc/timers@40014000/pwm;/soc/timers@40000800/pwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-counter" "/soc/timers@40012c00/counter;/soc/timers@40000400/counter;/soc/timers@40002000/counter;/soc/timers@40014400/counter;/soc/timers@40014800/counter;/soc/timers@40001000/counter;/soc/timers@40001400/counter;/soc/timers@40014000/counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-qdec" "/soc/timers@40012c00/qdec;/soc/timers@40000400/qdec;/soc/timers@40000000/qdec;/soc/timers@40000800/qdec") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-i2c-v2" "/soc/i2c@40005400;/soc/i2c@40005800;/soc/i2c@40008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-spi-fifo" "/soc/spi@40013000;/soc/spi@40003800;/soc/spi@40003c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-spi" "/soc/spi@40013000;/soc/spi@40003800;/soc/spi@40003c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-adc" "/soc/adc@40012400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-dma-v2" "/soc/dma@40020000;/soc/dma@40020400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-dmamux" "/soc/dmamux@40020800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-pwr" "/soc/power@40007000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-lpuart" "/soc/serial@40008000;/soc/serial@40008400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-dac" "/soc/dac@40007400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-ucpd" "/soc/ucpd@4000a000;/soc/ucpd@4000a400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-fdcan" "/soc/can@40006400;/soc/can@40006800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-usb" "/soc/usb@40005c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,cortex-m0+" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,power-state" "/cpus/power-states/state0;/cpus/power-states/state1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,memory-region" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|mmio-sram" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-hse-clock" "/clocks/clk-hse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-hsi-clock" "/clocks/clk-hsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-lse-clock" "/clocks/clk-lse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|fixed-clock" "/clocks/clk-lsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-pll-clock" "/clocks/pll") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-hsi48-clock" "/clocks/clk-hsi48") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-clock-mco" "/mcos/mco1;/mcos/mco2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-temp-cal" "/dietemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-vref" "/vref") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-vbat" "/vbat") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-smbus" "/smbus1;/smbus2;/smbus3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|usb-nop-xceiv" "/usbphy") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-leds" "/leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-keys" "/gpio_keys") diff --git a/firmware/canfd_cdc_composite/build/zephyr/edt.pickle.cmake.new b/firmware/canfd_cdc_composite/build/zephyr/edt.pickle.cmake.new new file mode 100644 index 0000000..7c78e0e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/edt.pickle.cmake.new @@ -0,0 +1,1557 @@ +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash-controller" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,console" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,shell-uart" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,uart-mcumgr" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,sram" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,code-partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,canbus" "/soc/can@40006800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|watchdog0" "/soc/watchdog@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|die-temp0" "/dietemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|volt-sensor0" "/vref") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|volt-sensor1" "/vbat") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|pfet0" "/gpio_keys/pfet1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|pfet1" "/gpio_keys/pfet2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/|compatible" "st,stm32g0b1kb-ews;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/chosen" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/aliases" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|compatible" "st,stm32g0b1;st,stm32g0;simple-bus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@e000e100" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|nvic" "/soc/interrupt-controller@e000e100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|reg" "3758153984;3072;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|arm,num-irq-priority-bits" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|compatible" "arm,v6m-nvic;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@e000e100|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|ADDR" "0xe000e100;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@e000e100|SIZE" "0xc00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timer@e000e010" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|systick" "/soc/timer@e000e010") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|reg" "3758153744;16;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|compatible" "arm,armv6m-systick;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timer@e000e010|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|ADDR" "0xe000e010;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timer@e000e010|SIZE" "0x10;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|st,rdp1-enable-byte" "85") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|reg" "1073881088;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|compatible" "st,stm32-flash-controller;st,stm32g0-flash-controller;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|interrupts" "3;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000|ADDR" "0x40022000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash0" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|max-erase-time" "40") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|erase-block-size" "2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|write-block-size" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|compatible" "st,stm32-nv-flash;soc-nv-flash;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|reg" "134217728;524288;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000|ADDR" "0x8000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000|SIZE" "0x80000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|boot_partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|label" "mcuboot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|read-only" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|reg" "0;16384;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@0|SIZE" "0x4000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|label" "image-0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|reg" "16384;98304;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|ADDR" "0x4000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000|SIZE" "0x18000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_partition" "/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|label" "image-1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|reg" "114688;16384;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|ADDR" "0x1c000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000|SIZE" "0x4000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rcc@40021000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rcc" "/soc/rcc@40021000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|reg" "1073876992;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|clock-frequency" "64000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|ahb-prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|apb1-prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|undershoot-prevention" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|compatible" "st,stm32f0-rcc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000|ADDR" "0x40021000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rcc@40021000/reset-controller" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rctl" "/soc/rcc@40021000/reset-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|set-bit-to-deassert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|compatible" "st,stm32-rcc-rctl;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rcc@40021000/reset-controller|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000/reset-controller|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000/reset-controller|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rcc@40021000/reset-controller|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@40021800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|exti" "/soc/interrupt-controller@40021800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|reg" "1073879040;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|interrupts" "5;0;6;0;7;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|interrupt-names" "line0-1;line2-3;line4-15;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|num-lines" "64") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|num-gpio-lines" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|line-ranges" "0;2;2;2;4;12;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|compatible" "st,stm32g0-exti;st,stm32-exti;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@40021800|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@40021800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@40021800|ADDR" "0x40021800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@40021800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pinctrl" "/soc/pin-controller@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|reg" "1342177280;8192;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|remap-pa11" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|remap-pa12" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|remap-pa11-pa12" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|compatible" "st,stm32-pinctrl;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000|ADDR" "0x50000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000|SIZE" "0x2000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpioa" "/soc/pin-controller@50000000/gpio@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|reg" "1342177280;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000000|ADDR" "0x50000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiob" "/soc/pin-controller@50000000/gpio@50000400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|reg" "1342178304;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000400|ADDR" "0x50000400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpioc" "/soc/pin-controller@50000000/gpio@50000800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|reg" "1342179328;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000800|ADDR" "0x50000800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50000c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiod" "/soc/pin-controller@50000000/gpio@50000c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|reg" "1342180352;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50000c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000c00|ADDR" "0x50000c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50000c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50001400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpiof" "/soc/pin-controller@50000000/gpio@50001400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|reg" "1342182400;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001400|ADDR" "0x50001400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/gpio@50001000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpioe" "/soc/pin-controller@50000000/gpio@50001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|reg" "1342181376;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|ngpios" "16") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|compatible" "st,stm32-gpio;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/gpio@50001000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001000|ADDR" "0x50001000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/gpio@50001000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/fdcan2_rx_pb0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan2_rx_pb0" "/soc/pin-controller@50000000/fdcan2_rx_pb0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|pinmux" "515") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_rx_pb0|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_rx_pb0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_rx_pb0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_rx_pb0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/fdcan2_tx_pb1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan2_tx_pb1" "/soc/pin-controller@50000000/fdcan2_tx_pb1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|pinmux" "547") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/fdcan2_tx_pb1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_tx_pb1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_tx_pb1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/fdcan2_tx_pb1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usart1_rx_pc5" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart1_rx_pc5" "/soc/pin-controller@50000000/usart1_rx_pc5") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|pinmux" "1185") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_rx_pc5|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_rx_pc5|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_rx_pc5|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_rx_pc5|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usart1_tx_pc4" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart1_tx_pc4" "/soc/pin-controller@50000000/usart1_tx_pc4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|pinmux" "1153") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usart1_tx_pc4|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_tx_pc4|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_tx_pc4|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usart1_tx_pc4|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usb_dm_pa11" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_dm_pa11" "/soc/pin-controller@50000000/usb_dm_pa11") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|pinmux" "368") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dm_pa11|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dm_pa11|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dm_pa11|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dm_pa11|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pin-controller@50000000/usb_dp_pa12" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_dp_pa12" "/soc/pin-controller@50000000/usb_dp_pa12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|pinmux" "400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|slew-rate" "low-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pin-controller@50000000/usb_dp_pa12|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dp_pa12|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dp_pa12|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pin-controller@50000000/usb_dp_pa12|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@40002800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc" "/soc/rtc@40002800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|reg" "1073752064;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|alarms-count" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|alrm-exti-line" "19") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|interrupts" "2;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|prescaler" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|compatible" "st,stm32-rtc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800|ADDR" "0x40002800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc@40002800/backup_regs" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|bbram" "/soc/rtc@40002800/backup_regs") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|st,backup-regs" "5") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|compatible" "st,stm32-bbram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc@40002800/backup_regs|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800/backup_regs|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800/backup_regs|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc@40002800/backup_regs|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@40003000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|iwdg" "/soc/watchdog@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|reg" "1073754112;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|compatible" "st,stm32-watchdog;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40003000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40003000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40003000|ADDR" "0x40003000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40003000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@40002c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wwdg" "/soc/watchdog@40002c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|reg" "1073753088;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|compatible" "st,stm32-window-watchdog;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|interrupts" "0;2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@40002c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40002c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40002c00|ADDR" "0x40002c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@40002c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40013800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart1" "/soc/serial@40013800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|reg" "1073821696;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|interrupts" "27;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|pinctrl-names" "default;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013800|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013800|ADDR" "0x40013800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40004400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart2" "/soc/serial@40004400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|reg" "1073759232;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|interrupts" "28;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004400|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004400|ADDR" "0x40004400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40007c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lptim1" "/soc/timers@40007c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|stm32_lp_tick_source" "/soc/timers@40007c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|st,prescaler" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|reg" "1073773568;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|compatible" "st,stm32-lptim;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|interrupts" "17;1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|interrupt-names" "wakeup;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40007c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40007c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40007c00|ADDR" "0x40007c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40007c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers1" "/soc/timers@40012c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|reg" "1073818624;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|interrupts" "13;0;14;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|interrupt-names" "brk_up_trg_com;cc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00|ADDR" "0x40012c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40012c00/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40012c00/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40012c00/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers3" "/soc/timers@40000400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|reg" "1073742848;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|interrupts" "16;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400|ADDR" "0x40000400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000400/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000400/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000400/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40002000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers14" "/soc/timers@40002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|reg" "1073750016;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|interrupts" "19;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000|ADDR" "0x40002000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40002000/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40002000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40002000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40002000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers16" "/soc/timers@40014400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|reg" "1073824768;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|interrupts" "21;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400|ADDR" "0x40014400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014400/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014400/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014400/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014400/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers17" "/soc/timers@40014800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|reg" "1073825792;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|interrupts" "22;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800|ADDR" "0x40014800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014800/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014800/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014800/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014800/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40005400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1" "/soc/i2c@40005400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|reg" "1073763328;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|interrupts" "23;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|compatible" "st,stm32-i2c-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|interrupt-names" "combined;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005400|ADDR" "0x40005400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40005800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c2" "/soc/i2c@40005800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|reg" "1073764352;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|interrupts" "24;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|compatible" "st,stm32-i2c-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|interrupt-names" "combined;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40005800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005800|ADDR" "0x40005800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40005800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40013000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi1" "/soc/spi@40013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|reg" "1073819648;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|interrupts" "25;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|ioswp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|compatible" "st,stm32-spi-fifo;st,stm32-spi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40013000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40013000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40013000|ADDR" "0x40013000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40013000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40003800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi2" "/soc/spi@40003800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|reg" "1073756160;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|interrupts" "26;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|ioswp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|compatible" "st,stm32-spi-fifo;st,stm32-spi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003800|ADDR" "0x40003800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@40012400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc1" "/soc/adc@40012400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|reg" "1073816576;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|clock-names" "adcx;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|interrupts" "12;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|vref-mv" "3300") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|resolutions" "6316812;5333772;4350732;3367692;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|sampling-times" "3;5;8;13;20;40;80;161;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|num-sampling-time-common-channels" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-sequencer" "fixed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-oversampler" "minimal") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-internal-regulator" "startup-sw-delay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-has-deep-powerdown" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-has-channel-preselection" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|st,adc-has-differential-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|compatible" "st,stm32-adc;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@40012400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40012400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40012400|ADDR" "0x40012400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@40012400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dma@40020000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dma1" "/soc/dma@40020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|reg" "1073872896;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|interrupts" "9;0;10;0;10;0;11;0;11;0;11;0;11;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|st,mem2mem" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|dma-offset" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|dma-requests" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|compatible" "st,stm32-dma-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020000|ADDR" "0x40020000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dmamux@40020800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dmamux1" "/soc/dmamux@40020800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|reg" "1073874944;2048;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|dma-channels" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|dma-generators" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|dma-requests" "73") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|compatible" "st,stm32-dmamux;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|interrupts" "11;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dmamux@40020800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dmamux@40020800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dmamux@40020800|ADDR" "0x40020800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dmamux@40020800|SIZE" "0x800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pwr" "/soc/power@40007000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|reg" "1073770496;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wkup-pins-nb" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wkup-pins-pol" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wkup-pins-pupd" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|compatible" "st,stm32-pwr;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000|ADDR" "0x40007000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@1|reg" "1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@1|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@1|ADDR" "0x1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@1|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@2|reg" "2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@2|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@2|ADDR" "0x2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@2|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@4" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@4|reg" "4;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@4|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@4|ADDR" "0x4;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@4|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@5" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@5|reg" "5;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@5|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@5|ADDR" "0x5;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@5|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@6" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@6|reg" "6;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@6|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@6|ADDR" "0x6;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@6|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/power@40007000/wkup-pin@3" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/power@40007000/wkup-pin@3|reg" "3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@3|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@3|ADDR" "0x3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/power@40007000/wkup-pin@3|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40008000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lpuart1" "/soc/serial@40008000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|reg" "1073774592;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|compatible" "st,stm32-lpuart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008000|ADDR" "0x40008000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers2" "/soc/timers@40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|reg" "1073741824;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|interrupts" "15;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000|ADDR" "0x40000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000000/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000000/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000000/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000000/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers6" "/soc/timers@40001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|reg" "1073745920;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|interrupts" "17;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000|ADDR" "0x40001000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers7" "/soc/timers@40001400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|reg" "1073746944;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|interrupts" "18;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400|ADDR" "0x40001400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40001400/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40001400/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40001400/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers15" "/soc/timers@40014000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|reg" "1073823744;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|interrupts" "20;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000|ADDR" "0x40014000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014000/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40014000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|compatible" "st,stm32-counter;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40014000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40014000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dac@40007400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dac1" "/soc/dac@40007400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|reg" "1073771520;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|compatible" "st,stm32-dac;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dac@40007400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dac@40007400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dac@40007400|ADDR" "0x40007400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dac@40007400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40004800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart3" "/soc/serial@40004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|reg" "1073760256;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004800|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004800|ADDR" "0x40004800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40004c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart4" "/soc/serial@40004c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|reg" "1073761280;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40004c00|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004c00|ADDR" "0x40004c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40004c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ucpd@4000a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ucpd1" "/soc/ucpd@4000a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|reg" "1073782784;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|interrupts" "8;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|psc-ucpdclk" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|ifrgap" "17") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|transwin" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|hbitclkdiv" "14") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|dead-battery" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|compatible" "st,stm32-ucpd;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a000|ADDR" "0x4000a000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ucpd@4000a400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ucpd2" "/soc/ucpd@4000a400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|reg" "1073783808;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|interrupts" "8;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|psc-ucpdclk" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|ifrgap" "17") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|transwin" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|hbitclkdiv" "14") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|dead-battery" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|compatible" "st,stm32-ucpd;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ucpd@4000a400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a400|ADDR" "0x4000a400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ucpd@4000a400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/can@40006400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan1" "/soc/can@40006400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|reg" "1073767424;1024;1073787904;848;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|interrupts" "21;0;22;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|interrupt-names" "int0;int1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|bosch,mram-cfg" "0;28;8;3;3;0;3;3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|compatible" "st,stm32-fdcan;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|reg-names" "m_can;message_ram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006400|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006400|ADDR" "0x40006400;0x4000b400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006400|SIZE" "0x400;0x350;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/can@40006800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|fdcan2" "/soc/can@40006800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|reg" "1073768448;1024;1073788752;848;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|interrupts" "21;0;22;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|interrupt-names" "int0;int1;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|bosch,mram-cfg" "0;28;8;3;3;0;3;3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|compatible" "st,stm32-fdcan;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|reg-names" "m_can;message_ram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@40006800|pinctrl-names" "default;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006800|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006800|ADDR" "0x40006800;0x4000b750;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@40006800|SIZE" "0x400;0x350;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40005000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart5" "/soc/serial@40005000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|reg" "1073762304;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40005000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40005000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40005000|ADDR" "0x40005000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40005000|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40013c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usart6" "/soc/serial@40013c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|reg" "1073822720;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|interrupts" "29;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|compatible" "st,stm32-usart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40013c00|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013c00|ADDR" "0x40013c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40013c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/serial@40008400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lpuart2" "/soc/serial@40008400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|reg" "1073775616;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|interrupts" "28;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|single-wire" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|tx-rx-swap" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-assert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-deassert-time" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|de-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|fifo-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|compatible" "st,stm32-lpuart;st,stm32-uart;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/serial@40008400|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008400|ADDR" "0x40008400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/serial@40008400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timers4" "/soc/timers@40000800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|reg" "1073743872;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|st,prescaler" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|st,countermode" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|compatible" "st,stm32-timers;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|interrupts" "16;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|interrupt-names" "global;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800|ADDR" "0x40000800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000800/pwm" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|four-channel-capture-support" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|compatible" "st,stm32-pwm;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/pwm|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/pwm|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/pwm|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/pwm|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/timers@40000800/qdec" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|st,encoder-mode" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|st,input-polarity-inverted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|st,input-filter-level" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|compatible" "st,stm32-qdec;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/timers@40000800/qdec|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/qdec|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/qdec|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/timers@40000800/qdec|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@40008800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c3" "/soc/i2c@40008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|reg" "1073776640;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|interrupts" "24;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|compatible" "st,stm32-i2c-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|interrupt-names" "combined;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@40008800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40008800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40008800|ADDR" "0x40008800;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@40008800|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@40003c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi3" "/soc/spi@40003c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|reg" "1073757184;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|interrupts" "26;3;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|ioswp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|compatible" "st,stm32-spi-fifo;st,stm32-spi;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@40003c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003c00|ADDR" "0x40003c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@40003c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dma@40020400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dma2" "/soc/dma@40020400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|reg" "1073873920;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|interrupts" "11;0;11;0;11;0;11;0;11;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|st,mem2mem" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|dma-offset" "7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|dma-requests" "5") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|compatible" "st,stm32-dma-v2;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@40020400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020400|ADDR" "0x40020400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@40020400|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/usb@40005c00" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb" "/soc/usb@40005c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|zephyr_udc0" "/soc/usb@40005c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|reg" "1073765376;1024;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|interrupts" "8;0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|ram-size" "2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|num-bidir-endpoints" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|maximum-speed" "full-speed") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|compatible" "st,stm32-usb;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|interrupt-names" "usb;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb@40005c00|pinctrl-names" "default;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb@40005c00|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb@40005c00|ADDR" "0x40005c00;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb@40005c00|SIZE" "0x400;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cpu0" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|compatible" "arm,cortex-m0+;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|reg" "0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|ADDR" "0x0;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|SIZE" "NONE;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/state0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|stop0" "/cpus/power-states/state0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|power-state-name" "suspend-to-idle") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|substate-id" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|min-residency-us" "20") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state0|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/state1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|stop1" "/cpus/power-states/state1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|power-state-name" "suspend-to-idle") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|substate-id" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|min-residency-us" "100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/state1|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/state1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/memory@20000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram0" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|zephyr,memory-region" "SRAM0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|compatible" "zephyr,memory-region;mmio-sram;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|reg" "536870912;147456;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/memory@20000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/memory@20000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/memory@20000000|ADDR" "0x20000000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/memory@20000000|SIZE" "0x24000;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-hse" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_hse" "/clocks/clk-hse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|hse-bypass" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|css-enabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|compatible" "st,stm32-hse-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hse|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hse|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hse|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hse|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-hsi" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_hsi" "/clocks/clk-hsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|hsi-div" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|clock-frequency" "16000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|compatible" "st,stm32g0-hsi-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-lse" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_lse" "/clocks/clk-lse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|driving-capability" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|lse-bypass" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|clock-frequency" "32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|compatible" "st,stm32-lse-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lse|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lse|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lse|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lse|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-lsi" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_lsi" "/clocks/clk-lsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|clock-frequency" "32000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|compatible" "fixed-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-lsi|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lsi|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lsi|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-lsi|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/pll" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pll" "/clocks/pll") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-m" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|mul-n" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-p" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-q" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|div-r" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|compatible" "st,stm32g0-pll-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/pll|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/pll|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/pll|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/pll|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clocks/clk-hsi48" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clk_hsi48" "/clocks/clk-hsi48") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|crs-usb-sof" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|clock-frequency" "48000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|compatible" "st,stm32-hsi48-clock;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clocks/clk-hsi48|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi48|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi48|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clocks/clk-hsi48|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/mcos" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/mcos/mco1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mco1" "/mcos/mco1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|compatible" "st,stm32-clock-mco;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/mcos/mco2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mco2" "/mcos/mco2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|compatible" "st,stm32-clock-mco;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/mcos/mco2|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/mcos/mco2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/dietemp" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|die_temp" "/dietemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal2-addr" "536835530") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal2-temp" "130") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal1-addr" "536835496") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal1-temp" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal-vrefanalog" "3000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|ts-cal-resolution" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|compatible" "st,stm32-temp-cal;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/dietemp|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/dietemp|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/dietemp|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/dietemp|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/vref" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|vref" "/vref") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|vrefint-cal-addr" "536835498") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|vrefint-cal-mv" "3000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|vrefint-cal-resolution" "12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|compatible" "st,stm32-vref;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vref|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vref|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vref|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vref|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/vbat" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|vbat" "/vbat") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|ratio" "3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|compatible" "st,stm32-vbat;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/vbat|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vbat|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vbat|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/vbat|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/smbus1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|smbus1" "/smbus1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|compatible" "st,stm32-smbus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/smbus2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|smbus2" "/smbus2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|compatible" "st,stm32-smbus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus2|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/usbphy" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_fs_phy" "/usbphy") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|compatible" "usb-nop-xceiv;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/usbphy|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/usbphy|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/usbphy|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/usbphy|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/smbus3" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|smbus3" "/smbus3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|compatible" "st,stm32-smbus;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/smbus3|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus3|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus3|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/smbus3|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|leds" "/leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds|compatible" "gpio-leds;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds/led_0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|status_led" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds/led_0|label" "Status LED") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/gpio_keys" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|debounce-interval-ms" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|polling-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|no-disconnect" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|compatible" "gpio-keys;") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/gpio_keys/pfet1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pfet1" "/gpio_keys/pfet1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet1|label" "PFET1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet1|zephyr,code" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/gpio_keys/pfet2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pfet2" "/gpio_keys/pfet2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet2|label" "PFET2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/gpio_keys/pfet2|zephyr,code" "3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/gpio_keys/pfet2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0b1kb-ews" "/") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0b1" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|simple-bus" "/soc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,v6m-nvic" "/soc/interrupt-controller@e000e100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,armv6m-systick" "/soc/timer@e000e010") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-flash-controller" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-flash-controller" "/soc/flash-controller@40022000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-nv-flash" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|soc-nv-flash" "/soc/flash-controller@40022000/flash@8000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|fixed-partitions" "/soc/flash-controller@40022000/flash@8000000/partitions") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32f0-rcc" "/soc/rcc@40021000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-rcc-rctl" "/soc/rcc@40021000/reset-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-exti" "/soc/interrupt-controller@40021800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-exti" "/soc/interrupt-controller@40021800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-pinctrl" "/soc/pin-controller@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-gpio" "/soc/pin-controller@50000000/gpio@50000000;/soc/pin-controller@50000000/gpio@50000400;/soc/pin-controller@50000000/gpio@50000800;/soc/pin-controller@50000000/gpio@50000c00;/soc/pin-controller@50000000/gpio@50001400;/soc/pin-controller@50000000/gpio@50001000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-rtc" "/soc/rtc@40002800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-bbram" "/soc/rtc@40002800/backup_regs") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-watchdog" "/soc/watchdog@40003000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-window-watchdog" "/soc/watchdog@40002c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-usart" "/soc/serial@40013800;/soc/serial@40004400;/soc/serial@40004800;/soc/serial@40004c00;/soc/serial@40005000;/soc/serial@40013c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-uart" "/soc/serial@40013800;/soc/serial@40004400;/soc/serial@40008000;/soc/serial@40004800;/soc/serial@40004c00;/soc/serial@40005000;/soc/serial@40013c00;/soc/serial@40008400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-lptim" "/soc/timers@40007c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-timers" "/soc/timers@40012c00;/soc/timers@40000400;/soc/timers@40002000;/soc/timers@40014400;/soc/timers@40014800;/soc/timers@40000000;/soc/timers@40001000;/soc/timers@40001400;/soc/timers@40014000;/soc/timers@40000800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-pwm" "/soc/timers@40012c00/pwm;/soc/timers@40000400/pwm;/soc/timers@40002000/pwm;/soc/timers@40014400/pwm;/soc/timers@40014800/pwm;/soc/timers@40000000/pwm;/soc/timers@40014000/pwm;/soc/timers@40000800/pwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-counter" "/soc/timers@40012c00/counter;/soc/timers@40000400/counter;/soc/timers@40002000/counter;/soc/timers@40014400/counter;/soc/timers@40014800/counter;/soc/timers@40001000/counter;/soc/timers@40001400/counter;/soc/timers@40014000/counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-qdec" "/soc/timers@40012c00/qdec;/soc/timers@40000400/qdec;/soc/timers@40000000/qdec;/soc/timers@40000800/qdec") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-i2c-v2" "/soc/i2c@40005400;/soc/i2c@40005800;/soc/i2c@40008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-spi-fifo" "/soc/spi@40013000;/soc/spi@40003800;/soc/spi@40003c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-spi" "/soc/spi@40013000;/soc/spi@40003800;/soc/spi@40003c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-adc" "/soc/adc@40012400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-dma-v2" "/soc/dma@40020000;/soc/dma@40020400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-dmamux" "/soc/dmamux@40020800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-pwr" "/soc/power@40007000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-lpuart" "/soc/serial@40008000;/soc/serial@40008400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-dac" "/soc/dac@40007400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-ucpd" "/soc/ucpd@4000a000;/soc/ucpd@4000a400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-fdcan" "/soc/can@40006400;/soc/can@40006800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-usb" "/soc/usb@40005c00") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|arm,cortex-m0+" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,power-state" "/cpus/power-states/state0;/cpus/power-states/state1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,memory-region" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|mmio-sram" "/memory@20000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-hse-clock" "/clocks/clk-hse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-hsi-clock" "/clocks/clk-hsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-lse-clock" "/clocks/clk-lse") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|fixed-clock" "/clocks/clk-lsi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32g0-pll-clock" "/clocks/pll") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-hsi48-clock" "/clocks/clk-hsi48") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-clock-mco" "/mcos/mco1;/mcos/mco2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-temp-cal" "/dietemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-vref" "/vref") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-vbat" "/vbat") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|st,stm32-smbus" "/smbus1;/smbus2;/smbus3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|usb-nop-xceiv" "/usbphy") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-leds" "/leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-keys" "/gpio_keys") diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_data_alignment.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_data_alignment.ld new file mode 100644 index 0000000..a9257f1 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_data_alignment.ld @@ -0,0 +1,9 @@ +/* + * Copyright (c) 2017 Linaro Limited. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Set initial alignment to the 32 byte minimum for all MPUs */ +_app_data_align = 32; +. = ALIGN(32); diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem.ld new file mode 100644 index 0000000..7b3eead --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem.ld @@ -0,0 +1,38 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* + * This hackish way of including files is due to CMake issues: + * https://gitlab.kitware.com/cmake/cmake/issues/11985 + * https://gitlab.kitware.com/cmake/cmake/issues/13718 + * + * When using the "Unix Makefiles" generator, CMake simply + * greps for "#include" to generate dependency list. + * So if doing it normally, both files are being included + * in the dependency list. This creates weird dependency + * issue: + * + * 1. Using A.ld to create a linker script A.cmd. + * 2. Using A.cmd to generate A_prebuilt.elf. + * 3. Using A_prebuilt.elf to create B.ld. + * 4. Creating B.cmd with B.ld. + * 5. Creating B_prebuilt.elf using B.cmd. + * + * Since the dependency list of A.cmd contains both + * A.ld and B.ld, when make is invoked again, B.ld + * is newer than A.cmd so everything from this point on + * gets rebuilt. In order to break this cycle, this + * hackish needs to be used since CMake does not parse + * macros, and thus these will not appear in + * the dependency list. The dependencies should then be + * put in CMakeLists.txt instead. + * + * Note: Ninja generator does not suffer from this issue. + */ +#ifdef LINKER_APP_SMEM_UNALIGNED +#define APP_SMEM_LD +#else +#define APP_SMEM_LD +#endif + +#include APP_SMEM_LD +#undef APP_SMEM_LD diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem_aligned.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem_aligned.ld new file mode 100644 index 0000000..ce36567 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem_aligned.ld @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* Empty file */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem_unaligned.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem_unaligned.ld new file mode 100644 index 0000000..ddc31d4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/app_smem_unaligned.ld @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* Empty file */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.cmake b/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.cmake new file mode 100644 index 0000000..ec8370c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.cmake @@ -0,0 +1,176 @@ +list(APPEND sections "{NAME\;can_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;can_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._can_driver_api.static.*\;SYMBOLS\;_can_driver_api_list_start\;_can_driver_api_list_end}") +list(APPEND sections "{NAME\;gpio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;gpio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._gpio_driver_api.static.*\;SYMBOLS\;_gpio_driver_api_list_start\;_gpio_driver_api_list_end}") +list(APPEND sections "{NAME\;reset_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;reset_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._reset_driver_api.static.*\;SYMBOLS\;_reset_driver_api_list_start\;_reset_driver_api_list_end}") +list(APPEND sections "{NAME\;shared_irq_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;shared_irq_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._shared_irq_driver_api.static.*\;SYMBOLS\;_shared_irq_driver_api_list_start\;_shared_irq_driver_api_list_end}") +list(APPEND sections "{NAME\;crypto_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;crypto_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._crypto_driver_api.static.*\;SYMBOLS\;_crypto_driver_api_list_start\;_crypto_driver_api_list_end}") +list(APPEND sections "{NAME\;adc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;adc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._adc_driver_api.static.*\;SYMBOLS\;_adc_driver_api_list_start\;_adc_driver_api_list_end}") +list(APPEND sections "{NAME\;auxdisplay_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;auxdisplay_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._auxdisplay_driver_api.static.*\;SYMBOLS\;_auxdisplay_driver_api_list_start\;_auxdisplay_driver_api_list_end}") +list(APPEND sections "{NAME\;bbram_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bbram_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bbram_driver_api.static.*\;SYMBOLS\;_bbram_driver_api_list_start\;_bbram_driver_api_list_end}") +list(APPEND sections "{NAME\;bt_hci_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bt_hci_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bt_hci_driver_api.static.*\;SYMBOLS\;_bt_hci_driver_api_list_start\;_bt_hci_driver_api_list_end}") +list(APPEND sections "{NAME\;cellular_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;cellular_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._cellular_driver_api.static.*\;SYMBOLS\;_cellular_driver_api_list_start\;_cellular_driver_api_list_end}") +list(APPEND sections "{NAME\;charger_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;charger_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._charger_driver_api.static.*\;SYMBOLS\;_charger_driver_api_list_start\;_charger_driver_api_list_end}") +list(APPEND sections "{NAME\;clock_control_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;clock_control_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._clock_control_driver_api.static.*\;SYMBOLS\;_clock_control_driver_api_list_start\;_clock_control_driver_api_list_end}") +list(APPEND sections "{NAME\;comparator_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;comparator_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._comparator_driver_api.static.*\;SYMBOLS\;_comparator_driver_api_list_start\;_comparator_driver_api_list_end}") +list(APPEND sections "{NAME\;coredump_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;coredump_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._coredump_driver_api.static.*\;SYMBOLS\;_coredump_driver_api_list_start\;_coredump_driver_api_list_end}") +list(APPEND sections "{NAME\;counter_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;counter_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._counter_driver_api.static.*\;SYMBOLS\;_counter_driver_api_list_start\;_counter_driver_api_list_end}") +list(APPEND sections "{NAME\;crc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;crc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._crc_driver_api.static.*\;SYMBOLS\;_crc_driver_api_list_start\;_crc_driver_api_list_end}") +list(APPEND sections "{NAME\;dac_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dac_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dac_driver_api.static.*\;SYMBOLS\;_dac_driver_api_list_start\;_dac_driver_api_list_end}") +list(APPEND sections "{NAME\;dai_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dai_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dai_driver_api.static.*\;SYMBOLS\;_dai_driver_api_list_start\;_dai_driver_api_list_end}") +list(APPEND sections "{NAME\;display_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;display_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._display_driver_api.static.*\;SYMBOLS\;_display_driver_api_list_start\;_display_driver_api_list_end}") +list(APPEND sections "{NAME\;dma_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dma_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dma_driver_api.static.*\;SYMBOLS\;_dma_driver_api_list_start\;_dma_driver_api_list_end}") +list(APPEND sections "{NAME\;edac_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;edac_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._edac_driver_api.static.*\;SYMBOLS\;_edac_driver_api_list_start\;_edac_driver_api_list_end}") +list(APPEND sections "{NAME\;eeprom_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;eeprom_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._eeprom_driver_api.static.*\;SYMBOLS\;_eeprom_driver_api_list_start\;_eeprom_driver_api_list_end}") +list(APPEND sections "{NAME\;emul_bbram_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;emul_bbram_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._emul_bbram_driver_api.static.*\;SYMBOLS\;_emul_bbram_driver_api_list_start\;_emul_bbram_driver_api_list_end}") +list(APPEND sections "{NAME\;fuel_gauge_emul_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fuel_gauge_emul_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fuel_gauge_emul_driver_api.static.*\;SYMBOLS\;_fuel_gauge_emul_driver_api_list_start\;_fuel_gauge_emul_driver_api_list_end}") +list(APPEND sections "{NAME\;emul_sensor_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;emul_sensor_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._emul_sensor_driver_api.static.*\;SYMBOLS\;_emul_sensor_driver_api_list_start\;_emul_sensor_driver_api_list_end}") +list(APPEND sections "{NAME\;entropy_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;entropy_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._entropy_driver_api.static.*\;SYMBOLS\;_entropy_driver_api_list_start\;_entropy_driver_api_list_end}") +list(APPEND sections "{NAME\;espi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;espi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._espi_driver_api.static.*\;SYMBOLS\;_espi_driver_api_list_start\;_espi_driver_api_list_end}") +list(APPEND sections "{NAME\;espi_saf_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;espi_saf_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._espi_saf_driver_api.static.*\;SYMBOLS\;_espi_saf_driver_api_list_start\;_espi_saf_driver_api_list_end}") +list(APPEND sections "{NAME\;flash_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;flash_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._flash_driver_api.static.*\;SYMBOLS\;_flash_driver_api_list_start\;_flash_driver_api_list_end}") +list(APPEND sections "{NAME\;fpga_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fpga_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fpga_driver_api.static.*\;SYMBOLS\;_fpga_driver_api_list_start\;_fpga_driver_api_list_end}") +list(APPEND sections "{NAME\;fuel_gauge_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fuel_gauge_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fuel_gauge_driver_api.static.*\;SYMBOLS\;_fuel_gauge_driver_api_list_start\;_fuel_gauge_driver_api_list_end}") +list(APPEND sections "{NAME\;gnss_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;gnss_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._gnss_driver_api.static.*\;SYMBOLS\;_gnss_driver_api_list_start\;_gnss_driver_api_list_end}") +list(APPEND sections "{NAME\;haptics_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;haptics_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._haptics_driver_api.static.*\;SYMBOLS\;_haptics_driver_api_list_start\;_haptics_driver_api_list_end}") +list(APPEND sections "{NAME\;hwspinlock_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;hwspinlock_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._hwspinlock_driver_api.static.*\;SYMBOLS\;_hwspinlock_driver_api_list_start\;_hwspinlock_driver_api_list_end}") +list(APPEND sections "{NAME\;i2c_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2c_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2c_driver_api.static.*\;SYMBOLS\;_i2c_driver_api_list_start\;_i2c_driver_api_list_end}") +list(APPEND sections "{NAME\;i2c_target_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2c_target_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2c_target_driver_api.static.*\;SYMBOLS\;_i2c_target_driver_api_list_start\;_i2c_target_driver_api_list_end}") +list(APPEND sections "{NAME\;i2s_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2s_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2s_driver_api.static.*\;SYMBOLS\;_i2s_driver_api_list_start\;_i2s_driver_api_list_end}") +list(APPEND sections "{NAME\;i3c_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i3c_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i3c_driver_api.static.*\;SYMBOLS\;_i3c_driver_api_list_start\;_i3c_driver_api_list_end}") +list(APPEND sections "{NAME\;ipm_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ipm_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ipm_driver_api.static.*\;SYMBOLS\;_ipm_driver_api_list_start\;_ipm_driver_api_list_end}") +list(APPEND sections "{NAME\;led_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;led_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._led_driver_api.static.*\;SYMBOLS\;_led_driver_api_list_start\;_led_driver_api_list_end}") +list(APPEND sections "{NAME\;led_strip_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;led_strip_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._led_strip_driver_api.static.*\;SYMBOLS\;_led_strip_driver_api_list_start\;_led_strip_driver_api_list_end}") +list(APPEND sections "{NAME\;lora_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;lora_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._lora_driver_api.static.*\;SYMBOLS\;_lora_driver_api_list_start\;_lora_driver_api_list_end}") +list(APPEND sections "{NAME\;mbox_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mbox_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mbox_driver_api.static.*\;SYMBOLS\;_mbox_driver_api_list_start\;_mbox_driver_api_list_end}") +list(APPEND sections "{NAME\;mdio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mdio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mdio_driver_api.static.*\;SYMBOLS\;_mdio_driver_api_list_start\;_mdio_driver_api_list_end}") +list(APPEND sections "{NAME\;mipi_dbi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mipi_dbi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mipi_dbi_driver_api.static.*\;SYMBOLS\;_mipi_dbi_driver_api_list_start\;_mipi_dbi_driver_api_list_end}") +list(APPEND sections "{NAME\;mipi_dsi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mipi_dsi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mipi_dsi_driver_api.static.*\;SYMBOLS\;_mipi_dsi_driver_api_list_start\;_mipi_dsi_driver_api_list_end}") +list(APPEND sections "{NAME\;mspi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mspi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mspi_driver_api.static.*\;SYMBOLS\;_mspi_driver_api_list_start\;_mspi_driver_api_list_end}") +list(APPEND sections "{NAME\;opamp_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;opamp_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._opamp_driver_api.static.*\;SYMBOLS\;_opamp_driver_api_list_start\;_opamp_driver_api_list_end}") +list(APPEND sections "{NAME\;peci_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;peci_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._peci_driver_api.static.*\;SYMBOLS\;_peci_driver_api_list_start\;_peci_driver_api_list_end}") +list(APPEND sections "{NAME\;ps2_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ps2_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ps2_driver_api.static.*\;SYMBOLS\;_ps2_driver_api_list_start\;_ps2_driver_api_list_end}") +list(APPEND sections "{NAME\;ptp_clock_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ptp_clock_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ptp_clock_driver_api.static.*\;SYMBOLS\;_ptp_clock_driver_api_list_start\;_ptp_clock_driver_api_list_end}") +list(APPEND sections "{NAME\;pwm_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pwm_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pwm_driver_api.static.*\;SYMBOLS\;_pwm_driver_api_list_start\;_pwm_driver_api_list_end}") +list(APPEND sections "{NAME\;regulator_parent_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;regulator_parent_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._regulator_parent_driver_api.static.*\;SYMBOLS\;_regulator_parent_driver_api_list_start\;_regulator_parent_driver_api_list_end}") +list(APPEND sections "{NAME\;regulator_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;regulator_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._regulator_driver_api.static.*\;SYMBOLS\;_regulator_driver_api_list_start\;_regulator_driver_api_list_end}") +list(APPEND sections "{NAME\;retained_mem_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;retained_mem_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._retained_mem_driver_api.static.*\;SYMBOLS\;_retained_mem_driver_api_list_start\;_retained_mem_driver_api_list_end}") +list(APPEND sections "{NAME\;rtc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;rtc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._rtc_driver_api.static.*\;SYMBOLS\;_rtc_driver_api_list_start\;_rtc_driver_api_list_end}") +list(APPEND sections "{NAME\;sdhc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sdhc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sdhc_driver_api.static.*\;SYMBOLS\;_sdhc_driver_api_list_start\;_sdhc_driver_api_list_end}") +list(APPEND sections "{NAME\;sensor_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sensor_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sensor_driver_api.static.*\;SYMBOLS\;_sensor_driver_api_list_start\;_sensor_driver_api_list_end}") +list(APPEND sections "{NAME\;smbus_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;smbus_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._smbus_driver_api.static.*\;SYMBOLS\;_smbus_driver_api_list_start\;_smbus_driver_api_list_end}") +list(APPEND sections "{NAME\;spi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;spi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._spi_driver_api.static.*\;SYMBOLS\;_spi_driver_api_list_start\;_spi_driver_api_list_end}") +list(APPEND sections "{NAME\;stepper_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;stepper_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._stepper_driver_api.static.*\;SYMBOLS\;_stepper_driver_api_list_start\;_stepper_driver_api_list_end}") +list(APPEND sections "{NAME\;syscon_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;syscon_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._syscon_driver_api.static.*\;SYMBOLS\;_syscon_driver_api_list_start\;_syscon_driver_api_list_end}") +list(APPEND sections "{NAME\;tee_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tee_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tee_driver_api.static.*\;SYMBOLS\;_tee_driver_api_list_start\;_tee_driver_api_list_end}") +list(APPEND sections "{NAME\;video_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;video_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._video_driver_api.static.*\;SYMBOLS\;_video_driver_api_list_start\;_video_driver_api_list_end}") +list(APPEND sections "{NAME\;virtio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;virtio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._virtio_driver_api.static.*\;SYMBOLS\;_virtio_driver_api_list_start\;_virtio_driver_api_list_end}") +list(APPEND sections "{NAME\;w1_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;w1_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._w1_driver_api.static.*\;SYMBOLS\;_w1_driver_api_list_start\;_w1_driver_api_list_end}") +list(APPEND sections "{NAME\;wdt_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;wdt_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._wdt_driver_api.static.*\;SYMBOLS\;_wdt_driver_api_list_start\;_wdt_driver_api_list_end}") +list(APPEND sections "{NAME\;can_transceiver_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;can_transceiver_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._can_transceiver_driver_api.static.*\;SYMBOLS\;_can_transceiver_driver_api_list_start\;_can_transceiver_driver_api_list_end}") +list(APPEND sections "{NAME\;nrf_clock_control_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;nrf_clock_control_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._nrf_clock_control_driver_api.static.*\;SYMBOLS\;_nrf_clock_control_driver_api_list_start\;_nrf_clock_control_driver_api_list_end}") +list(APPEND sections "{NAME\;i3c_target_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i3c_target_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i3c_target_driver_api.static.*\;SYMBOLS\;_i3c_target_driver_api_list_start\;_i3c_target_driver_api_list_end}") +list(APPEND sections "{NAME\;its_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;its_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._its_driver_api.static.*\;SYMBOLS\;_its_driver_api_list_start\;_its_driver_api_list_end}") +list(APPEND sections "{NAME\;vtd_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;vtd_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._vtd_driver_api.static.*\;SYMBOLS\;_vtd_driver_api_list_start\;_vtd_driver_api_list_end}") +list(APPEND sections "{NAME\;renesas_elc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;renesas_elc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._renesas_elc_driver_api.static.*\;SYMBOLS\;_renesas_elc_driver_api_list_start\;_renesas_elc_driver_api_list_end}") +list(APPEND sections "{NAME\;tgpio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tgpio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tgpio_driver_api.static.*\;SYMBOLS\;_tgpio_driver_api_list_start\;_tgpio_driver_api_list_end}") +list(APPEND sections "{NAME\;pcie_ctrl_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pcie_ctrl_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pcie_ctrl_driver_api.static.*\;SYMBOLS\;_pcie_ctrl_driver_api_list_start\;_pcie_ctrl_driver_api_list_end}") +list(APPEND sections "{NAME\;pcie_ep_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pcie_ep_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pcie_ep_driver_api.static.*\;SYMBOLS\;_pcie_ep_driver_api_list_start\;_pcie_ep_driver_api_list_end}") +list(APPEND sections "{NAME\;psi5_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;psi5_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._psi5_driver_api.static.*\;SYMBOLS\;_psi5_driver_api_list_start\;_psi5_driver_api_list_end}") +list(APPEND sections "{NAME\;sent_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sent_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sent_driver_api.static.*\;SYMBOLS\;_sent_driver_api_list_start\;_sent_driver_api_list_end}") +list(APPEND sections "{NAME\;svc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;svc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._svc_driver_api.static.*\;SYMBOLS\;_svc_driver_api_list_start\;_svc_driver_api_list_end}") +list(APPEND sections "{NAME\;uart_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;uart_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._uart_driver_api.static.*\;SYMBOLS\;_uart_driver_api_list_start\;_uart_driver_api_list_end}") +list(APPEND sections "{NAME\;bc12_emul_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bc12_emul_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bc12_emul_driver_api.static.*\;SYMBOLS\;_bc12_emul_driver_api_list_start\;_bc12_emul_driver_api_list_end}") +list(APPEND sections "{NAME\;bc12_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bc12_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bc12_driver_api.static.*\;SYMBOLS\;_bc12_driver_api_list_start\;_bc12_driver_api_list_end}") +list(APPEND sections "{NAME\;usbc_ppc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;usbc_ppc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._usbc_ppc_driver_api.static.*\;SYMBOLS\;_usbc_ppc_driver_api_list_start\;_usbc_ppc_driver_api_list_end}") +list(APPEND sections "{NAME\;tcpc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tcpc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tcpc_driver_api.static.*\;SYMBOLS\;_tcpc_driver_api_list_start\;_tcpc_driver_api_list_end}") +list(APPEND sections "{NAME\;usbc_vbus_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;usbc_vbus_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._usbc_vbus_driver_api.static.*\;SYMBOLS\;_usbc_vbus_driver_api_list_start\;_usbc_vbus_driver_api_list_end}") +list(APPEND sections "{NAME\;ivshmem_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ivshmem_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ivshmem_driver_api.static.*\;SYMBOLS\;_ivshmem_driver_api_list_start\;_ivshmem_driver_api_list_end}") +list(APPEND sections "{NAME\;ethphy_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ethphy_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ethphy_driver_api.static.*\;SYMBOLS\;_ethphy_driver_api_list_start\;_ethphy_driver_api_list_end}") +set(DEVICE_API_SECTIONS "${sections}" CACHE INTERNAL "") +set(DEVICE_API_SECTION_SETTINGS "${section_settings}" CACHE INTERNAL "") diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld new file mode 100644 index 0000000..fd9fd73 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld @@ -0,0 +1,87 @@ +ITERABLE_SECTION_ROM(can_driver_api, 4) +ITERABLE_SECTION_ROM(gpio_driver_api, 4) +ITERABLE_SECTION_ROM(reset_driver_api, 4) +ITERABLE_SECTION_ROM(shared_irq_driver_api, 4) +ITERABLE_SECTION_ROM(crypto_driver_api, 4) +ITERABLE_SECTION_ROM(adc_driver_api, 4) +ITERABLE_SECTION_ROM(auxdisplay_driver_api, 4) +ITERABLE_SECTION_ROM(bbram_driver_api, 4) +ITERABLE_SECTION_ROM(bt_hci_driver_api, 4) +ITERABLE_SECTION_ROM(cellular_driver_api, 4) +ITERABLE_SECTION_ROM(charger_driver_api, 4) +ITERABLE_SECTION_ROM(clock_control_driver_api, 4) +ITERABLE_SECTION_ROM(comparator_driver_api, 4) +ITERABLE_SECTION_ROM(coredump_driver_api, 4) +ITERABLE_SECTION_ROM(counter_driver_api, 4) +ITERABLE_SECTION_ROM(crc_driver_api, 4) +ITERABLE_SECTION_ROM(dac_driver_api, 4) +ITERABLE_SECTION_ROM(dai_driver_api, 4) +ITERABLE_SECTION_ROM(display_driver_api, 4) +ITERABLE_SECTION_ROM(dma_driver_api, 4) +ITERABLE_SECTION_ROM(edac_driver_api, 4) +ITERABLE_SECTION_ROM(eeprom_driver_api, 4) +ITERABLE_SECTION_ROM(emul_bbram_driver_api, 4) +ITERABLE_SECTION_ROM(fuel_gauge_emul_driver_api, 4) +ITERABLE_SECTION_ROM(emul_sensor_driver_api, 4) +ITERABLE_SECTION_ROM(entropy_driver_api, 4) +ITERABLE_SECTION_ROM(espi_driver_api, 4) +ITERABLE_SECTION_ROM(espi_saf_driver_api, 4) +ITERABLE_SECTION_ROM(flash_driver_api, 4) +ITERABLE_SECTION_ROM(fpga_driver_api, 4) +ITERABLE_SECTION_ROM(fuel_gauge_driver_api, 4) +ITERABLE_SECTION_ROM(gnss_driver_api, 4) +ITERABLE_SECTION_ROM(haptics_driver_api, 4) +ITERABLE_SECTION_ROM(hwspinlock_driver_api, 4) +ITERABLE_SECTION_ROM(i2c_driver_api, 4) +ITERABLE_SECTION_ROM(i2c_target_driver_api, 4) +ITERABLE_SECTION_ROM(i2s_driver_api, 4) +ITERABLE_SECTION_ROM(i3c_driver_api, 4) +ITERABLE_SECTION_ROM(ipm_driver_api, 4) +ITERABLE_SECTION_ROM(led_driver_api, 4) +ITERABLE_SECTION_ROM(led_strip_driver_api, 4) +ITERABLE_SECTION_ROM(lora_driver_api, 4) +ITERABLE_SECTION_ROM(mbox_driver_api, 4) +ITERABLE_SECTION_ROM(mdio_driver_api, 4) +ITERABLE_SECTION_ROM(mipi_dbi_driver_api, 4) +ITERABLE_SECTION_ROM(mipi_dsi_driver_api, 4) +ITERABLE_SECTION_ROM(mspi_driver_api, 4) +ITERABLE_SECTION_ROM(opamp_driver_api, 4) +ITERABLE_SECTION_ROM(peci_driver_api, 4) +ITERABLE_SECTION_ROM(ps2_driver_api, 4) +ITERABLE_SECTION_ROM(ptp_clock_driver_api, 4) +ITERABLE_SECTION_ROM(pwm_driver_api, 4) +ITERABLE_SECTION_ROM(regulator_parent_driver_api, 4) +ITERABLE_SECTION_ROM(regulator_driver_api, 4) +ITERABLE_SECTION_ROM(retained_mem_driver_api, 4) +ITERABLE_SECTION_ROM(rtc_driver_api, 4) +ITERABLE_SECTION_ROM(sdhc_driver_api, 4) +ITERABLE_SECTION_ROM(sensor_driver_api, 4) +ITERABLE_SECTION_ROM(smbus_driver_api, 4) +ITERABLE_SECTION_ROM(spi_driver_api, 4) +ITERABLE_SECTION_ROM(stepper_driver_api, 4) +ITERABLE_SECTION_ROM(syscon_driver_api, 4) +ITERABLE_SECTION_ROM(tee_driver_api, 4) +ITERABLE_SECTION_ROM(video_driver_api, 4) +ITERABLE_SECTION_ROM(virtio_driver_api, 4) +ITERABLE_SECTION_ROM(w1_driver_api, 4) +ITERABLE_SECTION_ROM(wdt_driver_api, 4) +ITERABLE_SECTION_ROM(can_transceiver_driver_api, 4) +ITERABLE_SECTION_ROM(nrf_clock_control_driver_api, 4) +ITERABLE_SECTION_ROM(i3c_target_driver_api, 4) +ITERABLE_SECTION_ROM(its_driver_api, 4) +ITERABLE_SECTION_ROM(vtd_driver_api, 4) +ITERABLE_SECTION_ROM(renesas_elc_driver_api, 4) +ITERABLE_SECTION_ROM(tgpio_driver_api, 4) +ITERABLE_SECTION_ROM(pcie_ctrl_driver_api, 4) +ITERABLE_SECTION_ROM(pcie_ep_driver_api, 4) +ITERABLE_SECTION_ROM(psi5_driver_api, 4) +ITERABLE_SECTION_ROM(sent_driver_api, 4) +ITERABLE_SECTION_ROM(svc_driver_api, 4) +ITERABLE_SECTION_ROM(uart_driver_api, 4) +ITERABLE_SECTION_ROM(bc12_emul_driver_api, 4) +ITERABLE_SECTION_ROM(bc12_driver_api, 4) +ITERABLE_SECTION_ROM(usbc_ppc_driver_api, 4) +ITERABLE_SECTION_ROM(tcpc_driver_api, 4) +ITERABLE_SECTION_ROM(usbc_vbus_driver_api, 4) +ITERABLE_SECTION_ROM(ivshmem_driver_api, 4) +ITERABLE_SECTION_ROM(ethphy_driver_api, 4) diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-data-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-data-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-dtcm-section.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-dtcm-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-itcm-section.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-itcm-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-nocache-section.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-nocache-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-noinit.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-noinit.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-pinned-data-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-pinned-data-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-pinned-ram-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-pinned-ram-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-pinned-rodata.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-pinned-rodata.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ram-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ram-sections.ld new file mode 100644 index 0000000..74bd87f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ram-sections.ld @@ -0,0 +1 @@ +/* Sort key: "default" */#include "../arch/common/ramfunc.ld" diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ramfunc-section.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ramfunc-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rodata.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rodata.ld new file mode 100644 index 0000000..27b783f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rodata.ld @@ -0,0 +1 @@ +/* Sort key: "default" */#include "../arch/arm/core/swi_tables.ld" diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-start.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-start.ld new file mode 100644 index 0000000..4f6d2e6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-start.ld @@ -0,0 +1,6 @@ +/* Sort key: "!" */#include "../arch/common/rom_start_address.ld" +/* Sort key: "$" */#include "../arch/common/fill_with_zeros.ld" +/* Sort key: "0x0" */#include "../arch/common/rom_start_offset.ld" +/* Sort key: "0x0vectors" */#include "../arch/arm/core/vector_table.ld" +/* Sort key: "0x0vectors" */#include "zephyr/linker/irq-vector-table-section.ld" +/* Sort key: "0x1vectors" */#include "../arch/arm/core/cortex_m/vector_table_pad.ld" diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rwdata.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rwdata.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-sections.ld new file mode 100644 index 0000000..3c846b2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-sections.ld @@ -0,0 +1 @@ +/* Sort key: "default" */#include "zephyr/linker/intlist.ld" diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-text-sections.ld b/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-text-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/syscall_list.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/syscall_list.h new file mode 100644 index 0000000..8506af3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/syscall_list.h @@ -0,0 +1,604 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef ZEPHYR_SYSCALL_LIST_H +#define ZEPHYR_SYSCALL_LIST_H + +#define K_SYSCALL_ATOMIC_ADD 0 +#define K_SYSCALL_ATOMIC_AND 1 +#define K_SYSCALL_ATOMIC_CAS 2 +#define K_SYSCALL_ATOMIC_NAND 3 +#define K_SYSCALL_ATOMIC_OR 4 +#define K_SYSCALL_ATOMIC_PTR_CAS 5 +#define K_SYSCALL_ATOMIC_PTR_SET 6 +#define K_SYSCALL_ATOMIC_SET 7 +#define K_SYSCALL_ATOMIC_SUB 8 +#define K_SYSCALL_ATOMIC_XOR 9 +#define K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ 10 +#define K_SYSCALL_CAN_CALC_TIMING 11 +#define K_SYSCALL_CAN_CALC_TIMING_DATA 12 +#define K_SYSCALL_CAN_GET_BITRATE_MAX 13 +#define K_SYSCALL_CAN_GET_BITRATE_MIN 14 +#define K_SYSCALL_CAN_GET_CAPABILITIES 15 +#define K_SYSCALL_CAN_GET_CORE_CLOCK 16 +#define K_SYSCALL_CAN_GET_MAX_FILTERS 17 +#define K_SYSCALL_CAN_GET_MODE 18 +#define K_SYSCALL_CAN_GET_STATE 19 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MAX 20 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MIN 21 +#define K_SYSCALL_CAN_GET_TIMING_MAX 22 +#define K_SYSCALL_CAN_GET_TIMING_MIN 23 +#define K_SYSCALL_CAN_GET_TRANSCEIVER 24 +#define K_SYSCALL_CAN_RECOVER 25 +#define K_SYSCALL_CAN_REMOVE_RX_FILTER 26 +#define K_SYSCALL_CAN_SEND 27 +#define K_SYSCALL_CAN_SET_BITRATE 28 +#define K_SYSCALL_CAN_SET_BITRATE_DATA 29 +#define K_SYSCALL_CAN_SET_MODE 30 +#define K_SYSCALL_CAN_SET_TIMING 31 +#define K_SYSCALL_CAN_SET_TIMING_DATA 32 +#define K_SYSCALL_CAN_START 33 +#define K_SYSCALL_CAN_STATS_GET_ACK_ERRORS 34 +#define K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS 35 +#define K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS 36 +#define K_SYSCALL_CAN_STATS_GET_BIT_ERRORS 37 +#define K_SYSCALL_CAN_STATS_GET_CRC_ERRORS 38 +#define K_SYSCALL_CAN_STATS_GET_FORM_ERRORS 39 +#define K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS 40 +#define K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS 41 +#define K_SYSCALL_CAN_STOP 42 +#define K_SYSCALL_DEVICE_DEINIT 43 +#define K_SYSCALL_DEVICE_GET_BINDING 44 +#define K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL 45 +#define K_SYSCALL_DEVICE_INIT 46 +#define K_SYSCALL_DEVICE_IS_READY 47 +#define K_SYSCALL_GPIO_GET_PENDING_INT 48 +#define K_SYSCALL_GPIO_PIN_CONFIGURE 49 +#define K_SYSCALL_GPIO_PIN_GET_CONFIG 50 +#define K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE 51 +#define K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW 52 +#define K_SYSCALL_GPIO_PORT_GET_DIRECTION 53 +#define K_SYSCALL_GPIO_PORT_GET_RAW 54 +#define K_SYSCALL_GPIO_PORT_SET_BITS_RAW 55 +#define K_SYSCALL_GPIO_PORT_SET_MASKED_RAW 56 +#define K_SYSCALL_GPIO_PORT_TOGGLE_BITS 57 +#define K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE 58 +#define K_SYSCALL_HWINFO_GET_DEVICE_EUI64 59 +#define K_SYSCALL_HWINFO_GET_DEVICE_ID 60 +#define K_SYSCALL_HWINFO_GET_RESET_CAUSE 61 +#define K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE 62 +#define K_SYSCALL_K_BUSY_WAIT 63 +#define K_SYSCALL_K_CONDVAR_BROADCAST 64 +#define K_SYSCALL_K_CONDVAR_INIT 65 +#define K_SYSCALL_K_CONDVAR_SIGNAL 66 +#define K_SYSCALL_K_CONDVAR_WAIT 67 +#define K_SYSCALL_K_EVENT_CLEAR 68 +#define K_SYSCALL_K_EVENT_INIT 69 +#define K_SYSCALL_K_EVENT_POST 70 +#define K_SYSCALL_K_EVENT_SET 71 +#define K_SYSCALL_K_EVENT_SET_MASKED 72 +#define K_SYSCALL_K_EVENT_WAIT 73 +#define K_SYSCALL_K_EVENT_WAIT_ALL 74 +#define K_SYSCALL_K_EVENT_WAIT_ALL_SAFE 75 +#define K_SYSCALL_K_EVENT_WAIT_SAFE 76 +#define K_SYSCALL_K_FLOAT_DISABLE 77 +#define K_SYSCALL_K_FLOAT_ENABLE 78 +#define K_SYSCALL_K_FUTEX_WAIT 79 +#define K_SYSCALL_K_FUTEX_WAKE 80 +#define K_SYSCALL_K_IS_PREEMPT_THREAD 81 +#define K_SYSCALL_K_MSGQ_ALLOC_INIT 82 +#define K_SYSCALL_K_MSGQ_GET 83 +#define K_SYSCALL_K_MSGQ_GET_ATTRS 84 +#define K_SYSCALL_K_MSGQ_NUM_FREE_GET 85 +#define K_SYSCALL_K_MSGQ_NUM_USED_GET 86 +#define K_SYSCALL_K_MSGQ_PEEK 87 +#define K_SYSCALL_K_MSGQ_PEEK_AT 88 +#define K_SYSCALL_K_MSGQ_PURGE 89 +#define K_SYSCALL_K_MSGQ_PUT 90 +#define K_SYSCALL_K_MSGQ_PUT_FRONT 91 +#define K_SYSCALL_K_MUTEX_INIT 92 +#define K_SYSCALL_K_MUTEX_LOCK 93 +#define K_SYSCALL_K_MUTEX_UNLOCK 94 +#define K_SYSCALL_K_OBJECT_ACCESS_GRANT 95 +#define K_SYSCALL_K_OBJECT_ALLOC 96 +#define K_SYSCALL_K_OBJECT_ALLOC_SIZE 97 +#define K_SYSCALL_K_OBJECT_RELEASE 98 +#define K_SYSCALL_K_PIPE_CLOSE 99 +#define K_SYSCALL_K_PIPE_INIT 100 +#define K_SYSCALL_K_PIPE_READ 101 +#define K_SYSCALL_K_PIPE_RESET 102 +#define K_SYSCALL_K_PIPE_WRITE 103 +#define K_SYSCALL_K_POLL 104 +#define K_SYSCALL_K_POLL_SIGNAL_CHECK 105 +#define K_SYSCALL_K_POLL_SIGNAL_INIT 106 +#define K_SYSCALL_K_POLL_SIGNAL_RAISE 107 +#define K_SYSCALL_K_POLL_SIGNAL_RESET 108 +#define K_SYSCALL_K_QUEUE_ALLOC_APPEND 109 +#define K_SYSCALL_K_QUEUE_ALLOC_PREPEND 110 +#define K_SYSCALL_K_QUEUE_CANCEL_WAIT 111 +#define K_SYSCALL_K_QUEUE_GET 112 +#define K_SYSCALL_K_QUEUE_INIT 113 +#define K_SYSCALL_K_QUEUE_IS_EMPTY 114 +#define K_SYSCALL_K_QUEUE_PEEK_HEAD 115 +#define K_SYSCALL_K_QUEUE_PEEK_TAIL 116 +#define K_SYSCALL_K_RESCHEDULE 117 +#define K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY 118 +#define K_SYSCALL_K_SEM_COUNT_GET 119 +#define K_SYSCALL_K_SEM_GIVE 120 +#define K_SYSCALL_K_SEM_INIT 121 +#define K_SYSCALL_K_SEM_RESET 122 +#define K_SYSCALL_K_SEM_TAKE 123 +#define K_SYSCALL_K_SLEEP 124 +#define K_SYSCALL_K_STACK_ALLOC_INIT 125 +#define K_SYSCALL_K_STACK_POP 126 +#define K_SYSCALL_K_STACK_PUSH 127 +#define K_SYSCALL_K_STR_OUT 128 +#define K_SYSCALL_K_THREAD_ABORT 129 +#define K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET 130 +#define K_SYSCALL_K_THREAD_CREATE 131 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_GET 132 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_SET 133 +#define K_SYSCALL_K_THREAD_DEADLINE_SET 134 +#define K_SYSCALL_K_THREAD_JOIN 135 +#define K_SYSCALL_K_THREAD_NAME_COPY 136 +#define K_SYSCALL_K_THREAD_NAME_SET 137 +#define K_SYSCALL_K_THREAD_PRIORITY_GET 138 +#define K_SYSCALL_K_THREAD_PRIORITY_SET 139 +#define K_SYSCALL_K_THREAD_RESUME 140 +#define K_SYSCALL_K_THREAD_STACK_ALLOC 141 +#define K_SYSCALL_K_THREAD_STACK_FREE 142 +#define K_SYSCALL_K_THREAD_STACK_SPACE_GET 143 +#define K_SYSCALL_K_THREAD_SUSPEND 144 +#define K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS 145 +#define K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS 146 +#define K_SYSCALL_K_TIMER_EXPIRES_TICKS 147 +#define K_SYSCALL_K_TIMER_REMAINING_TICKS 148 +#define K_SYSCALL_K_TIMER_START 149 +#define K_SYSCALL_K_TIMER_STATUS_GET 150 +#define K_SYSCALL_K_TIMER_STATUS_SYNC 151 +#define K_SYSCALL_K_TIMER_STOP 152 +#define K_SYSCALL_K_TIMER_USER_DATA_GET 153 +#define K_SYSCALL_K_TIMER_USER_DATA_SET 154 +#define K_SYSCALL_K_UPTIME_TICKS 155 +#define K_SYSCALL_K_USLEEP 156 +#define K_SYSCALL_K_WAKEUP 157 +#define K_SYSCALL_K_YIELD 158 +#define K_SYSCALL_LOG_BUFFERED_CNT 159 +#define K_SYSCALL_LOG_FILTER_SET 160 +#define K_SYSCALL_LOG_FRONTEND_FILTER_SET 161 +#define K_SYSCALL_LOG_PANIC 162 +#define K_SYSCALL_LOG_PROCESS 163 +#define K_SYSCALL_RESET_LINE_ASSERT 164 +#define K_SYSCALL_RESET_LINE_DEASSERT 165 +#define K_SYSCALL_RESET_LINE_TOGGLE 166 +#define K_SYSCALL_RESET_STATUS 167 +#define K_SYSCALL_SYS_CLOCK_GETRTOFFSET 168 +#define K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET 169 +#define K_SYSCALL_SYS_CLOCK_NANOSLEEP 170 +#define K_SYSCALL_SYS_CLOCK_SETTIME 171 +#define K_SYSCALL_UART_CONFIGURE 172 +#define K_SYSCALL_UART_CONFIG_GET 173 +#define K_SYSCALL_UART_DRV_CMD 174 +#define K_SYSCALL_UART_ERR_CHECK 175 +#define K_SYSCALL_UART_IRQ_ERR_DISABLE 176 +#define K_SYSCALL_UART_IRQ_ERR_ENABLE 177 +#define K_SYSCALL_UART_IRQ_IS_PENDING 178 +#define K_SYSCALL_UART_IRQ_RX_DISABLE 179 +#define K_SYSCALL_UART_IRQ_RX_ENABLE 180 +#define K_SYSCALL_UART_IRQ_TX_DISABLE 181 +#define K_SYSCALL_UART_IRQ_TX_ENABLE 182 +#define K_SYSCALL_UART_IRQ_UPDATE 183 +#define K_SYSCALL_UART_LINE_CTRL_GET 184 +#define K_SYSCALL_UART_LINE_CTRL_SET 185 +#define K_SYSCALL_UART_POLL_IN 186 +#define K_SYSCALL_UART_POLL_IN_U16 187 +#define K_SYSCALL_UART_POLL_OUT 188 +#define K_SYSCALL_UART_POLL_OUT_U16 189 +#define K_SYSCALL_UART_RX_DISABLE 190 +#define K_SYSCALL_UART_RX_ENABLE 191 +#define K_SYSCALL_UART_RX_ENABLE_U16 192 +#define K_SYSCALL_UART_TX 193 +#define K_SYSCALL_UART_TX_ABORT 194 +#define K_SYSCALL_UART_TX_U16 195 +#define K_SYSCALL_ZEPHYR_FPUTC 196 +#define K_SYSCALL_ZEPHYR_FWRITE 197 +#define K_SYSCALL_ZEPHYR_READ_STDIN 198 +#define K_SYSCALL_ZEPHYR_WRITE_STDOUT 199 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0 200 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1 201 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2 202 +#define K_SYSCALL_Z_LOG_MSG_STATIC_CREATE 203 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK 204 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK 205 +#define K_SYSCALL_BAD 206 +#define K_SYSCALL_LIMIT 207 + + +/* Following syscalls are not used in image */ +#define K_SYSCALL_ADC_CHANNEL_SETUP 208 +#define K_SYSCALL_ADC_GET_DECODER 209 +#define K_SYSCALL_ADC_READ 210 +#define K_SYSCALL_ADC_READ_ASYNC 211 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET 212 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET 213 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET 214 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET 215 +#define K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET 216 +#define K_SYSCALL_AUXDISPLAY_CLEAR 217 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET 218 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET 219 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED 220 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET 221 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET 222 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND 223 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_OFF 224 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_ON 225 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET 226 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET 227 +#define K_SYSCALL_AUXDISPLAY_IS_BUSY 228 +#define K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED 229 +#define K_SYSCALL_AUXDISPLAY_WRITE 230 +#define K_SYSCALL_BBRAM_CHECK_INVALID 231 +#define K_SYSCALL_BBRAM_CHECK_POWER 232 +#define K_SYSCALL_BBRAM_CHECK_STANDBY_POWER 233 +#define K_SYSCALL_BBRAM_GET_SIZE 234 +#define K_SYSCALL_BBRAM_READ 235 +#define K_SYSCALL_BBRAM_WRITE 236 +#define K_SYSCALL_BC12_SET_RESULT_CB 237 +#define K_SYSCALL_BC12_SET_ROLE 238 +#define K_SYSCALL_CHARGER_CHARGE_ENABLE 239 +#define K_SYSCALL_CHARGER_GET_PROP 240 +#define K_SYSCALL_CHARGER_SET_PROP 241 +#define K_SYSCALL_COMPARATOR_GET_OUTPUT 242 +#define K_SYSCALL_COMPARATOR_SET_TRIGGER 243 +#define K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING 244 +#define K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM 245 +#define K_SYSCALL_COUNTER_GET_FREQUENCY 246 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD 247 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE 248 +#define K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS 249 +#define K_SYSCALL_COUNTER_GET_PENDING_INT 250 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE 251 +#define K_SYSCALL_COUNTER_GET_VALUE 252 +#define K_SYSCALL_COUNTER_GET_VALUE_64 253 +#define K_SYSCALL_COUNTER_IS_COUNTING_UP 254 +#define K_SYSCALL_COUNTER_RESET 255 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM 256 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD 257 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE 258 +#define K_SYSCALL_COUNTER_START 259 +#define K_SYSCALL_COUNTER_STOP 260 +#define K_SYSCALL_COUNTER_TICKS_TO_NS 261 +#define K_SYSCALL_COUNTER_TICKS_TO_US 262 +#define K_SYSCALL_COUNTER_US_TO_TICKS 263 +#define K_SYSCALL_CRC_BEGIN 264 +#define K_SYSCALL_CRC_FINISH 265 +#define K_SYSCALL_CRC_UPDATE 266 +#define K_SYSCALL_DAC_CHANNEL_SETUP 267 +#define K_SYSCALL_DAC_WRITE_VALUE 268 +#define K_SYSCALL_DEVMUX_SELECT_GET 269 +#define K_SYSCALL_DEVMUX_SELECT_SET 270 +#define K_SYSCALL_EEPROM_GET_SIZE 271 +#define K_SYSCALL_EEPROM_READ 272 +#define K_SYSCALL_EEPROM_WRITE 273 +#define K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF 274 +#define K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING 275 +#define K_SYSCALL_ENTROPY_GET_ENTROPY 276 +#define K_SYSCALL_ESPI_CONFIG 277 +#define K_SYSCALL_ESPI_FLASH_ERASE 278 +#define K_SYSCALL_ESPI_GET_CHANNEL_STATUS 279 +#define K_SYSCALL_ESPI_READ_FLASH 280 +#define K_SYSCALL_ESPI_READ_LPC_REQUEST 281 +#define K_SYSCALL_ESPI_READ_REQUEST 282 +#define K_SYSCALL_ESPI_RECEIVE_OOB 283 +#define K_SYSCALL_ESPI_RECEIVE_VWIRE 284 +#define K_SYSCALL_ESPI_SAF_ACTIVATE 285 +#define K_SYSCALL_ESPI_SAF_CONFIG 286 +#define K_SYSCALL_ESPI_SAF_FLASH_ERASE 287 +#define K_SYSCALL_ESPI_SAF_FLASH_READ 288 +#define K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS 289 +#define K_SYSCALL_ESPI_SAF_FLASH_WRITE 290 +#define K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS 291 +#define K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS 292 +#define K_SYSCALL_ESPI_SEND_OOB 293 +#define K_SYSCALL_ESPI_SEND_VWIRE 294 +#define K_SYSCALL_ESPI_WRITE_FLASH 295 +#define K_SYSCALL_ESPI_WRITE_LPC_REQUEST 296 +#define K_SYSCALL_ESPI_WRITE_REQUEST 297 +#define K_SYSCALL_FLASH_COPY 298 +#define K_SYSCALL_FLASH_ERASE 299 +#define K_SYSCALL_FLASH_EX_OP 300 +#define K_SYSCALL_FLASH_FILL 301 +#define K_SYSCALL_FLASH_FLATTEN 302 +#define K_SYSCALL_FLASH_GET_PAGE_COUNT 303 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX 304 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS 305 +#define K_SYSCALL_FLASH_GET_PARAMETERS 306 +#define K_SYSCALL_FLASH_GET_SIZE 307 +#define K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE 308 +#define K_SYSCALL_FLASH_READ 309 +#define K_SYSCALL_FLASH_READ_JEDEC_ID 310 +#define K_SYSCALL_FLASH_SFDP_READ 311 +#define K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY 312 +#define K_SYSCALL_FLASH_WRITE 313 +#define K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF 314 +#define K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP 315 +#define K_SYSCALL_FUEL_GAUGE_GET_PROP 316 +#define K_SYSCALL_FUEL_GAUGE_GET_PROPS 317 +#define K_SYSCALL_FUEL_GAUGE_SET_PROP 318 +#define K_SYSCALL_FUEL_GAUGE_SET_PROPS 319 +#define K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS 320 +#define K_SYSCALL_GNSS_GET_FIX_RATE 321 +#define K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE 322 +#define K_SYSCALL_GNSS_GET_NAVIGATION_MODE 323 +#define K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS 324 +#define K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS 325 +#define K_SYSCALL_GNSS_SET_FIX_RATE 326 +#define K_SYSCALL_GNSS_SET_NAVIGATION_MODE 327 +#define K_SYSCALL_HAPTICS_START_OUTPUT 328 +#define K_SYSCALL_HAPTICS_STOP_OUTPUT 329 +#define K_SYSCALL_I2C_CONFIGURE 330 +#define K_SYSCALL_I2C_GET_CONFIG 331 +#define K_SYSCALL_I2C_RECOVER_BUS 332 +#define K_SYSCALL_I2C_TARGET_DRIVER_REGISTER 333 +#define K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER 334 +#define K_SYSCALL_I2C_TRANSFER 335 +#define K_SYSCALL_I2S_BUF_READ 336 +#define K_SYSCALL_I2S_BUF_WRITE 337 +#define K_SYSCALL_I2S_CONFIGURE 338 +#define K_SYSCALL_I2S_TRIGGER 339 +#define K_SYSCALL_I3C_DO_CCC 340 +#define K_SYSCALL_I3C_TRANSFER 341 +#define K_SYSCALL_IPM_COMPLETE 342 +#define K_SYSCALL_IPM_MAX_DATA_SIZE_GET 343 +#define K_SYSCALL_IPM_MAX_ID_VAL_GET 344 +#define K_SYSCALL_IPM_SEND 345 +#define K_SYSCALL_IPM_SET_ENABLED 346 +#define K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS 347 +#define K_SYSCALL_IVSHMEM_GET_ID 348 +#define K_SYSCALL_IVSHMEM_GET_MAX_PEERS 349 +#define K_SYSCALL_IVSHMEM_GET_MEM 350 +#define K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION 351 +#define K_SYSCALL_IVSHMEM_GET_PROTOCOL 352 +#define K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION 353 +#define K_SYSCALL_IVSHMEM_GET_STATE 354 +#define K_SYSCALL_IVSHMEM_GET_VECTORS 355 +#define K_SYSCALL_IVSHMEM_INT_PEER 356 +#define K_SYSCALL_IVSHMEM_REGISTER_HANDLER 357 +#define K_SYSCALL_IVSHMEM_SET_STATE 358 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET 359 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET 360 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET 361 +#define K_SYSCALL_K_MEM_PAGING_STATS_GET 362 +#define K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET 363 +#define K_SYSCALL_LED_BLINK 364 +#define K_SYSCALL_LED_GET_INFO 365 +#define K_SYSCALL_LED_OFF 366 +#define K_SYSCALL_LED_ON 367 +#define K_SYSCALL_LED_SET_BRIGHTNESS 368 +#define K_SYSCALL_LED_SET_CHANNEL 369 +#define K_SYSCALL_LED_SET_COLOR 370 +#define K_SYSCALL_LED_WRITE_CHANNELS 371 +#define K_SYSCALL_LLEXT_GET_FN_TABLE 372 +#define K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT 373 +#define K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT 374 +#define K_SYSCALL_MBOX_MAX_CHANNELS_GET 375 +#define K_SYSCALL_MBOX_MTU_GET 376 +#define K_SYSCALL_MBOX_SEND 377 +#define K_SYSCALL_MBOX_SET_ENABLED 378 +#define K_SYSCALL_MDIO_BUS_DISABLE 379 +#define K_SYSCALL_MDIO_BUS_ENABLE 380 +#define K_SYSCALL_MDIO_READ 381 +#define K_SYSCALL_MDIO_READ_C45 382 +#define K_SYSCALL_MDIO_WRITE 383 +#define K_SYSCALL_MDIO_WRITE_C45 384 +#define K_SYSCALL_MSPI_CONFIG 385 +#define K_SYSCALL_MSPI_DEV_CONFIG 386 +#define K_SYSCALL_MSPI_GET_CHANNEL_STATUS 387 +#define K_SYSCALL_MSPI_SCRAMBLE_CONFIG 388 +#define K_SYSCALL_MSPI_TIMING_CONFIG 389 +#define K_SYSCALL_MSPI_TRANSCEIVE 390 +#define K_SYSCALL_MSPI_XIP_CONFIG 391 +#define K_SYSCALL_NET_ADDR_NTOP 392 +#define K_SYSCALL_NET_ADDR_PTON 393 +#define K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX 394 +#define K_SYSCALL_NET_IF_GET_BY_INDEX 395 +#define K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX 396 +#define K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX 397 +#define K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX 398 +#define K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX 399 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX 400 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX 401 +#define K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX 402 +#define K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX 403 +#define K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX 404 +#define K_SYSCALL_NET_SOCKET_SERVICE_REGISTER 405 +#define K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE 406 +#define K_SYSCALL_OPAMP_SET_GAIN 407 +#define K_SYSCALL_PECI_CONFIG 408 +#define K_SYSCALL_PECI_DISABLE 409 +#define K_SYSCALL_PECI_ENABLE 410 +#define K_SYSCALL_PECI_TRANSFER 411 +#define K_SYSCALL_PS2_CONFIG 412 +#define K_SYSCALL_PS2_DISABLE_CALLBACK 413 +#define K_SYSCALL_PS2_ENABLE_CALLBACK 414 +#define K_SYSCALL_PS2_READ 415 +#define K_SYSCALL_PS2_WRITE 416 +#define K_SYSCALL_PSI5_REGISTER_CALLBACK 417 +#define K_SYSCALL_PSI5_SEND 418 +#define K_SYSCALL_PSI5_START_SYNC 419 +#define K_SYSCALL_PSI5_STOP_SYNC 420 +#define K_SYSCALL_PTP_CLOCK_GET 421 +#define K_SYSCALL_PWM_CAPTURE_CYCLES 422 +#define K_SYSCALL_PWM_DISABLE_CAPTURE 423 +#define K_SYSCALL_PWM_ENABLE_CAPTURE 424 +#define K_SYSCALL_PWM_GET_CYCLES_PER_SEC 425 +#define K_SYSCALL_PWM_SET_CYCLES 426 +#define K_SYSCALL_RENESAS_ELC_DISABLE 427 +#define K_SYSCALL_RENESAS_ELC_ENABLE 428 +#define K_SYSCALL_RENESAS_ELC_LINK_BREAK 429 +#define K_SYSCALL_RENESAS_ELC_LINK_SET 430 +#define K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE 431 +#define K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE 432 +#define K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE 433 +#define K_SYSCALL_RETAINED_MEM_CLEAR 434 +#define K_SYSCALL_RETAINED_MEM_READ 435 +#define K_SYSCALL_RETAINED_MEM_SIZE 436 +#define K_SYSCALL_RETAINED_MEM_WRITE 437 +#define K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS 438 +#define K_SYSCALL_RTC_ALARM_GET_TIME 439 +#define K_SYSCALL_RTC_ALARM_IS_PENDING 440 +#define K_SYSCALL_RTC_ALARM_SET_TIME 441 +#define K_SYSCALL_RTC_GET_CALIBRATION 442 +#define K_SYSCALL_RTC_GET_TIME 443 +#define K_SYSCALL_RTC_SET_CALIBRATION 444 +#define K_SYSCALL_RTC_SET_TIME 445 +#define K_SYSCALL_RTIO_CQE_COPY_OUT 446 +#define K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER 447 +#define K_SYSCALL_RTIO_POOL_ACQUIRE 448 +#define K_SYSCALL_RTIO_POOL_RELEASE 449 +#define K_SYSCALL_RTIO_RELEASE_BUFFER 450 +#define K_SYSCALL_RTIO_SQE_CANCEL 451 +#define K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES 452 +#define K_SYSCALL_RTIO_SQE_SIGNAL 453 +#define K_SYSCALL_RTIO_SUBMIT 454 +#define K_SYSCALL_SDHC_CARD_BUSY 455 +#define K_SYSCALL_SDHC_CARD_PRESENT 456 +#define K_SYSCALL_SDHC_DISABLE_INTERRUPT 457 +#define K_SYSCALL_SDHC_ENABLE_INTERRUPT 458 +#define K_SYSCALL_SDHC_EXECUTE_TUNING 459 +#define K_SYSCALL_SDHC_GET_HOST_PROPS 460 +#define K_SYSCALL_SDHC_HW_RESET 461 +#define K_SYSCALL_SDHC_REQUEST 462 +#define K_SYSCALL_SDHC_SET_IO 463 +#define K_SYSCALL_SENSOR_ATTR_GET 464 +#define K_SYSCALL_SENSOR_ATTR_SET 465 +#define K_SYSCALL_SENSOR_CHANNEL_GET 466 +#define K_SYSCALL_SENSOR_GET_DECODER 467 +#define K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV 468 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH 469 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN 470 +#define K_SYSCALL_SENT_REGISTER_CALLBACK 471 +#define K_SYSCALL_SENT_START_LISTENING 472 +#define K_SYSCALL_SENT_STOP_LISTENING 473 +#define K_SYSCALL_SIP_SUPERVISORY_CALL 474 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ 475 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES 476 +#define K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID 477 +#define K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY 478 +#define K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID 479 +#define K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE 480 +#define K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX 481 +#define K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID 482 +#define K_SYSCALL_SMBUS_BLOCK_PCALL 483 +#define K_SYSCALL_SMBUS_BLOCK_READ 484 +#define K_SYSCALL_SMBUS_BLOCK_WRITE 485 +#define K_SYSCALL_SMBUS_BYTE_DATA_READ 486 +#define K_SYSCALL_SMBUS_BYTE_DATA_WRITE 487 +#define K_SYSCALL_SMBUS_BYTE_READ 488 +#define K_SYSCALL_SMBUS_BYTE_WRITE 489 +#define K_SYSCALL_SMBUS_CONFIGURE 490 +#define K_SYSCALL_SMBUS_GET_CONFIG 491 +#define K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB 492 +#define K_SYSCALL_SMBUS_PCALL 493 +#define K_SYSCALL_SMBUS_QUICK 494 +#define K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB 495 +#define K_SYSCALL_SMBUS_WORD_DATA_READ 496 +#define K_SYSCALL_SMBUS_WORD_DATA_WRITE 497 +#define K_SYSCALL_SPI_RELEASE 498 +#define K_SYSCALL_SPI_TRANSCEIVE 499 +#define K_SYSCALL_STEPPER_DISABLE 500 +#define K_SYSCALL_STEPPER_ENABLE 501 +#define K_SYSCALL_STEPPER_GET_ACTUAL_POSITION 502 +#define K_SYSCALL_STEPPER_GET_MICRO_STEP_RES 503 +#define K_SYSCALL_STEPPER_IS_MOVING 504 +#define K_SYSCALL_STEPPER_MOVE_BY 505 +#define K_SYSCALL_STEPPER_MOVE_TO 506 +#define K_SYSCALL_STEPPER_RUN 507 +#define K_SYSCALL_STEPPER_SET_EVENT_CALLBACK 508 +#define K_SYSCALL_STEPPER_SET_MICROSTEP_INTERVAL 509 +#define K_SYSCALL_STEPPER_SET_MICRO_STEP_RES 510 +#define K_SYSCALL_STEPPER_SET_REFERENCE_POSITION 511 +#define K_SYSCALL_STEPPER_STOP 512 +#define K_SYSCALL_SYSCON_GET_BASE 513 +#define K_SYSCALL_SYSCON_GET_SIZE 514 +#define K_SYSCALL_SYSCON_READ_REG 515 +#define K_SYSCALL_SYSCON_WRITE_REG 516 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE 517 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE 518 +#define K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE 519 +#define K_SYSCALL_SYS_CSRAND_GET 520 +#define K_SYSCALL_SYS_RAND_GET 521 +#define K_SYSCALL_TEE_CANCEL 522 +#define K_SYSCALL_TEE_CLOSE_SESSION 523 +#define K_SYSCALL_TEE_GET_VERSION 524 +#define K_SYSCALL_TEE_INVOKE_FUNC 525 +#define K_SYSCALL_TEE_OPEN_SESSION 526 +#define K_SYSCALL_TEE_SHM_ALLOC 527 +#define K_SYSCALL_TEE_SHM_FREE 528 +#define K_SYSCALL_TEE_SHM_REGISTER 529 +#define K_SYSCALL_TEE_SHM_UNREGISTER 530 +#define K_SYSCALL_TEE_SUPPL_RECV 531 +#define K_SYSCALL_TEE_SUPPL_SEND 532 +#define K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP 533 +#define K_SYSCALL_TGPIO_PIN_DISABLE 534 +#define K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT 535 +#define K_SYSCALL_TGPIO_PIN_READ_TS_EC 536 +#define K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND 537 +#define K_SYSCALL_TGPIO_PORT_GET_TIME 538 +#define K_SYSCALL_UPDATEHUB_AUTOHANDLER 539 +#define K_SYSCALL_UPDATEHUB_CONFIRM 540 +#define K_SYSCALL_UPDATEHUB_PROBE 541 +#define K_SYSCALL_UPDATEHUB_REBOOT 542 +#define K_SYSCALL_UPDATEHUB_REPORT_ERROR 543 +#define K_SYSCALL_UPDATEHUB_UPDATE 544 +#define K_SYSCALL_USER_FAULT 545 +#define K_SYSCALL_W1_CHANGE_BUS_LOCK 546 +#define K_SYSCALL_W1_CONFIGURE 547 +#define K_SYSCALL_W1_GET_SLAVE_COUNT 548 +#define K_SYSCALL_W1_READ_BIT 549 +#define K_SYSCALL_W1_READ_BLOCK 550 +#define K_SYSCALL_W1_READ_BYTE 551 +#define K_SYSCALL_W1_RESET_BUS 552 +#define K_SYSCALL_W1_SEARCH_BUS 553 +#define K_SYSCALL_W1_WRITE_BIT 554 +#define K_SYSCALL_W1_WRITE_BLOCK 555 +#define K_SYSCALL_W1_WRITE_BYTE 556 +#define K_SYSCALL_WDT_DISABLE 557 +#define K_SYSCALL_WDT_FEED 558 +#define K_SYSCALL_WDT_SETUP 559 +#define K_SYSCALL_XTENSA_USER_FAULT 560 +#define K_SYSCALL_ZSOCK_ACCEPT 561 +#define K_SYSCALL_ZSOCK_BIND 562 +#define K_SYSCALL_ZSOCK_CLOSE 563 +#define K_SYSCALL_ZSOCK_CONNECT 564 +#define K_SYSCALL_ZSOCK_FCNTL_IMPL 565 +#define K_SYSCALL_ZSOCK_GETHOSTNAME 566 +#define K_SYSCALL_ZSOCK_GETPEERNAME 567 +#define K_SYSCALL_ZSOCK_GETSOCKNAME 568 +#define K_SYSCALL_ZSOCK_GETSOCKOPT 569 +#define K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT 570 +#define K_SYSCALL_ZSOCK_INET_PTON 571 +#define K_SYSCALL_ZSOCK_IOCTL_IMPL 572 +#define K_SYSCALL_ZSOCK_LISTEN 573 +#define K_SYSCALL_ZSOCK_RECVFROM 574 +#define K_SYSCALL_ZSOCK_RECVMSG 575 +#define K_SYSCALL_ZSOCK_SENDMSG 576 +#define K_SYSCALL_ZSOCK_SENDTO 577 +#define K_SYSCALL_ZSOCK_SETSOCKOPT 578 +#define K_SYSCALL_ZSOCK_SHUTDOWN 579 +#define K_SYSCALL_ZSOCK_SOCKET 580 +#define K_SYSCALL_ZSOCK_SOCKETPAIR 581 +#define K_SYSCALL_ZVFS_POLL 582 +#define K_SYSCALL_ZVFS_SELECT 583 +#define K_SYSCALL_Z_ERRNO 584 +#define K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL 585 + + +#ifndef _ASMLANGUAGE + +#include +#include + +#endif /* _ASMLANGUAGE */ + +#endif /* ZEPHYR_SYSCALL_LIST_H */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h new file mode 100644 index 0000000..fb5c32f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h @@ -0,0 +1,431 @@ +#define CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE 1024 +#define CONFIG_MAIN_STACK_SIZE 4096 +#define CONFIG_SERIAL 1 +#define CONFIG_NUM_IRQS 31 +#define CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC 64000000 +#define CONFIG_FLASH_SIZE 512 +#define CONFIG_FLASH_BASE_ADDRESS 0x8000000 +#define CONFIG_MP_MAX_NUM_CPUS 1 +#define CONFIG_CLOCK_CONTROL 1 +#define CONFIG_IDLE_STACK_SIZE 256 +#define CONFIG_ISR_STACK_SIZE 2048 +#define CONFIG_SYS_CLOCK_TICKS_PER_SEC 10000 +#define CONFIG_BUILD_OUTPUT_BIN 1 +#define CONFIG_ROM_START_OFFSET 0x0 +#define CONFIG_KERNEL_ENTRY "__start" +#define CONFIG_XIP 1 +#define CONFIG_HAS_FLASH_LOAD_OFFSET 1 +#define CONFIG_CPU_HAS_ARM_MPU 1 +#define CONFIG_TICKLESS_KERNEL 1 +#define CONFIG_CORTEX_M_SYSTICK 1 +#define CONFIG_CLOCK_CONTROL_INIT_PRIORITY 1 +#define CONFIG_STM32_BACKUP_PROTECTION 1 +#define CONFIG_NUM_METAIRQ_PRIORITIES 0 +#define CONFIG_NUM_PREEMPT_PRIORITIES 15 +#define CONFIG_BUILD_OUTPUT_HEX 1 +#define CONFIG_GEN_IRQ_VECTOR_TABLE 1 +#define CONFIG_GEN_ISR_TABLES 1 +#define CONFIG_TIMESLICE_SIZE 20 +#define CONFIG_FLASH_LOAD_OFFSET 0x0 +#define CONFIG_SYS_CLOCK_EXISTS 1 +#define CONFIG_GPIO 1 +#define CONFIG_LOG 1 +#define CONFIG_DCACHE_LINE_SIZE 32 +#define CONFIG_RESET 1 +#define CONFIG_ARCH_SW_ISR_TABLE_ALIGN 4 +#define CONFIG_LOG_DOMAIN_NAME "" +#define CONFIG_LOG_PROCESS_THREAD_STACK_SIZE 768 +#define CONFIG_UART_USE_RUNTIME_CONFIGURE 1 +#define CONFIG_SOC_EARLY_INIT_HOOK 1 +#define CONFIG_CONSOLE 1 +#define CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE -1 +#define CONFIG_ATOMIC_OPERATIONS_C 1 +#define CONFIG_GEN_SW_ISR_TABLE 1 +#define CONFIG_GEN_IRQ_START_VECTOR 0 +#define CONFIG_SRAM_OFFSET 0x0 +#define CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN 4 +#define CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED 1 +#define CONFIG_KERNEL_MEM_POOL 1 +#define CONFIG_MULTITHREADING 1 +#define CONFIG_LINKER_USE_RELAX 1 +#define CONFIG_ICACHE_LINE_SIZE 32 +#define CONFIG_DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED 1 +#define CONFIG_DT_HAS_ARM_CORTEX_M0__ENABLED 1 +#define CONFIG_DT_HAS_ARM_V6M_NVIC_ENABLED 1 +#define CONFIG_DT_HAS_FIXED_CLOCK_ENABLED 1 +#define CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED 1 +#define CONFIG_DT_HAS_GPIO_KEYS_ENABLED 1 +#define CONFIG_DT_HAS_GPIO_LEDS_ENABLED 1 +#define CONFIG_DT_HAS_MMIO_SRAM_ENABLED 1 +#define CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_EXTI_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_FDCAN_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_GPIO_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_LPTIM_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_NV_FLASH_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_PINCTRL_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_RCC_RCTL_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_RTC_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_TEMP_CAL_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_UART_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_USART_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_USB_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_VBAT_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_VREF_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32_WATCHDOG_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32F0_RCC_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32G0_EXTI_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED 1 +#define CONFIG_DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED 1 +#define CONFIG_DT_HAS_USB_NOP_XCEIV_ENABLED 1 +#define CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED 1 +#define CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED 1 +#define CONFIG_ZEPHYR_ACPICA_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_MODULE 1 +#define CONFIG_HAS_CMSIS_CORE 1 +#define CONFIG_ZEPHYR_CMSIS_DSP_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_NN_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_6_MODULE 1 +#define CONFIG_HAS_CMSIS_CORE_M 1 +#define CONFIG_ZEPHYR_FATFS_MODULE 1 +#define CONFIG_ZEPHYR_ADI_MODULE 1 +#define CONFIG_ZEPHYR_HAL_AFBR_MODULE 1 +#define CONFIG_ZEPHYR_HAL_AMBIQ_MODULE 1 +#define CONFIG_ZEPHYR_ATMEL_MODULE 1 +#define CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE 1 +#define CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE 1 +#define CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE 1 +#define CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE 1 +#define CONFIG_ZEPHYR_HAL_INFINEON_MODULE 1 +#define CONFIG_ZEPHYR_HAL_INTEL_MODULE 1 +#define CONFIG_ZEPHYR_MICROCHIP_MODULE 1 +#define CONFIG_ZEPHYR_HAL_NORDIC_MODULE 1 +#define CONFIG_ZEPHYR_NUVOTON_MODULE 1 +#define CONFIG_ZEPHYR_HAL_NXP_MODULE 1 +#define CONFIG_ZEPHYR_OPENISA_MODULE 1 +#define CONFIG_ZEPHYR_QUICKLOGIC_MODULE 1 +#define CONFIG_ZEPHYR_HAL_RENESAS_MODULE 1 +#define CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE 1 +#define CONFIG_ZEPHYR_HAL_SIFLI_MODULE 1 +#define CONFIG_ZEPHYR_HAL_SILABS_MODULE 1 +#define CONFIG_ZEPHYR_HAL_ST_MODULE 1 +#define CONFIG_ZEPHYR_HAL_STM32_MODULE 1 +#define CONFIG_ZEPHYR_HAL_TDK_MODULE 1 +#define CONFIG_ZEPHYR_HAL_TELINK_MODULE 1 +#define CONFIG_ZEPHYR_TI_MODULE 1 +#define CONFIG_ZEPHYR_HAL_WCH_MODULE 1 +#define CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE 1 +#define CONFIG_ZEPHYR_XTENSA_MODULE 1 +#define CONFIG_ZEPHYR_HOSTAP_MODULE 1 +#define CONFIG_ZEPHYR_LIBLC3_MODULE 1 +#define CONFIG_ZEPHYR_LIBMCTP_MODULE 1 +#define CONFIG_ZEPHYR_LIBMETAL_MODULE 1 +#define CONFIG_ZEPHYR_LIBSBC_MODULE 1 +#define CONFIG_ZEPHYR_LITTLEFS_MODULE 1 +#define CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE 1 +#define CONFIG_ZEPHYR_LORAMAC_NODE_MODULE 1 +#define CONFIG_ZEPHYR_LVGL_MODULE 1 +#define CONFIG_ZEPHYR_MBEDTLS_MODULE 1 +#define CONFIG_ZEPHYR_MCUBOOT_MODULE 1 +#define CONFIG_ZEPHYR_MIPI_SYS_T_MODULE 1 +#define CONFIG_ZEPHYR_NANOPB_MODULE 1 +#define CONFIG_ZEPHYR_NRF_WIFI_MODULE 1 +#define CONFIG_ZEPHYR_OPEN_AMP_MODULE 1 +#define CONFIG_ZEPHYR_OPENTHREAD_MODULE 1 +#define CONFIG_ZEPHYR_PERCEPIO_MODULE 1 +#define CONFIG_ZEPHYR_PICOLIBC_MODULE 1 +#define CONFIG_ZEPHYR_SEGGER_MODULE 1 +#define CONFIG_HAS_SEGGER_RTT 1 +#define CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE 1 +#define CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE 1 +#define CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE 1 +#define CONFIG_ZEPHYR_ZCBOR_MODULE 1 +#define CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE 1 +#define CONFIG_HAS_STM32CUBE 1 +#define CONFIG_USE_STM32_HAL_PCD 1 +#define CONFIG_USE_STM32_HAL_PCD_EX 1 +#define CONFIG_USE_STM32_LL_USB 1 +#define CONFIG_USE_STM32_LL_UTILS 1 +#define CONFIG_BOARD "ews" +#define CONFIG_BOARD_REVISION "" +#define CONFIG_BOARD_TARGET "ews/stm32g0b1xx" +#define CONFIG_BOARD_EWS 1 +#define CONFIG_BOARD_EWS_STM32G0B1XX 1 +#define CONFIG_BOARD_QUALIFIERS "stm32g0b1xx" +#define CONFIG_SOC "stm32g0b1xx" +#define CONFIG_SOC_SERIES "stm32g0x" +#define CONFIG_SOC_FAMILY "stm32" +#define CONFIG_SOC_FAMILY_STM32 1 +#define CONFIG_SOC_SERIES_STM32G0X 1 +#define CONFIG_SOC_STM32G0B1XX 1 +#define CONFIG_HWINFO 1 +#define CONFIG_SWJ_ANALOG_PRIORITY 49 +#define CONFIG_HAS_STM32_FLASH_PREFETCH 1 +#define CONFIG_GPIO_INIT_PRIORITY 40 +#define CONFIG_SOC_LOG_LEVEL_DEFAULT 1 +#define CONFIG_SOC_LOG_LEVEL 3 +#define CONFIG_ARCH "arm" +#define CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT 1 +#define CONFIG_CPU_CORTEX 1 +#define CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE 4 +#define CONFIG_CPU_CORTEX_M 1 +#define CONFIG_ISA_THUMB2 1 +#define CONFIG_ASSEMBLER_ISA_THUMB2 1 +#define CONFIG_COMPILER_ISA_THUMB2 1 +#define CONFIG_STACK_ALIGN_DOUBLE_WORD 1 +#define CONFIG_FAULT_DUMP 2 +#define CONFIG_FP16 1 +#define CONFIG_FP16_IEEE 1 +#define CONFIG_CPU_CORTEX_M0PLUS 1 +#define CONFIG_CPU_CORTEX_M_HAS_SYSTICK 1 +#define CONFIG_CPU_CORTEX_M_HAS_VTOR 1 +#define CONFIG_ARMV6_M_ARMV8_M_BASELINE 1 +#define CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE 1 +#define CONFIG_ARM 1 +#define CONFIG_ARCH_IS_SET 1 +#define CONFIG_ARCH_SUPPORTS_ROM_OFFSET 1 +#define CONFIG_ARCH_LOG_LEVEL_DEFAULT 1 +#define CONFIG_ARCH_LOG_LEVEL 3 +#define CONFIG_LITTLE_ENDIAN 1 +#define CONFIG_SRAM_SIZE 144 +#define CONFIG_SRAM_BASE_ADDRESS 0x20000000 +#define CONFIG_GEN_PRIV_STACKS 1 +#define CONFIG_ARCH_DEVICE_STATE_ALIGN 4 +#define CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS 1 +#define CONFIG_EXCEPTION_DEBUG 1 +#define CONFIG_ARCH_HAS_RAMFUNC_SUPPORT 1 +#define CONFIG_ARCH_HAS_VECTOR_TABLE_RELOCATION 1 +#define CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR 1 +#define CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT 1 +#define CONFIG_ARCH_SUPPORTS_ROM_START 1 +#define CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO 1 +#define CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_ARCH_HAS_SUSPEND_TO_RAM 1 +#define CONFIG_ARCH_HAS_THREAD_ABORT 1 +#define CONFIG_ARCH_HAS_CODE_DATA_RELOCATION 1 +#define CONFIG_CPU_HAS_MPU 1 +#define CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS 1 +#define CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN 1 +#define CONFIG_KERNEL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_KERNEL_LOG_LEVEL 3 +#define CONFIG_NUM_COOP_PRIORITIES 16 +#define CONFIG_MAIN_THREAD_PRIORITY 0 +#define CONFIG_COOP_ENABLED 1 +#define CONFIG_PREEMPT_ENABLED 1 +#define CONFIG_PRIORITY_CEILING -127 +#define CONFIG_SCHED_SIMPLE 1 +#define CONFIG_WAITQ_SIMPLE 1 +#define CONFIG_LIBC_ERRNO 1 +#define CONFIG_ERRNO 1 +#define CONFIG_CURRENT_THREAD_USE_TLS 1 +#define CONFIG_BOOT_BANNER 1 +#define CONFIG_BOOT_BANNER_STRING "Booting Zephyr OS build" +#define CONFIG_BOOT_DELAY 0 +#define CONFIG_SYSTEM_WORKQUEUE_PRIORITY -1 +#define CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS 0 +#define CONFIG_BARRIER_OPERATIONS_ARCH 1 +#define CONFIG_TIMESLICING 1 +#define CONFIG_TIMESLICE_PRIORITY 0 +#define CONFIG_NUM_MBOX_ASYNC_MSGS 10 +#define CONFIG_HEAP_MEM_POOL_SIZE 8192 +#define CONFIG_SWAP_NONATOMIC 1 +#define CONFIG_TIMEOUT_64BIT 1 +#define CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS 365 +#define CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_THREAD_LOCAL_STORAGE 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU 1 +#define CONFIG_DEVICE_DEINIT_SUPPORT 1 +#define CONFIG_KERNEL_INIT_PRIORITY_OBJECTS 30 +#define CONFIG_KERNEL_INIT_PRIORITY_LIBC 35 +#define CONFIG_KERNEL_INIT_PRIORITY_DEFAULT 40 +#define CONFIG_KERNEL_INIT_PRIORITY_DEVICE 50 +#define CONFIG_APPLICATION_INIT_PRIORITY 90 +#define CONFIG_CAN 1 +#define CONFIG_CAN_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CAN_LOG_LEVEL 3 +#define CONFIG_CAN_INIT_PRIORITY 80 +#define CONFIG_CAN_DEFAULT_BITRATE 125000 +#define CONFIG_CAN_DEFAULT_BITRATE_DATA 1000000 +#define CONFIG_CAN_SAMPLE_POINT_MARGIN 50 +#define CONFIG_CAN_FD_MODE 1 +#define CONFIG_CAN_MAX_STD_ID_FILTER 28 +#define CONFIG_CAN_MAX_EXT_ID_FILTER 8 +#define CONFIG_CAN_STM32_FDCAN 1 +#define CONFIG_CAN_MCAN 1 +#define CONFIG_CAN_TRANSCEIVER_INIT_PRIORITY 45 +#define CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CLOCK_CONTROL_LOG_LEVEL 3 +#define CONFIG_CLOCK_CONTROL_STM32_CUBE 1 +#define CONFIG_CONSOLE_INPUT_MAX_LINE_LEN 128 +#define CONFIG_CONSOLE_HAS_DRIVER 1 +#define CONFIG_CONSOLE_INIT_PRIORITY 60 +#define CONFIG_UART_CONSOLE 1 +#define CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT 1 +#define CONFIG_UART_CONSOLE_LOG_LEVEL 3 +#define CONFIG_GPIO_LOG_LEVEL_DEFAULT 1 +#define CONFIG_GPIO_LOG_LEVEL 3 +#define CONFIG_GPIO_STM32 1 +#define CONFIG_HWINFO_LOG_LEVEL_DEFAULT 1 +#define CONFIG_HWINFO_LOG_LEVEL 3 +#define CONFIG_HWINFO_HAS_DRIVER 1 +#define CONFIG_HWINFO_STM32 1 +#define CONFIG_INTC_INIT_PRIORITY 40 +#define CONFIG_INTC_LOG_LEVEL_DEFAULT 1 +#define CONFIG_INTC_LOG_LEVEL 3 +#define CONFIG_EXTI_STM32 1 +#define CONFIG_GPIO_INTC_STM32 1 +#define CONFIG_PINCTRL 1 +#define CONFIG_PINCTRL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_PINCTRL_LOG_LEVEL 3 +#define CONFIG_PINCTRL_KEEP_SLEEP_STATE 1 +#define CONFIG_PINCTRL_STM32 1 +#define CONFIG_PINCTRL_STM32_REMAP_INIT_PRIORITY 2 +#define CONFIG_RESET_INIT_PRIORITY 35 +#define CONFIG_RESET_STM32 1 +#define CONFIG_SERIAL_HAS_DRIVER 1 +#define CONFIG_SERIAL_SUPPORT_INTERRUPT 1 +#define CONFIG_SERIAL_INIT_PRIORITY 50 +#define CONFIG_UART_LOG_LEVEL_DEFAULT 1 +#define CONFIG_UART_LOG_LEVEL 3 +#define CONFIG_UART_LINE_CTRL 1 +#define CONFIG_UART_STM32 1 +#define CONFIG_TIMER_HAS_64BIT_CYCLE_COUNTER 1 +#define CONFIG_SYSTEM_CLOCK_INIT_PRIORITY 0 +#define CONFIG_TICKLESS_CAPABLE 1 +#define CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT 1 +#define CONFIG_CORTEX_M_SYSTICK_INSTALL_ISR 1 +#define CONFIG_CORTEX_M_SYSTICK_64BIT_CYCLE_COUNTER 1 +#define CONFIG_CORTEX_M_SYSTICK_LPM_TIMER_NONE 1 +#define CONFIG_USB_DEVICE_DRIVER 1 +#define CONFIG_USB_DEVICE_REMOTE_WAKEUP 1 +#define CONFIG_USB_DC_STM32 1 +#define CONFIG_USB_DC_STM32_CLOCK_CHECK 1 +#define CONFIG_USB_DRIVER_LOG_LEVEL_DEFAULT 1 +#define CONFIG_USB_DRIVER_LOG_LEVEL 3 +#define CONFIG_FULL_LIBC_SUPPORTED 1 +#define CONFIG_MINIMAL_LIBC_SUPPORTED 1 +#define CONFIG_NEWLIB_LIBC_SUPPORTED 1 +#define CONFIG_PICOLIBC_SUPPORTED 1 +#define CONFIG_PICOLIBC 1 +#define CONFIG_HAS_NEWLIB_LIBC_NANO 1 +#define CONFIG_COMMON_LIBC_ABORT 1 +#define CONFIG_COMMON_LIBC_TIME 1 +#define CONFIG_COMMON_LIBC_MALLOC 1 +#define CONFIG_COMMON_LIBC_CALLOC 1 +#define CONFIG_COMMON_LIBC_REALLOCARRAY 1 +#define CONFIG_PICOLIBC_USE_TOOLCHAIN 1 +#define CONFIG_PICOLIBC_IO_LONG_LONG 1 +#define CONFIG_STDOUT_CONSOLE 1 +#define CONFIG_NEED_LIBC_MEM_PARTITION 1 +#define CONFIG_SYS_HEAP_ALLOC_LOOPS 3 +#define CONFIG_SYS_HEAP_ARRAY_SIZE 0 +#define CONFIG_SYS_HEAP_SMALL_ONLY 1 +#define CONFIG_ZVFS_OPEN_MAX 0 +#define CONFIG_MPSC_PBUF 1 +#define CONFIG_HAS_POWEROFF 1 +#define CONFIG_CBPRINTF_COMPLETE 1 +#define CONFIG_CBPRINTF_FULL_INTEGRAL 1 +#define CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL 3 +#define CONFIG_CBPRINTF_CONVERT_CHECK_PTR 1 +#define CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CPU_LOAD_LOG_LEVEL 3 +#define CONFIG_POSIX_AEP_CHOICE_ZEPHYR 1 +#define CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R 1 +#define CONFIG_POSIX_C_LANG_SUPPORT_R 1 +#define CONFIG_POSIX_C_LIB_EXT 1 +#define CONFIG_LIBGCC_RTLIB 1 +#define CONFIG_RING_BUFFER 1 +#define CONFIG_PRINTK 1 +#define CONFIG_EARLY_CONSOLE 1 +#define CONFIG_ASSERT_VERBOSE 1 +#define CONFIG_CPU_LOAD_LOG_PERIODICALLY 0 +#define CONFIG_LOG_CORE_INIT_PRIORITY 0 +#define CONFIG_LOG_MODE_DEFERRED 1 +#define CONFIG_LOG_FLUSH_SLEEP_US 10000 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_OVERRIDE_LEVEL 0 +#define CONFIG_LOG_MAX_LEVEL 4 +#define CONFIG_LOG_PRINTK 1 +#define CONFIG_LOG_MODE_OVERFLOW 1 +#define CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD 10 +#define CONFIG_LOG_PROCESS_THREAD 1 +#define CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS 0 +#define CONFIG_LOG_PROCESS_THREAD_SLEEP_MS 1000 +#define CONFIG_LOG_BUFFER_SIZE 1024 +#define CONFIG_LOG_TRACE_SHORT_TIMESTAMP 1 +#define CONFIG_LOG_FUNC_NAME_PREFIX_DBG 1 +#define CONFIG_LOG_BACKEND_SHOW_TIMESTAMP 1 +#define CONFIG_LOG_BACKEND_SHOW_LEVEL 1 +#define CONFIG_LOG_BACKEND_SHOW_COLOR 1 +#define CONFIG_LOG_TAG_MAX_LEN 0 +#define CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP 1 +#define CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP 1 +#define CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP 1 +#define CONFIG_LOG_BACKEND_UART 1 +#define CONFIG_LOG_BACKEND_UART_BUFFER_SIZE 1 +#define CONFIG_LOG_BACKEND_UART_AUTOSTART 1 +#define CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT 1 +#define CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT 0 +#define CONFIG_LOG_USE_VLA 1 +#define CONFIG_LOG_SIMPLE_MSG_OPTIMIZE 1 +#define CONFIG_LOG_FAILURE_REPORT_PERIOD 1000 +#define CONFIG_LOG_RATELIMIT 1 +#define CONFIG_LOG_RATELIMIT_INTERVAL_MS 5000 +#define CONFIG_LOG_OUTPUT 1 +#define CONFIG_HAS_PM 1 +#define CONFIG_TIMER_RANDOM_INITIAL_STATE 123456789 +#define CONFIG_COVERAGE_DUMP_PATH_EXCLUDE "" +#define CONFIG_USB_DEVICE_STACK 1 +#define CONFIG_USB_DEVICE_LOG_LEVEL_DEFAULT 1 +#define CONFIG_USB_DEVICE_LOG_LEVEL 3 +#define CONFIG_USB_DEVICE_VID 0x1d50 +#define CONFIG_USB_DEVICE_PID 0x606f +#define CONFIG_USB_DEVICE_MANUFACTURER "EWS" +#define CONFIG_USB_DEVICE_PRODUCT "EWS gs_usb CAN-FD" +#define CONFIG_USB_DEVICE_SN "0123456789ABCDEF" +#define CONFIG_USB_MAX_NUM_TRANSFERS 4 +#define CONFIG_USB_REQUEST_BUFFER_SIZE 128 +#define CONFIG_USB_MAX_ALT_SETTING 8 +#define CONFIG_USB_NUMOF_EP_WRITE_RETRIES 3 +#define CONFIG_USB_SELF_POWERED 1 +#define CONFIG_USB_MAX_POWER 50 +#define CONFIG_TOOLCHAIN_ZEPHYR_0_17 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS 1 +#define CONFIG_LINKER_ORPHAN_SECTION_WARN 1 +#define CONFIG_FLASH_LOAD_SIZE 0x0 +#define CONFIG_ROM_END_OFFSET 0x0 +#define CONFIG_LD_LINKER_SCRIPT_SUPPORTED 1 +#define CONFIG_LD_LINKER_TEMPLATE 1 +#define CONFIG_LINKER_SORT_BY_ALIGNMENT 1 +#define CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT 1 +#define CONFIG_LINKER_LAST_SECTION_ID 1 +#define CONFIG_LINKER_LAST_SECTION_ID_PATTERN 0xE015E015 +#define CONFIG_LINKER_ITERABLE_SUBALIGN 4 +#define CONFIG_LINKER_DEVNULL_SUPPORT 1 +#define CONFIG_STD_C99 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS 1 +#define CONFIG_SIZE_OPTIMIZATIONS 1 +#define CONFIG_COMPILER_TRACK_MACRO_EXPANSION 1 +#define CONFIG_COMPILER_COLOR_DIAGNOSTICS 1 +#define CONFIG_FORTIFY_SOURCE_COMPILE_TIME 1 +#define CONFIG_COMPILER_OPT "" +#define CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS 1 +#define CONFIG_RUNTIME_ERROR_CHECKS 1 +#define CONFIG_KERNEL_BIN_NAME "zephyr" +#define CONFIG_OUTPUT_STAT 1 +#define CONFIG_OUTPUT_PRINT_MEMORY_USAGE 1 +#define CONFIG_BUILD_GAP_FILL_PATTERN 0xFF +#define CONFIG_BUILD_OUTPUT_STRIP_PATHS 1 +#define CONFIG_CHECK_INIT_PRIORITIES 1 +#define CONFIG_DEPRECATED 1 +#define CONFIG_WARN_DEPRECATED 1 +#define CONFIG_ENFORCE_ZEPHYR_STDINT 1 +#define CONFIG_LEGACY_GENERATED_INCLUDE_PATH 1 diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/devicetree_generated.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/devicetree_generated.h new file mode 100644 index 0000000..bd89387 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/devicetree_generated.h @@ -0,0 +1,18238 @@ +/* + * Generated by gen_defines.py + * + * DTS input file: + * C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre + * + * Directories with bindings: + * $ZEPHYR_BASE\dts\bindings + * + * Node dependency ordering (ordinal and path): + * 0 / + * 1 /aliases + * 2 /chosen + * 3 /soc + * 4 /soc/interrupt-controller@e000e100 + * 5 /clocks + * 6 /clocks/clk-hsi + * 7 /clocks/pll + * 8 /soc/rcc@40021000 + * 9 /soc/adc@40012400 + * 10 /dietemp + * 11 /memory@20000000 + * 12 /soc/i2c@40005400 + * 13 /smbus1 + * 14 /soc/i2c@40005800 + * 15 /smbus2 + * 16 /soc/i2c@40008800 + * 17 /smbus3 + * 18 /vbat + * 19 /vref + * 20 /clocks/clk-hse + * 21 /clocks/clk-hsi48 + * 22 /clocks/clk-lse + * 23 /clocks/clk-lsi + * 24 /cpus + * 25 /cpus/power-states + * 26 /cpus/power-states/state0 + * 27 /cpus/power-states/state1 + * 28 /cpus/cpu@0 + * 29 /soc/pin-controller@50000000 + * 30 /soc/pin-controller@50000000/gpio@50000000 + * 31 /soc/pin-controller@50000000/gpio@50000400 + * 32 /gpio_keys + * 33 /gpio_keys/pfet1 + * 34 /gpio_keys/pfet2 + * 35 /leds + * 36 /leds/led_0 + * 37 /mcos + * 38 /mcos/mco1 + * 39 /mcos/mco2 + * 40 /soc/can@40006400 + * 41 /soc/pin-controller@50000000/fdcan2_rx_pb0 + * 42 /soc/pin-controller@50000000/fdcan2_tx_pb1 + * 43 /soc/can@40006800 + * 44 /soc/dac@40007400 + * 45 /soc/dma@40020000 + * 46 /soc/dma@40020400 + * 47 /soc/dmamux@40020800 + * 48 /soc/interrupt-controller@40021800 + * 49 /soc/rcc@40021000/reset-controller + * 50 /soc/serial@40004400 + * 51 /soc/serial@40004800 + * 52 /soc/serial@40004c00 + * 53 /soc/serial@40005000 + * 54 /soc/serial@40008000 + * 55 /soc/serial@40008400 + * 56 /soc/pin-controller@50000000/usart1_rx_pc5 + * 57 /soc/pin-controller@50000000/usart1_tx_pc4 + * 58 /soc/serial@40013800 + * 59 /soc/serial@40013c00 + * 60 /soc/spi@40003800 + * 61 /soc/spi@40003c00 + * 62 /soc/spi@40013000 + * 63 /soc/timer@e000e010 + * 64 /soc/timers@40007c00 + * 65 /soc/ucpd@4000a000 + * 66 /soc/ucpd@4000a400 + * 67 /usbphy + * 68 /soc/pin-controller@50000000/usb_dm_pa11 + * 69 /soc/pin-controller@50000000/usb_dp_pa12 + * 70 /soc/usb@40005c00 + * 71 /soc/watchdog@40002c00 + * 72 /soc/watchdog@40003000 + * 73 /soc/flash-controller@40022000 + * 74 /soc/flash-controller@40022000/flash@8000000 + * 75 /soc/flash-controller@40022000/flash@8000000/partitions + * 76 /soc/flash-controller@40022000/flash@8000000/partitions/partition@0 + * 77 /soc/flash-controller@40022000/flash@8000000/partitions/partition@4000 + * 78 /soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000 + * 79 /soc/pin-controller@50000000/gpio@50000c00 + * 80 /soc/pin-controller@50000000/gpio@50001400 + * 81 /soc/pin-controller@50000000/gpio@50000800 + * 82 /soc/pin-controller@50000000/gpio@50001000 + * 83 /soc/power@40007000 + * 84 /soc/power@40007000/wkup-pin@1 + * 85 /soc/power@40007000/wkup-pin@2 + * 86 /soc/power@40007000/wkup-pin@3 + * 87 /soc/power@40007000/wkup-pin@4 + * 88 /soc/power@40007000/wkup-pin@5 + * 89 /soc/power@40007000/wkup-pin@6 + * 90 /soc/rtc@40002800 + * 91 /soc/rtc@40002800/backup_regs + * 92 /soc/timers@40000000 + * 93 /soc/timers@40000000/pwm + * 94 /soc/timers@40000000/qdec + * 95 /soc/timers@40000400 + * 96 /soc/timers@40000400/counter + * 97 /soc/timers@40000400/pwm + * 98 /soc/timers@40000400/qdec + * 99 /soc/timers@40000800 + * 100 /soc/timers@40000800/pwm + * 101 /soc/timers@40000800/qdec + * 102 /soc/timers@40001000 + * 103 /soc/timers@40001000/counter + * 104 /soc/timers@40001400 + * 105 /soc/timers@40001400/counter + * 106 /soc/timers@40002000 + * 107 /soc/timers@40002000/counter + * 108 /soc/timers@40002000/pwm + * 109 /soc/timers@40012c00 + * 110 /soc/timers@40012c00/counter + * 111 /soc/timers@40012c00/pwm + * 112 /soc/timers@40012c00/qdec + * 113 /soc/timers@40014000 + * 114 /soc/timers@40014000/counter + * 115 /soc/timers@40014000/pwm + * 116 /soc/timers@40014400 + * 117 /soc/timers@40014400/counter + * 118 /soc/timers@40014400/pwm + * 119 /soc/timers@40014800 + * 120 /soc/timers@40014800/counter + * 121 /soc/timers@40014800/pwm + * + * Definitions derived from these nodes in dependency order are next, + * followed by /chosen nodes. + */ + +/* Used to remove brackets from around a single argument */ +#define DT_DEBRACKET_INTERNAL(...) __VA_ARGS__ + +/* + * Devicetree node: / + * + * Node identifier: DT_N + */ + +/* Node's full path: */ +#define DT_N_PATH "/" + +/* Node's name with unit-address: */ +#define DT_N_FULL_NAME "/" +#define DT_N_FULL_NAME_UNQUOTED / +#define DT_N_FULL_NAME_TOKEN _ +#define DT_N_FULL_NAME_UPPER_TOKEN _ + +/* Helpers for dealing with node labels: */ +#define DT_N_NODELABEL_NUM 0 +#define DT_N_FOREACH_NODELABEL(fn) +#define DT_N_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_FOREACH_ANCESTOR(fn) + +/* Helper macros for child nodes of this node. */ +#define DT_N_CHILD_NUM 16 +#define DT_N_CHILD_NUM_STATUS_OKAY 13 +#define DT_N_FOREACH_CHILD(fn) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_cpus) fn(DT_N_S_memory_20000000) fn(DT_N_S_clocks) fn(DT_N_S_mcos) fn(DT_N_S_dietemp) fn(DT_N_S_vref) fn(DT_N_S_vbat) fn(DT_N_S_smbus1) fn(DT_N_S_smbus2) fn(DT_N_S_usbphy) fn(DT_N_S_smbus3) fn(DT_N_S_leds) fn(DT_N_S_gpio_keys) +#define DT_N_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_chosen) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_memory_20000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_mcos) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_dietemp) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vref) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vbat) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_smbus1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_smbus2) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_usbphy) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_smbus3) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys) +#define DT_N_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_clocks, __VA_ARGS__) fn(DT_N_S_mcos, __VA_ARGS__) fn(DT_N_S_dietemp, __VA_ARGS__) fn(DT_N_S_vref, __VA_ARGS__) fn(DT_N_S_vbat, __VA_ARGS__) fn(DT_N_S_smbus1, __VA_ARGS__) fn(DT_N_S_smbus2, __VA_ARGS__) fn(DT_N_S_usbphy, __VA_ARGS__) fn(DT_N_S_smbus3, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_gpio_keys, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_chosen, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_memory_20000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_mcos, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_dietemp, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vref, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vbat, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_smbus1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_smbus2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_usbphy, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_smbus3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_cpus) fn(DT_N_S_memory_20000000) fn(DT_N_S_clocks) fn(DT_N_S_mcos) fn(DT_N_S_dietemp) fn(DT_N_S_vref) fn(DT_N_S_vbat) fn(DT_N_S_usbphy) fn(DT_N_S_leds) fn(DT_N_S_gpio_keys) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_chosen) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_memory_20000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_mcos) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_dietemp) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vref) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vbat) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_usbphy) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_clocks, __VA_ARGS__) fn(DT_N_S_mcos, __VA_ARGS__) fn(DT_N_S_dietemp, __VA_ARGS__) fn(DT_N_S_vref, __VA_ARGS__) fn(DT_N_S_vbat, __VA_ARGS__) fn(DT_N_S_usbphy, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_gpio_keys, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_chosen, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_memory_20000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_mcos, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_dietemp, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vref, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_vbat, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_usbphy, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_HASH il7asoJjJEMhngUeSt4tHVu8Zxx4EFG_FDeJfL3_oPE + +/* Node's dependency ordinal: */ +#define DT_N_ORD 0 +#define DT_N_ORD_STR_SORTABLE 00000 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_REQUIRES_ORDS /* nothing */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_SUPPORTS_ORDS \ + 1, /* /aliases */ \ + 2, /* /chosen */ \ + 3, /* /soc */ \ + 5, /* /clocks */ \ + 10, /* /dietemp */ \ + 11, /* /memory@20000000 */ \ + 13, /* /smbus1 */ \ + 15, /* /smbus2 */ \ + 17, /* /smbus3 */ \ + 18, /* /vbat */ \ + 19, /* /vref */ \ + 24, /* /cpus */ \ + 32, /* /gpio_keys */ \ + 35, /* /leds */ \ + 37, /* /mcos */ \ + 67, /* /usbphy */ + +/* Existence and alternate IDs: */ +#define DT_N_EXISTS 1 +#define DT_N_INST_0_st_stm32g0b1kb_ews DT_N + +/* Macros for properties that are special in the specification: */ +#define DT_N_REG_NUM 0 +#define DT_N_RANGES_NUM 0 +#define DT_N_FOREACH_RANGE(fn) +#define DT_N_IRQ_NUM 0 +#define DT_N_IRQ_LEVEL 0 +#define DT_N_COMPAT_MATCHES_st_stm32g0b1kb_ews 1 +#define DT_N_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_COMPAT_MODEL_IDX_0 "stm32g0b1kb-ews" +#define DT_N_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_P_compatible {"st,stm32g0b1kb-ews"} +#define DT_N_P_compatible_IDX_0_EXISTS 1 +#define DT_N_P_compatible_IDX_0 "st,stm32g0b1kb-ews" +#define DT_N_P_compatible_IDX_0_STRING_UNQUOTED st,stm32g0b1kb-ews +#define DT_N_P_compatible_IDX_0_STRING_TOKEN st_stm32g0b1kb_ews +#define DT_N_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32G0B1KB_EWS +#define DT_N_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N, compatible, 0) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N, compatible, 0) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N, compatible, 0, __VA_ARGS__) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N, compatible, 0, __VA_ARGS__) +#define DT_N_P_compatible_LEN 1 +#define DT_N_P_compatible_EXISTS 1 + +/* + * Devicetree node: /aliases + * + * Node identifier: DT_N_S_aliases + */ + +/* Node's full path: */ +#define DT_N_S_aliases_PATH "/aliases" + +/* Node's name with unit-address: */ +#define DT_N_S_aliases_FULL_NAME "aliases" +#define DT_N_S_aliases_FULL_NAME_UNQUOTED aliases +#define DT_N_S_aliases_FULL_NAME_TOKEN aliases +#define DT_N_S_aliases_FULL_NAME_UPPER_TOKEN ALIASES + +/* Node parent (/) identifier: */ +#define DT_N_S_aliases_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_aliases_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_aliases_NODELABEL_NUM 0 +#define DT_N_S_aliases_FOREACH_NODELABEL(fn) +#define DT_N_S_aliases_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_aliases_CHILD_NUM 0 +#define DT_N_S_aliases_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_aliases_FOREACH_CHILD(fn) +#define DT_N_S_aliases_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_aliases_HASH QavYY6yplHKhLPRKsRzaLCGlR0CWZ0JUNJakcBCfDXA + +/* Node's dependency ordinal: */ +#define DT_N_S_aliases_ORD 1 +#define DT_N_S_aliases_ORD_STR_SORTABLE 00001 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_aliases_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_aliases_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_aliases_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_aliases_REG_NUM 0 +#define DT_N_S_aliases_RANGES_NUM 0 +#define DT_N_S_aliases_FOREACH_RANGE(fn) +#define DT_N_S_aliases_IRQ_NUM 0 +#define DT_N_S_aliases_IRQ_LEVEL 0 +#define DT_N_S_aliases_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_aliases_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /chosen + * + * Node identifier: DT_N_S_chosen + */ + +/* Node's full path: */ +#define DT_N_S_chosen_PATH "/chosen" + +/* Node's name with unit-address: */ +#define DT_N_S_chosen_FULL_NAME "chosen" +#define DT_N_S_chosen_FULL_NAME_UNQUOTED chosen +#define DT_N_S_chosen_FULL_NAME_TOKEN chosen +#define DT_N_S_chosen_FULL_NAME_UPPER_TOKEN CHOSEN + +/* Node parent (/) identifier: */ +#define DT_N_S_chosen_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_chosen_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_chosen_NODELABEL_NUM 0 +#define DT_N_S_chosen_FOREACH_NODELABEL(fn) +#define DT_N_S_chosen_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_chosen_CHILD_NUM 0 +#define DT_N_S_chosen_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_chosen_FOREACH_CHILD(fn) +#define DT_N_S_chosen_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_chosen_HASH qNExeeLInzqaWpm1KroyYDk4lRIxVO2ig78mq_hOnA8 + +/* Node's dependency ordinal: */ +#define DT_N_S_chosen_ORD 2 +#define DT_N_S_chosen_ORD_STR_SORTABLE 00002 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_chosen_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_chosen_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_chosen_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_chosen_REG_NUM 0 +#define DT_N_S_chosen_RANGES_NUM 0 +#define DT_N_S_chosen_FOREACH_RANGE(fn) +#define DT_N_S_chosen_IRQ_NUM 0 +#define DT_N_S_chosen_IRQ_LEVEL 0 +#define DT_N_S_chosen_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_chosen_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /soc + * + * Node identifier: DT_N_S_soc + */ + +/* Node's full path: */ +#define DT_N_S_soc_PATH "/soc" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_FULL_NAME "soc" +#define DT_N_S_soc_FULL_NAME_UNQUOTED soc +#define DT_N_S_soc_FULL_NAME_TOKEN soc +#define DT_N_S_soc_FULL_NAME_UPPER_TOKEN SOC + +/* Node parent (/) identifier: */ +#define DT_N_S_soc_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_NODELABEL_NUM 0 +#define DT_N_S_soc_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_CHILD_NUM 45 +#define DT_N_S_soc_CHILD_NUM_STATUS_OKAY 12 +#define DT_N_S_soc_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_timer_e000e010) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc_S_rcc_40021000) fn(DT_N_S_soc_S_interrupt_controller_40021800) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc_S_rtc_40002800) fn(DT_N_S_soc_S_watchdog_40003000) fn(DT_N_S_soc_S_watchdog_40002c00) fn(DT_N_S_soc_S_serial_40013800) fn(DT_N_S_soc_S_serial_40004400) fn(DT_N_S_soc_S_timers_40007c00) fn(DT_N_S_soc_S_timers_40012c00) fn(DT_N_S_soc_S_timers_40000400) fn(DT_N_S_soc_S_timers_40002000) fn(DT_N_S_soc_S_timers_40014400) fn(DT_N_S_soc_S_timers_40014800) fn(DT_N_S_soc_S_i2c_40005400) fn(DT_N_S_soc_S_i2c_40005800) fn(DT_N_S_soc_S_spi_40013000) fn(DT_N_S_soc_S_spi_40003800) fn(DT_N_S_soc_S_adc_40012400) fn(DT_N_S_soc_S_dma_40020000) fn(DT_N_S_soc_S_dmamux_40020800) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc_S_serial_40008000) fn(DT_N_S_soc_S_timers_40000000) fn(DT_N_S_soc_S_timers_40001000) fn(DT_N_S_soc_S_timers_40001400) fn(DT_N_S_soc_S_timers_40014000) fn(DT_N_S_soc_S_dac_40007400) fn(DT_N_S_soc_S_serial_40004800) fn(DT_N_S_soc_S_serial_40004c00) fn(DT_N_S_soc_S_ucpd_4000a000) fn(DT_N_S_soc_S_ucpd_4000a400) fn(DT_N_S_soc_S_can_40006400) fn(DT_N_S_soc_S_can_40006800) fn(DT_N_S_soc_S_serial_40005000) fn(DT_N_S_soc_S_serial_40013c00) fn(DT_N_S_soc_S_serial_40008400) fn(DT_N_S_soc_S_timers_40000800) fn(DT_N_S_soc_S_i2c_40008800) fn(DT_N_S_soc_S_spi_40003c00) fn(DT_N_S_soc_S_dma_40020400) fn(DT_N_S_soc_S_usb_40005c00) +#define DT_N_S_soc_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_e000e100) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_e000e010) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rcc_40021000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_40021800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40002800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40003000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40002c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40013800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40004400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40007c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40012c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40002000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40005400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40005800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40013000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40003800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_40012400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dma_40020000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dmamux_40020800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40008000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40001400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dac_40007400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40004800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40004c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ucpd_4000a000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ucpd_4000a400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_40006400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_40006800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40005000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40013c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40008400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40008800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40003c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dma_40020400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usb_40005c00) +#define DT_N_S_soc_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40002c00, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40004400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40002000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014800, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40005400, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40005800, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40013000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40003800, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40012400, __VA_ARGS__) fn(DT_N_S_soc_S_dma_40020000, __VA_ARGS__) fn(DT_N_S_soc_S_dmamux_40020800, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40008000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40001000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40001400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_dac_40007400, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40004800, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40004c00, __VA_ARGS__) fn(DT_N_S_soc_S_ucpd_4000a000, __VA_ARGS__) fn(DT_N_S_soc_S_ucpd_4000a400, __VA_ARGS__) fn(DT_N_S_soc_S_can_40006400, __VA_ARGS__) fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40005000, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40013c00, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40008400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000800, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40008800, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40003c00, __VA_ARGS__) fn(DT_N_S_soc_S_dma_40020400, __VA_ARGS__) fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40002c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40004400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40012c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40002000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40005400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40005800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40013000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40003800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_40012400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dma_40020000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dmamux_40020800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40008000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40001400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dac_40007400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40004800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40004c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ucpd_4000a000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ucpd_4000a400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_40006400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40005000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40013c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40008400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_40008800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_40003c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dma_40020400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_timer_e000e010) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc_S_rcc_40021000) fn(DT_N_S_soc_S_interrupt_controller_40021800) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc_S_rtc_40002800) fn(DT_N_S_soc_S_watchdog_40003000) fn(DT_N_S_soc_S_serial_40013800) fn(DT_N_S_soc_S_timers_40007c00) fn(DT_N_S_soc_S_can_40006800) fn(DT_N_S_soc_S_usb_40005c00) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_e000e100) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_e000e010) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rcc_40021000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_40021800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40002800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40003000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40013800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40007c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_40006800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usb_40005c00) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_HASH DcVqqq9YzG86l3_Hk7pNncUh2rnHG8USjbVY6wBdFts + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_ORD 3 +#define DT_N_S_soc_ORD_STR_SORTABLE 00003 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_SUPPORTS_ORDS \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 9, /* /soc/adc@40012400 */ \ + 12, /* /soc/i2c@40005400 */ \ + 14, /* /soc/i2c@40005800 */ \ + 16, /* /soc/i2c@40008800 */ \ + 29, /* /soc/pin-controller@50000000 */ \ + 40, /* /soc/can@40006400 */ \ + 43, /* /soc/can@40006800 */ \ + 44, /* /soc/dac@40007400 */ \ + 45, /* /soc/dma@40020000 */ \ + 46, /* /soc/dma@40020400 */ \ + 47, /* /soc/dmamux@40020800 */ \ + 48, /* /soc/interrupt-controller@40021800 */ \ + 50, /* /soc/serial@40004400 */ \ + 51, /* /soc/serial@40004800 */ \ + 52, /* /soc/serial@40004c00 */ \ + 53, /* /soc/serial@40005000 */ \ + 54, /* /soc/serial@40008000 */ \ + 55, /* /soc/serial@40008400 */ \ + 58, /* /soc/serial@40013800 */ \ + 59, /* /soc/serial@40013c00 */ \ + 60, /* /soc/spi@40003800 */ \ + 61, /* /soc/spi@40003c00 */ \ + 62, /* /soc/spi@40013000 */ \ + 63, /* /soc/timer@e000e010 */ \ + 64, /* /soc/timers@40007c00 */ \ + 65, /* /soc/ucpd@4000a000 */ \ + 66, /* /soc/ucpd@4000a400 */ \ + 70, /* /soc/usb@40005c00 */ \ + 71, /* /soc/watchdog@40002c00 */ \ + 72, /* /soc/watchdog@40003000 */ \ + 73, /* /soc/flash-controller@40022000 */ \ + 83, /* /soc/power@40007000 */ \ + 90, /* /soc/rtc@40002800 */ \ + 92, /* /soc/timers@40000000 */ \ + 95, /* /soc/timers@40000400 */ \ + 99, /* /soc/timers@40000800 */ \ + 102, /* /soc/timers@40001000 */ \ + 104, /* /soc/timers@40001400 */ \ + 106, /* /soc/timers@40002000 */ \ + 109, /* /soc/timers@40012c00 */ \ + 113, /* /soc/timers@40014000 */ \ + 116, /* /soc/timers@40014400 */ \ + 119, /* /soc/timers@40014800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_EXISTS 1 +#define DT_N_INST_0_st_stm32g0b1 DT_N_S_soc +#define DT_N_INST_0_st_stm32g0 DT_N_S_soc +#define DT_N_INST_0_simple_bus DT_N_S_soc + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_REG_NUM 0 +#define DT_N_S_soc_RANGES_NUM 0 +#define DT_N_S_soc_FOREACH_RANGE(fn) +#define DT_N_S_soc_IRQ_NUM 0 +#define DT_N_S_soc_IRQ_LEVEL 0 +#define DT_N_S_soc_COMPAT_MATCHES_st_stm32g0b1 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_COMPAT_MODEL_IDX_0 "stm32g0b1" +#define DT_N_S_soc_COMPAT_MATCHES_st_stm32g0 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_COMPAT_MODEL_IDX_1 "stm32g0" +#define DT_N_S_soc_COMPAT_MATCHES_simple_bus 1 +#define DT_N_S_soc_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_P_ranges_EXISTS 1 +#define DT_N_S_soc_P_compatible {"st,stm32g0b1", "st,stm32g0", "simple-bus"} +#define DT_N_S_soc_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_0 "st,stm32g0b1" +#define DT_N_S_soc_P_compatible_IDX_0_STRING_UNQUOTED st,stm32g0b1 +#define DT_N_S_soc_P_compatible_IDX_0_STRING_TOKEN st_stm32g0b1 +#define DT_N_S_soc_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32G0B1 +#define DT_N_S_soc_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_1 "st,stm32g0" +#define DT_N_S_soc_P_compatible_IDX_1_STRING_UNQUOTED st,stm32g0 +#define DT_N_S_soc_P_compatible_IDX_1_STRING_TOKEN st_stm32g0 +#define DT_N_S_soc_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32G0 +#define DT_N_S_soc_P_compatible_IDX_2_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_2 "simple-bus" +#define DT_N_S_soc_P_compatible_IDX_2_STRING_UNQUOTED simple-bus +#define DT_N_S_soc_P_compatible_IDX_2_STRING_TOKEN simple_bus +#define DT_N_S_soc_P_compatible_IDX_2_STRING_UPPER_TOKEN SIMPLE_BUS +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc, compatible, 0) \ + fn(DT_N_S_soc, compatible, 1) \ + fn(DT_N_S_soc, compatible, 2) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 2) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc, compatible, 1, __VA_ARGS__) \ + fn(DT_N_S_soc, compatible, 2, __VA_ARGS__) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc, compatible, 2, __VA_ARGS__) +#define DT_N_S_soc_P_compatible_LEN 3 +#define DT_N_S_soc_P_compatible_EXISTS 1 + +/* + * Devicetree node: /soc/interrupt-controller@e000e100 + * + * Node identifier: DT_N_S_soc_S_interrupt_controller_e000e100 + * + * Binding (compatible = arm,v6m-nvic): + * $ZEPHYR_BASE\dts\bindings\interrupt-controller\arm,v6m-nvic.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_PATH "/soc/interrupt-controller@e000e100" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME "interrupt-controller@e000e100" +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME_UNQUOTED interrupt-controller@e000e100 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME_TOKEN interrupt_controller_e000e100 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FULL_NAME_UPPER_TOKEN INTERRUPT_CONTROLLER_E000E100 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_NODELABEL_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_NODELABEL(fn) fn(nvic) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_NODELABEL_VARGS(fn, ...) fn(nvic, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_CHILD_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_HASH MNKByYDCdVxyLwiy4A_bv2jZfVhfDT01mZ2_1uEhUYQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_ORD 4 +#define DT_N_S_soc_S_interrupt_controller_e000e100_ORD_STR_SORTABLE 00004 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_REQUIRES_ORDS \ + 3, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_SUPPORTS_ORDS \ + 9, /* /soc/adc@40012400 */ \ + 12, /* /soc/i2c@40005400 */ \ + 14, /* /soc/i2c@40005800 */ \ + 16, /* /soc/i2c@40008800 */ \ + 40, /* /soc/can@40006400 */ \ + 43, /* /soc/can@40006800 */ \ + 45, /* /soc/dma@40020000 */ \ + 46, /* /soc/dma@40020400 */ \ + 47, /* /soc/dmamux@40020800 */ \ + 48, /* /soc/interrupt-controller@40021800 */ \ + 50, /* /soc/serial@40004400 */ \ + 51, /* /soc/serial@40004800 */ \ + 52, /* /soc/serial@40004c00 */ \ + 53, /* /soc/serial@40005000 */ \ + 54, /* /soc/serial@40008000 */ \ + 55, /* /soc/serial@40008400 */ \ + 58, /* /soc/serial@40013800 */ \ + 59, /* /soc/serial@40013c00 */ \ + 60, /* /soc/spi@40003800 */ \ + 61, /* /soc/spi@40003c00 */ \ + 62, /* /soc/spi@40013000 */ \ + 64, /* /soc/timers@40007c00 */ \ + 65, /* /soc/ucpd@4000a000 */ \ + 66, /* /soc/ucpd@4000a400 */ \ + 70, /* /soc/usb@40005c00 */ \ + 71, /* /soc/watchdog@40002c00 */ \ + 73, /* /soc/flash-controller@40022000 */ \ + 90, /* /soc/rtc@40002800 */ \ + 92, /* /soc/timers@40000000 */ \ + 95, /* /soc/timers@40000400 */ \ + 99, /* /soc/timers@40000800 */ \ + 102, /* /soc/timers@40001000 */ \ + 104, /* /soc/timers@40001400 */ \ + 106, /* /soc/timers@40002000 */ \ + 109, /* /soc/timers@40012c00 */ \ + 113, /* /soc/timers@40014000 */ \ + 116, /* /soc/timers@40014400 */ \ + 119, /* /soc/timers@40014800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_EXISTS 1 +#define DT_N_INST_0_arm_v6m_nvic DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_NODELABEL_nvic DT_N_S_soc_S_interrupt_controller_e000e100 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_IDX_0_VAL_ADDRESS 3758153984 /* 0xe000e100 */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_REG_IDX_0_VAL_SIZE 3072 /* 0xc00 */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_RANGES_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_interrupt_controller_e000e100_IRQ_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_IRQ_LEVEL 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_MATCHES_arm_v6m_nvic 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_COMPAT_MODEL_IDX_0 "v6m-nvic" +#define DT_N_S_soc_S_interrupt_controller_e000e100_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg {3758153984 /* 0xe000e100 */, 3072 /* 0xc00 */} +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_0 3758153984 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_IDX_1 3072 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_reg_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_arm_num_irq_priority_bits 2 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_arm_num_irq_priority_bits_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_interrupt_controller 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_interrupt_controller_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible {"arm,v6m-nvic"} +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0 "arm,v6m-nvic" +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_STRING_UNQUOTED arm,v6m-nvic +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_STRING_TOKEN arm_v6m_nvic +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_V6M_NVIC +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_LEN 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_wakeup_source 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_interrupt_controller_e000e100_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /clocks + * + * Node identifier: DT_N_S_clocks + */ + +/* Node's full path: */ +#define DT_N_S_clocks_PATH "/clocks" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_FULL_NAME "clocks" +#define DT_N_S_clocks_FULL_NAME_UNQUOTED clocks +#define DT_N_S_clocks_FULL_NAME_TOKEN clocks +#define DT_N_S_clocks_FULL_NAME_UPPER_TOKEN CLOCKS + +/* Node parent (/) identifier: */ +#define DT_N_S_clocks_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_NODELABEL_NUM 0 +#define DT_N_S_clocks_FOREACH_NODELABEL(fn) +#define DT_N_S_clocks_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_clocks_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_CHILD_NUM 6 +#define DT_N_S_clocks_CHILD_NUM_STATUS_OKAY 4 +#define DT_N_S_clocks_FOREACH_CHILD(fn) fn(DT_N_S_clocks_S_clk_hse) fn(DT_N_S_clocks_S_clk_hsi) fn(DT_N_S_clocks_S_clk_lse) fn(DT_N_S_clocks_S_clk_lsi) fn(DT_N_S_clocks_S_pll) fn(DT_N_S_clocks_S_clk_hsi48) +#define DT_N_S_clocks_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hse) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_hsi) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_lse) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_lsi) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_pll) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_hsi48) +#define DT_N_S_clocks_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hse, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_lse, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) fn(DT_N_S_clocks_S_pll, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) +#define DT_N_S_clocks_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hse, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_lse, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_pll, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) +#define DT_N_S_clocks_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_clocks_S_clk_hsi) fn(DT_N_S_clocks_S_clk_lsi) fn(DT_N_S_clocks_S_pll) fn(DT_N_S_clocks_S_clk_hsi48) +#define DT_N_S_clocks_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hsi) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_lsi) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_pll) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_hsi48) +#define DT_N_S_clocks_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) fn(DT_N_S_clocks_S_pll, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) +#define DT_N_S_clocks_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_pll, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_clocks_HASH 3P3fmk_q5wPvaymGA6NeomHHBb_cCfQX2PaKw_k1t_w + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_ORD 5 +#define DT_N_S_clocks_ORD_STR_SORTABLE 00005 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_SUPPORTS_ORDS \ + 6, /* /clocks/clk-hsi */ \ + 7, /* /clocks/pll */ \ + 20, /* /clocks/clk-hse */ \ + 21, /* /clocks/clk-hsi48 */ \ + 22, /* /clocks/clk-lse */ \ + 23, /* /clocks/clk-lsi */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_REG_NUM 0 +#define DT_N_S_clocks_RANGES_NUM 0 +#define DT_N_S_clocks_FOREACH_RANGE(fn) +#define DT_N_S_clocks_IRQ_NUM 0 +#define DT_N_S_clocks_IRQ_LEVEL 0 +#define DT_N_S_clocks_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /clocks/clk-hsi + * + * Node identifier: DT_N_S_clocks_S_clk_hsi + * + * Binding (compatible = st,stm32g0-hsi-clock): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32g0-hsi-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clocks_S_clk_hsi_PATH "/clocks/clk-hsi" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_S_clk_hsi_FULL_NAME "clk-hsi" +#define DT_N_S_clocks_S_clk_hsi_FULL_NAME_UNQUOTED clk-hsi +#define DT_N_S_clocks_S_clk_hsi_FULL_NAME_TOKEN clk_hsi +#define DT_N_S_clocks_S_clk_hsi_FULL_NAME_UPPER_TOKEN CLK_HSI + +/* Node parent (/clocks) identifier: */ +#define DT_N_S_clocks_S_clk_hsi_PARENT DT_N_S_clocks + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_S_clk_hsi_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_S_clk_hsi_NODELABEL_NUM 1 +#define DT_N_S_clocks_S_clk_hsi_FOREACH_NODELABEL(fn) fn(clk_hsi) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_NODELABEL_VARGS(fn, ...) fn(clk_hsi, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_ANCESTOR(fn) fn(DT_N_S_clocks) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_S_clk_hsi_CHILD_NUM 0 +#define DT_N_S_clocks_S_clk_hsi_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD(fn) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_hsi_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clocks_S_clk_hsi_HASH kE6dGnI__HuixEc_o2mPIojHDSoRqqYmExJJycW6WDM + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_S_clk_hsi_ORD 6 +#define DT_N_S_clocks_S_clk_hsi_ORD_STR_SORTABLE 00006 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_S_clk_hsi_REQUIRES_ORDS \ + 5, /* /clocks */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_S_clk_hsi_SUPPORTS_ORDS \ + 7, /* /clocks/pll */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_S_clk_hsi_EXISTS 1 +#define DT_N_INST_0_st_stm32g0_hsi_clock DT_N_S_clocks_S_clk_hsi +#define DT_N_NODELABEL_clk_hsi DT_N_S_clocks_S_clk_hsi + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_S_clk_hsi_REG_NUM 0 +#define DT_N_S_clocks_S_clk_hsi_RANGES_NUM 0 +#define DT_N_S_clocks_S_clk_hsi_FOREACH_RANGE(fn) +#define DT_N_S_clocks_S_clk_hsi_IRQ_NUM 0 +#define DT_N_S_clocks_S_clk_hsi_IRQ_LEVEL 0 +#define DT_N_S_clocks_S_clk_hsi_COMPAT_MATCHES_st_stm32g0_hsi_clock 1 +#define DT_N_S_clocks_S_clk_hsi_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_clocks_S_clk_hsi_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_COMPAT_MODEL_IDX_0 "stm32g0-hsi-clock" +#define DT_N_S_clocks_S_clk_hsi_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_S_clk_hsi_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clocks_S_clk_hsi_P_hsi_div 1 +#define DT_N_S_clocks_S_clk_hsi_P_hsi_div_IDX_0_ENUM_IDX 0 +#define DT_N_S_clocks_S_clk_hsi_P_hsi_div_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_hsi_div_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_hsi_div_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_hsi_div_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_clock_frequency 16000000 +#define DT_N_S_clocks_S_clk_hsi_P_clock_frequency_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_status "okay" +#define DT_N_S_clocks_S_clk_hsi_P_status_STRING_UNQUOTED okay +#define DT_N_S_clocks_S_clk_hsi_P_status_STRING_TOKEN okay +#define DT_N_S_clocks_S_clk_hsi_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_clocks_S_clk_hsi_P_status_IDX_0 "okay" +#define DT_N_S_clocks_S_clk_hsi_P_status_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_clocks_S_clk_hsi_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_hsi, status, 0) +#define DT_N_S_clocks_S_clk_hsi_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hsi, status, 0) +#define DT_N_S_clocks_S_clk_hsi_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hsi, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hsi, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi_P_status_LEN 1 +#define DT_N_S_clocks_S_clk_hsi_P_status_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_compatible {"st,stm32g0-hsi-clock"} +#define DT_N_S_clocks_S_clk_hsi_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_compatible_IDX_0 "st,stm32g0-hsi-clock" +#define DT_N_S_clocks_S_clk_hsi_P_compatible_IDX_0_STRING_UNQUOTED st,stm32g0-hsi-clock +#define DT_N_S_clocks_S_clk_hsi_P_compatible_IDX_0_STRING_TOKEN st_stm32g0_hsi_clock +#define DT_N_S_clocks_S_clk_hsi_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32G0_HSI_CLOCK +#define DT_N_S_clocks_S_clk_hsi_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_hsi, compatible, 0) +#define DT_N_S_clocks_S_clk_hsi_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hsi, compatible, 0) +#define DT_N_S_clocks_S_clk_hsi_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hsi, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hsi, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi_P_compatible_LEN 1 +#define DT_N_S_clocks_S_clk_hsi_P_compatible_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_zephyr_deferred_init 0 +#define DT_N_S_clocks_S_clk_hsi_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_wakeup_source 0 +#define DT_N_S_clocks_S_clk_hsi_P_wakeup_source_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_clocks_S_clk_hsi_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /clocks/pll + * + * Node identifier: DT_N_S_clocks_S_pll + * + * Binding (compatible = st,stm32g0-pll-clock): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32g0-pll-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clocks_S_pll_PATH "/clocks/pll" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_S_pll_FULL_NAME "pll" +#define DT_N_S_clocks_S_pll_FULL_NAME_UNQUOTED pll +#define DT_N_S_clocks_S_pll_FULL_NAME_TOKEN pll +#define DT_N_S_clocks_S_pll_FULL_NAME_UPPER_TOKEN PLL + +/* Node parent (/clocks) identifier: */ +#define DT_N_S_clocks_S_pll_PARENT DT_N_S_clocks + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_S_pll_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_S_pll_NODELABEL_NUM 1 +#define DT_N_S_clocks_S_pll_FOREACH_NODELABEL(fn) fn(pll) +#define DT_N_S_clocks_S_pll_FOREACH_NODELABEL_VARGS(fn, ...) fn(pll, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_FOREACH_ANCESTOR(fn) fn(DT_N_S_clocks) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_S_pll_CHILD_NUM 0 +#define DT_N_S_clocks_S_pll_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clocks_S_pll_FOREACH_CHILD(fn) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clocks_S_pll_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clocks_S_pll_HASH MENiPNxcjOF6dwaYSdS9Iq0tqHDbWKghVscDDRncn0o + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_S_pll_ORD 7 +#define DT_N_S_clocks_S_pll_ORD_STR_SORTABLE 00007 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_S_pll_REQUIRES_ORDS \ + 5, /* /clocks */ \ + 6, /* /clocks/clk-hsi */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_S_pll_SUPPORTS_ORDS \ + 8, /* /soc/rcc@40021000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_S_pll_EXISTS 1 +#define DT_N_INST_0_st_stm32g0_pll_clock DT_N_S_clocks_S_pll +#define DT_N_NODELABEL_pll DT_N_S_clocks_S_pll + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_S_pll_REG_NUM 0 +#define DT_N_S_clocks_S_pll_RANGES_NUM 0 +#define DT_N_S_clocks_S_pll_FOREACH_RANGE(fn) +#define DT_N_S_clocks_S_pll_IRQ_NUM 0 +#define DT_N_S_clocks_S_pll_IRQ_LEVEL 0 +#define DT_N_S_clocks_S_pll_COMPAT_MATCHES_st_stm32g0_pll_clock 1 +#define DT_N_S_clocks_S_pll_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_pll_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_clocks_S_pll_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_pll_COMPAT_MODEL_IDX_0 "stm32g0-pll-clock" +#define DT_N_S_clocks_S_pll_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_S_pll_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clocks_S_pll_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_clocks_IDX_0_PH DT_N_S_clocks_S_clk_hsi +#define DT_N_S_clocks_S_pll_P_clocks_IDX_0_FOREACH_CELL(fn) +#define DT_N_S_clocks_S_pll_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) +#define DT_N_S_clocks_S_pll_P_clocks_IDX_0_NUM_CELLS 0 +#define DT_N_S_clocks_S_pll_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_pll, clocks, 0) +#define DT_N_S_clocks_S_pll_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_pll, clocks, 0) +#define DT_N_S_clocks_S_pll_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_pll, clocks, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_pll, clocks, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_P_clocks_LEN 1 +#define DT_N_S_clocks_S_pll_P_clocks_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_div_m 1 +#define DT_N_S_clocks_S_pll_P_div_m_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_mul_n 8 +#define DT_N_S_clocks_S_pll_P_mul_n_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_div_p 2 +#define DT_N_S_clocks_S_pll_P_div_p_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_div_q 2 +#define DT_N_S_clocks_S_pll_P_div_q_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_div_r 2 +#define DT_N_S_clocks_S_pll_P_div_r_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_status "okay" +#define DT_N_S_clocks_S_pll_P_status_STRING_UNQUOTED okay +#define DT_N_S_clocks_S_pll_P_status_STRING_TOKEN okay +#define DT_N_S_clocks_S_pll_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_clocks_S_pll_P_status_IDX_0 "okay" +#define DT_N_S_clocks_S_pll_P_status_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_clocks_S_pll_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_pll, status, 0) +#define DT_N_S_clocks_S_pll_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_pll, status, 0) +#define DT_N_S_clocks_S_pll_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_pll, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_pll, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_P_status_LEN 1 +#define DT_N_S_clocks_S_pll_P_status_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_compatible {"st,stm32g0-pll-clock"} +#define DT_N_S_clocks_S_pll_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_compatible_IDX_0 "st,stm32g0-pll-clock" +#define DT_N_S_clocks_S_pll_P_compatible_IDX_0_STRING_UNQUOTED st,stm32g0-pll-clock +#define DT_N_S_clocks_S_pll_P_compatible_IDX_0_STRING_TOKEN st_stm32g0_pll_clock +#define DT_N_S_clocks_S_pll_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32G0_PLL_CLOCK +#define DT_N_S_clocks_S_pll_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_pll, compatible, 0) +#define DT_N_S_clocks_S_pll_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_pll, compatible, 0) +#define DT_N_S_clocks_S_pll_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_pll, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_pll, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_pll_P_compatible_LEN 1 +#define DT_N_S_clocks_S_pll_P_compatible_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_zephyr_deferred_init 0 +#define DT_N_S_clocks_S_pll_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_wakeup_source 0 +#define DT_N_S_clocks_S_pll_P_wakeup_source_EXISTS 1 +#define DT_N_S_clocks_S_pll_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_clocks_S_pll_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/rcc@40021000 + * + * Node identifier: DT_N_S_soc_S_rcc_40021000 + * + * Binding (compatible = st,stm32f0-rcc): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32f0-rcc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rcc_40021000_PATH "/soc/rcc@40021000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rcc_40021000_FULL_NAME "rcc@40021000" +#define DT_N_S_soc_S_rcc_40021000_FULL_NAME_UNQUOTED rcc@40021000 +#define DT_N_S_soc_S_rcc_40021000_FULL_NAME_TOKEN rcc_40021000 +#define DT_N_S_soc_S_rcc_40021000_FULL_NAME_UPPER_TOKEN RCC_40021000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_rcc_40021000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rcc_40021000_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rcc_40021000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rcc_40021000_FOREACH_NODELABEL(fn) fn(rcc) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rcc, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rcc_40021000_CHILD_NUM 1 +#define DT_N_S_soc_S_rcc_40021000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_rcc_40021000_HASH 9dpgZGnFDhzfr3szN5sIDHeylLss1yadXzhaTcERMgU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rcc_40021000_ORD 8 +#define DT_N_S_soc_S_rcc_40021000_ORD_STR_SORTABLE 00008 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rcc_40021000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 7, /* /clocks/pll */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rcc_40021000_SUPPORTS_ORDS \ + 9, /* /soc/adc@40012400 */ \ + 12, /* /soc/i2c@40005400 */ \ + 14, /* /soc/i2c@40005800 */ \ + 16, /* /soc/i2c@40008800 */ \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ \ + 40, /* /soc/can@40006400 */ \ + 43, /* /soc/can@40006800 */ \ + 44, /* /soc/dac@40007400 */ \ + 45, /* /soc/dma@40020000 */ \ + 46, /* /soc/dma@40020400 */ \ + 48, /* /soc/interrupt-controller@40021800 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ \ + 50, /* /soc/serial@40004400 */ \ + 51, /* /soc/serial@40004800 */ \ + 52, /* /soc/serial@40004c00 */ \ + 53, /* /soc/serial@40005000 */ \ + 54, /* /soc/serial@40008000 */ \ + 55, /* /soc/serial@40008400 */ \ + 58, /* /soc/serial@40013800 */ \ + 59, /* /soc/serial@40013c00 */ \ + 60, /* /soc/spi@40003800 */ \ + 61, /* /soc/spi@40003c00 */ \ + 62, /* /soc/spi@40013000 */ \ + 64, /* /soc/timers@40007c00 */ \ + 65, /* /soc/ucpd@4000a000 */ \ + 66, /* /soc/ucpd@4000a400 */ \ + 70, /* /soc/usb@40005c00 */ \ + 71, /* /soc/watchdog@40002c00 */ \ + 73, /* /soc/flash-controller@40022000 */ \ + 79, /* /soc/pin-controller@50000000/gpio@50000c00 */ \ + 80, /* /soc/pin-controller@50000000/gpio@50001400 */ \ + 81, /* /soc/pin-controller@50000000/gpio@50000800 */ \ + 82, /* /soc/pin-controller@50000000/gpio@50001000 */ \ + 90, /* /soc/rtc@40002800 */ \ + 92, /* /soc/timers@40000000 */ \ + 95, /* /soc/timers@40000400 */ \ + 99, /* /soc/timers@40000800 */ \ + 102, /* /soc/timers@40001000 */ \ + 104, /* /soc/timers@40001400 */ \ + 106, /* /soc/timers@40002000 */ \ + 109, /* /soc/timers@40012c00 */ \ + 113, /* /soc/timers@40014000 */ \ + 116, /* /soc/timers@40014400 */ \ + 119, /* /soc/timers@40014800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rcc_40021000_EXISTS 1 +#define DT_N_INST_0_st_stm32f0_rcc DT_N_S_soc_S_rcc_40021000 +#define DT_N_NODELABEL_rcc DT_N_S_soc_S_rcc_40021000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rcc_40021000_REG_NUM 1 +#define DT_N_S_soc_S_rcc_40021000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_REG_IDX_0_VAL_ADDRESS 1073876992 /* 0x40021000 */ +#define DT_N_S_soc_S_rcc_40021000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_rcc_40021000_RANGES_NUM 0 +#define DT_N_S_soc_S_rcc_40021000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rcc_40021000_IRQ_NUM 0 +#define DT_N_S_soc_S_rcc_40021000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_rcc_40021000_COMPAT_MATCHES_st_stm32f0_rcc 1 +#define DT_N_S_soc_S_rcc_40021000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_rcc_40021000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_COMPAT_MODEL_IDX_0 "stm32f0-rcc" +#define DT_N_S_soc_S_rcc_40021000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rcc_40021000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rcc_40021000_P_reg {1073876992 /* 0x40021000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_rcc_40021000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_reg_IDX_0 1073876992 +#define DT_N_S_soc_S_rcc_40021000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_rcc_40021000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_clock_frequency 64000000 +#define DT_N_S_soc_S_rcc_40021000_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_ahb_prescaler 1 +#define DT_N_S_soc_S_rcc_40021000_P_ahb_prescaler_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_rcc_40021000_P_ahb_prescaler_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_ahb_prescaler_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_ahb_prescaler_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_ahb_prescaler_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_apb1_prescaler 1 +#define DT_N_S_soc_S_rcc_40021000_P_apb1_prescaler_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_rcc_40021000_P_apb1_prescaler_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_apb1_prescaler_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_apb1_prescaler_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_apb1_prescaler_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_undershoot_prevention 0 +#define DT_N_S_soc_S_rcc_40021000_P_undershoot_prevention_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_compatible {"st,stm32f0-rcc"} +#define DT_N_S_soc_S_rcc_40021000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_compatible_IDX_0 "st,stm32f0-rcc" +#define DT_N_S_soc_S_rcc_40021000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32f0-rcc +#define DT_N_S_soc_S_rcc_40021000_P_compatible_IDX_0_STRING_TOKEN st_stm32f0_rcc +#define DT_N_S_soc_S_rcc_40021000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32F0_RCC +#define DT_N_S_soc_S_rcc_40021000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rcc_40021000, compatible, 0) +#define DT_N_S_soc_S_rcc_40021000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rcc_40021000, compatible, 0) +#define DT_N_S_soc_S_rcc_40021000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rcc_40021000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rcc_40021000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_P_compatible_LEN 1 +#define DT_N_S_soc_S_rcc_40021000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_clocks_IDX_0_PH DT_N_S_clocks_S_pll +#define DT_N_S_soc_S_rcc_40021000_P_clocks_IDX_0_FOREACH_CELL(fn) +#define DT_N_S_soc_S_rcc_40021000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) +#define DT_N_S_soc_S_rcc_40021000_P_clocks_IDX_0_NUM_CELLS 0 +#define DT_N_S_soc_S_rcc_40021000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rcc_40021000, clocks, 0) +#define DT_N_S_soc_S_rcc_40021000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rcc_40021000, clocks, 0) +#define DT_N_S_soc_S_rcc_40021000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rcc_40021000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rcc_40021000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_P_clocks_LEN 1 +#define DT_N_S_soc_S_rcc_40021000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rcc_40021000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_wakeup_source 0 +#define DT_N_S_soc_S_rcc_40021000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rcc_40021000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/adc@40012400 + * + * Node identifier: DT_N_S_soc_S_adc_40012400 + * + * Binding (compatible = st,stm32-adc): + * $ZEPHYR_BASE\dts\bindings\adc\st,stm32-adc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_adc_40012400_PATH "/soc/adc@40012400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_adc_40012400_FULL_NAME "adc@40012400" +#define DT_N_S_soc_S_adc_40012400_FULL_NAME_UNQUOTED adc@40012400 +#define DT_N_S_soc_S_adc_40012400_FULL_NAME_TOKEN adc_40012400 +#define DT_N_S_soc_S_adc_40012400_FULL_NAME_UPPER_TOKEN ADC_40012400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_adc_40012400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_adc_40012400_CHILD_IDX 21 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_adc_40012400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_adc_40012400_FOREACH_NODELABEL(fn) fn(adc1) +#define DT_N_S_soc_S_adc_40012400_FOREACH_NODELABEL_VARGS(fn, ...) fn(adc1, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_adc_40012400_CHILD_NUM 0 +#define DT_N_S_soc_S_adc_40012400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_40012400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_adc_40012400_HASH jvGesJm0HIbPUfZ_bkIPiSiw6dH2lyvPUp883naopDo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_adc_40012400_ORD 9 +#define DT_N_S_soc_S_adc_40012400_ORD_STR_SORTABLE 00009 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_adc_40012400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_adc_40012400_SUPPORTS_ORDS \ + 10, /* /dietemp */ \ + 18, /* /vbat */ \ + 19, /* /vref */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_adc_40012400_EXISTS 1 +#define DT_N_INST_0_st_stm32_adc DT_N_S_soc_S_adc_40012400 +#define DT_N_NODELABEL_adc1 DT_N_S_soc_S_adc_40012400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_adc_40012400_REG_NUM 1 +#define DT_N_S_soc_S_adc_40012400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_REG_IDX_0_VAL_ADDRESS 1073816576 /* 0x40012400 */ +#define DT_N_S_soc_S_adc_40012400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_adc_40012400_RANGES_NUM 0 +#define DT_N_S_soc_S_adc_40012400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_adc_40012400_IRQ_NUM 1 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_VAL_irq 12 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_adc_40012400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_adc_40012400_COMPAT_MATCHES_st_stm32_adc 1 +#define DT_N_S_soc_S_adc_40012400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_adc_40012400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_COMPAT_MODEL_IDX_0 "stm32-adc" +#define DT_N_S_soc_S_adc_40012400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_adc_40012400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_adc_40012400_P_reg {1073816576 /* 0x40012400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_adc_40012400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_reg_IDX_0 1073816576 +#define DT_N_S_soc_S_adc_40012400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_adc_40012400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_VAL_bits 1048576 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_adc_40012400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_adc_40012400, clocks, 0, bits) +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, clocks, 0, bits) +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_NAME "adcx" +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_IDX 0 +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_adc_40012400, clocks, adcx, bus) \ + fn(DT_N_S_soc_S_adc_40012400, clocks, adcx, bits) +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, clocks, adcx, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, clocks, adcx, bits) +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_NUM_CELLS 2 +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_VAL_bus DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_VAL_bus +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_VAL_bits DT_N_S_soc_S_adc_40012400_P_clocks_IDX_0_VAL_bits +#define DT_N_S_soc_S_adc_40012400_P_clocks_NAME_adcx_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, clocks, 0) +#define DT_N_S_soc_S_adc_40012400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, clocks, 0) +#define DT_N_S_soc_S_adc_40012400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_clocks_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clock_names {"adcx"} +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0_ENUM_VAL_adcx_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clock_names_ENUM_VAL_adcx_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0 "adcx" +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0_STRING_UNQUOTED adcx +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0_STRING_TOKEN adcx +#define DT_N_S_soc_S_adc_40012400_P_clock_names_IDX_0_STRING_UPPER_TOKEN ADCX +#define DT_N_S_soc_S_adc_40012400_P_clock_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, clock_names, 0) +#define DT_N_S_soc_S_adc_40012400_P_clock_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, clock_names, 0) +#define DT_N_S_soc_S_adc_40012400_P_clock_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, clock_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_clock_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, clock_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_clock_names_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_clock_names_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_interrupts {12 /* 0xc */, 0 /* 0x0 */} +#define DT_N_S_soc_S_adc_40012400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_interrupts_IDX_0 12 +#define DT_N_S_soc_S_adc_40012400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_adc_40012400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_vref_mv 3300 +#define DT_N_S_soc_S_adc_40012400_P_vref_mv_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_resolutions {6316812 /* 0x60630c */, 5333772 /* 0x51630c */, 4350732 /* 0x42630c */, 3367692 /* 0x33630c */} +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_0 6316812 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_1 5333772 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_2 4350732 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_IDX_3 3367692 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, resolutions, 0) \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 1) \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 2) \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 3) +#define DT_N_S_soc_S_adc_40012400_P_resolutions_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, resolutions, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 3) +#define DT_N_S_soc_S_adc_40012400_P_resolutions_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, resolutions, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 1, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 2, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 3, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_resolutions_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, resolutions, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, resolutions, 3, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_resolutions_LEN 4 +#define DT_N_S_soc_S_adc_40012400_P_resolutions_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times {3 /* 0x3 */, 5 /* 0x5 */, 8 /* 0x8 */, 13 /* 0xd */, 20 /* 0x14 */, 40 /* 0x28 */, 80 /* 0x50 */, 161 /* 0xa1 */} +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_0 3 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_1 5 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_2 8 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_3 13 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_4 20 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_5 40 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_6 80 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_IDX_7 161 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, sampling_times, 0) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 1) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 2) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 3) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 4) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 5) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 6) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 7) +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, sampling_times, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 3) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 4) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 5) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 6) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 7) +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, sampling_times, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 1, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 2, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 3, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 4, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 5, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 6, __VA_ARGS__) \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 7, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, sampling_times, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_adc_40012400, sampling_times, 7, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_LEN 8 +#define DT_N_S_soc_S_adc_40012400_P_sampling_times_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_num_sampling_time_common_channels 2 +#define DT_N_S_soc_S_adc_40012400_P_num_sampling_time_common_channels_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer "fixed" +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_STRING_UNQUOTED fixed +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_STRING_TOKEN fixed +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_STRING_UPPER_TOKEN FIXED +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_IDX_0 "fixed" +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_IDX_0_ENUM_VAL_fixed_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_ENUM_VAL_fixed_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, st_adc_sequencer, 0) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, st_adc_sequencer, 0) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, st_adc_sequencer, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, st_adc_sequencer, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_sequencer_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler "minimal" +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_STRING_UNQUOTED minimal +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_STRING_TOKEN minimal +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_STRING_UPPER_TOKEN MINIMAL +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_IDX_0 "minimal" +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_IDX_0_ENUM_VAL_minimal_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_ENUM_VAL_minimal_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, st_adc_oversampler, 0) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, st_adc_oversampler, 0) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, st_adc_oversampler, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, st_adc_oversampler, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_oversampler_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator "startup-sw-delay" +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_STRING_UNQUOTED startup-sw-delay +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_STRING_TOKEN startup_sw_delay +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_STRING_UPPER_TOKEN STARTUP_SW_DELAY +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_IDX_0 "startup-sw-delay" +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_IDX_0_ENUM_VAL_startup_sw_delay_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_ENUM_VAL_startup_sw_delay_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, st_adc_internal_regulator, 0) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, st_adc_internal_regulator, 0) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, st_adc_internal_regulator, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, st_adc_internal_regulator, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_internal_regulator_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_has_deep_powerdown 0 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_has_deep_powerdown_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_has_channel_preselection 0 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_has_channel_preselection_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_has_differential_support 0 +#define DT_N_S_soc_S_adc_40012400_P_st_adc_has_differential_support_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_status "disabled" +#define DT_N_S_soc_S_adc_40012400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_adc_40012400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_adc_40012400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_adc_40012400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_adc_40012400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_adc_40012400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, status, 0) +#define DT_N_S_soc_S_adc_40012400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, status, 0) +#define DT_N_S_soc_S_adc_40012400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_status_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_status_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_compatible {"st,stm32-adc"} +#define DT_N_S_soc_S_adc_40012400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_compatible_IDX_0 "st,stm32-adc" +#define DT_N_S_soc_S_adc_40012400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-adc +#define DT_N_S_soc_S_adc_40012400_P_compatible_IDX_0_STRING_TOKEN st_stm32_adc +#define DT_N_S_soc_S_adc_40012400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_ADC +#define DT_N_S_soc_S_adc_40012400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_40012400, compatible, 0) +#define DT_N_S_soc_S_adc_40012400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_40012400, compatible, 0) +#define DT_N_S_soc_S_adc_40012400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_40012400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_40012400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_40012400_P_compatible_LEN 1 +#define DT_N_S_soc_S_adc_40012400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_adc_40012400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_wakeup_source 0 +#define DT_N_S_soc_S_adc_40012400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_adc_40012400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_adc_40012400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /dietemp + * + * Node identifier: DT_N_S_dietemp + * + * Binding (compatible = st,stm32-temp-cal): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-temp-cal.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_dietemp_PATH "/dietemp" + +/* Node's name with unit-address: */ +#define DT_N_S_dietemp_FULL_NAME "dietemp" +#define DT_N_S_dietemp_FULL_NAME_UNQUOTED dietemp +#define DT_N_S_dietemp_FULL_NAME_TOKEN dietemp +#define DT_N_S_dietemp_FULL_NAME_UPPER_TOKEN DIETEMP + +/* Node parent (/) identifier: */ +#define DT_N_S_dietemp_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_dietemp_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_dietemp_NODELABEL_NUM 1 +#define DT_N_S_dietemp_FOREACH_NODELABEL(fn) fn(die_temp) +#define DT_N_S_dietemp_FOREACH_NODELABEL_VARGS(fn, ...) fn(die_temp, __VA_ARGS__) +#define DT_N_S_dietemp_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_dietemp_CHILD_NUM 0 +#define DT_N_S_dietemp_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_dietemp_FOREACH_CHILD(fn) +#define DT_N_S_dietemp_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_dietemp_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_dietemp_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_dietemp_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_dietemp_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_dietemp_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_dietemp_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_dietemp_HASH 1P3ft3QMjkFq1eBnbB6dz9pZsoSMwhVrPGe82Fpxz6c + +/* Node's dependency ordinal: */ +#define DT_N_S_dietemp_ORD 10 +#define DT_N_S_dietemp_ORD_STR_SORTABLE 00010 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_dietemp_REQUIRES_ORDS \ + 0, /* / */ \ + 9, /* /soc/adc@40012400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_dietemp_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_dietemp_EXISTS 1 +#define DT_N_ALIAS_die_temp0 DT_N_S_dietemp +#define DT_N_INST_0_st_stm32_temp_cal DT_N_S_dietemp +#define DT_N_NODELABEL_die_temp DT_N_S_dietemp + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_dietemp_REG_NUM 0 +#define DT_N_S_dietemp_RANGES_NUM 0 +#define DT_N_S_dietemp_FOREACH_RANGE(fn) +#define DT_N_S_dietemp_IRQ_NUM 0 +#define DT_N_S_dietemp_IRQ_LEVEL 0 +#define DT_N_S_dietemp_COMPAT_MATCHES_st_stm32_temp_cal 1 +#define DT_N_S_dietemp_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_dietemp_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_dietemp_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_dietemp_COMPAT_MODEL_IDX_0 "stm32-temp-cal" +#define DT_N_S_dietemp_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_dietemp_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_dietemp_P_ts_cal2_addr 536835530 +#define DT_N_S_dietemp_P_ts_cal2_addr_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal2_temp 130 +#define DT_N_S_dietemp_P_ts_cal2_temp_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal1_addr 536835496 +#define DT_N_S_dietemp_P_ts_cal1_addr_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal1_temp 30 +#define DT_N_S_dietemp_P_ts_cal1_temp_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal_vrefanalog 3000 +#define DT_N_S_dietemp_P_ts_cal_vrefanalog_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal_resolution 12 +#define DT_N_S_dietemp_P_ts_cal_resolution_IDX_0_ENUM_IDX 0 +#define DT_N_S_dietemp_P_ts_cal_resolution_IDX_0_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal_resolution_IDX_0_ENUM_VAL_12_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal_resolution_ENUM_VAL_12_EXISTS 1 +#define DT_N_S_dietemp_P_ts_cal_resolution_EXISTS 1 +#define DT_N_S_dietemp_P_status "okay" +#define DT_N_S_dietemp_P_status_STRING_UNQUOTED okay +#define DT_N_S_dietemp_P_status_STRING_TOKEN okay +#define DT_N_S_dietemp_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_dietemp_P_status_IDX_0 "okay" +#define DT_N_S_dietemp_P_status_IDX_0_EXISTS 1 +#define DT_N_S_dietemp_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_dietemp_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_dietemp_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_dietemp_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_dietemp, status, 0) +#define DT_N_S_dietemp_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_dietemp, status, 0) +#define DT_N_S_dietemp_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_dietemp, status, 0, __VA_ARGS__) +#define DT_N_S_dietemp_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_dietemp, status, 0, __VA_ARGS__) +#define DT_N_S_dietemp_P_status_LEN 1 +#define DT_N_S_dietemp_P_status_EXISTS 1 +#define DT_N_S_dietemp_P_compatible {"st,stm32-temp-cal"} +#define DT_N_S_dietemp_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_dietemp_P_compatible_IDX_0 "st,stm32-temp-cal" +#define DT_N_S_dietemp_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-temp-cal +#define DT_N_S_dietemp_P_compatible_IDX_0_STRING_TOKEN st_stm32_temp_cal +#define DT_N_S_dietemp_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TEMP_CAL +#define DT_N_S_dietemp_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_dietemp, compatible, 0) +#define DT_N_S_dietemp_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_dietemp, compatible, 0) +#define DT_N_S_dietemp_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_dietemp, compatible, 0, __VA_ARGS__) +#define DT_N_S_dietemp_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_dietemp, compatible, 0, __VA_ARGS__) +#define DT_N_S_dietemp_P_compatible_LEN 1 +#define DT_N_S_dietemp_P_compatible_EXISTS 1 +#define DT_N_S_dietemp_P_io_channels_IDX_0_EXISTS 1 +#define DT_N_S_dietemp_P_io_channels_IDX_0_PH DT_N_S_soc_S_adc_40012400 +#define DT_N_S_dietemp_P_io_channels_IDX_0_VAL_input 12 +#define DT_N_S_dietemp_P_io_channels_IDX_0_VAL_input_EXISTS 1 +#define DT_N_S_dietemp_P_io_channels_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_dietemp, io_channels, 0, input) +#define DT_N_S_dietemp_P_io_channels_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_dietemp, io_channels, 0, input) +#define DT_N_S_dietemp_P_io_channels_IDX_0_NUM_CELLS 1 +#define DT_N_S_dietemp_P_io_channels_FOREACH_PROP_ELEM(fn) fn(DT_N_S_dietemp, io_channels, 0) +#define DT_N_S_dietemp_P_io_channels_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_dietemp, io_channels, 0) +#define DT_N_S_dietemp_P_io_channels_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_dietemp, io_channels, 0, __VA_ARGS__) +#define DT_N_S_dietemp_P_io_channels_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_dietemp, io_channels, 0, __VA_ARGS__) +#define DT_N_S_dietemp_P_io_channels_LEN 1 +#define DT_N_S_dietemp_P_io_channels_EXISTS 1 +#define DT_N_S_dietemp_P_zephyr_deferred_init 0 +#define DT_N_S_dietemp_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_dietemp_P_wakeup_source 0 +#define DT_N_S_dietemp_P_wakeup_source_EXISTS 1 +#define DT_N_S_dietemp_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_dietemp_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /memory@20000000 + * + * Node identifier: DT_N_S_memory_20000000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE\dts\bindings\base\zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_memory_20000000_PATH "/memory@20000000" + +/* Node's name with unit-address: */ +#define DT_N_S_memory_20000000_FULL_NAME "memory@20000000" +#define DT_N_S_memory_20000000_FULL_NAME_UNQUOTED memory@20000000 +#define DT_N_S_memory_20000000_FULL_NAME_TOKEN memory_20000000 +#define DT_N_S_memory_20000000_FULL_NAME_UPPER_TOKEN MEMORY_20000000 + +/* Node parent (/) identifier: */ +#define DT_N_S_memory_20000000_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_memory_20000000_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_memory_20000000_NODELABEL_NUM 1 +#define DT_N_S_memory_20000000_FOREACH_NODELABEL(fn) fn(sram0) +#define DT_N_S_memory_20000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sram0, __VA_ARGS__) +#define DT_N_S_memory_20000000_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_memory_20000000_CHILD_NUM 0 +#define DT_N_S_memory_20000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_memory_20000000_FOREACH_CHILD(fn) +#define DT_N_S_memory_20000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_memory_20000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_memory_20000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_memory_20000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_memory_20000000_HASH Ppv28MrjF0V_ocFctWWy62TJJRdbnlSCTerwKpAvZ6U + +/* Node's dependency ordinal: */ +#define DT_N_S_memory_20000000_ORD 11 +#define DT_N_S_memory_20000000_ORD_STR_SORTABLE 00011 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_memory_20000000_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_memory_20000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_memory_20000000_EXISTS 1 +#define DT_N_INST_0_zephyr_memory_region DT_N_S_memory_20000000 +#define DT_N_INST_0_mmio_sram DT_N_S_memory_20000000 +#define DT_N_NODELABEL_sram0 DT_N_S_memory_20000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_memory_20000000_REG_NUM 1 +#define DT_N_S_memory_20000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_memory_20000000_REG_IDX_0_VAL_ADDRESS 536870912 /* 0x20000000 */ +#define DT_N_S_memory_20000000_REG_IDX_0_VAL_SIZE 147456 /* 0x24000 */ +#define DT_N_S_memory_20000000_RANGES_NUM 0 +#define DT_N_S_memory_20000000_FOREACH_RANGE(fn) +#define DT_N_S_memory_20000000_IRQ_NUM 0 +#define DT_N_S_memory_20000000_IRQ_LEVEL 0 +#define DT_N_S_memory_20000000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_memory_20000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_memory_20000000_COMPAT_VENDOR_IDX_0 "The Zephyr Project" +#define DT_N_S_memory_20000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_memory_20000000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_memory_20000000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_memory_20000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_memory_20000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_memory_20000000_P_zephyr_memory_region "SRAM0" +#define DT_N_S_memory_20000000_P_zephyr_memory_region_STRING_UNQUOTED SRAM0 +#define DT_N_S_memory_20000000_P_zephyr_memory_region_STRING_TOKEN SRAM0 +#define DT_N_S_memory_20000000_P_zephyr_memory_region_STRING_UPPER_TOKEN SRAM0 +#define DT_N_S_memory_20000000_P_zephyr_memory_region_IDX_0 "SRAM0" +#define DT_N_S_memory_20000000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_memory_20000000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_memory_20000000, zephyr_memory_region, 0) +#define DT_N_S_memory_20000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_memory_20000000, zephyr_memory_region, 0) +#define DT_N_S_memory_20000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_memory_20000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_memory_20000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_memory_20000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_memory_20000000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_memory_20000000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_memory_20000000_P_compatible {"zephyr,memory-region", "mmio-sram"} +#define DT_N_S_memory_20000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_memory_20000000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_memory_20000000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_memory_20000000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_memory_20000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_memory_20000000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_memory_20000000_P_compatible_IDX_1 "mmio-sram" +#define DT_N_S_memory_20000000_P_compatible_IDX_1_STRING_UNQUOTED mmio-sram +#define DT_N_S_memory_20000000_P_compatible_IDX_1_STRING_TOKEN mmio_sram +#define DT_N_S_memory_20000000_P_compatible_IDX_1_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_memory_20000000, compatible, 0) \ + fn(DT_N_S_memory_20000000, compatible, 1) +#define DT_N_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_memory_20000000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_memory_20000000, compatible, 1) +#define DT_N_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_memory_20000000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_memory_20000000, compatible, 1, __VA_ARGS__) +#define DT_N_S_memory_20000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_memory_20000000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_memory_20000000, compatible, 1, __VA_ARGS__) +#define DT_N_S_memory_20000000_P_compatible_LEN 2 +#define DT_N_S_memory_20000000_P_compatible_EXISTS 1 +#define DT_N_S_memory_20000000_P_reg {536870912 /* 0x20000000 */, 147456 /* 0x24000 */} +#define DT_N_S_memory_20000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_memory_20000000_P_reg_IDX_0 536870912 +#define DT_N_S_memory_20000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_memory_20000000_P_reg_IDX_1 147456 +#define DT_N_S_memory_20000000_P_reg_EXISTS 1 +#define DT_N_S_memory_20000000_P_zephyr_deferred_init 0 +#define DT_N_S_memory_20000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_memory_20000000_P_wakeup_source 0 +#define DT_N_S_memory_20000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_memory_20000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_memory_20000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@40005400 + * + * Node identifier: DT_N_S_soc_S_i2c_40005400 + * + * Binding (compatible = st,stm32-i2c-v2): + * $ZEPHYR_BASE\dts\bindings\i2c\st,stm32-i2c-v2.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_40005400_PATH "/soc/i2c@40005400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_40005400_FULL_NAME "i2c@40005400" +#define DT_N_S_soc_S_i2c_40005400_FULL_NAME_UNQUOTED i2c@40005400 +#define DT_N_S_soc_S_i2c_40005400_FULL_NAME_TOKEN i2c_40005400 +#define DT_N_S_soc_S_i2c_40005400_FULL_NAME_UPPER_TOKEN I2C_40005400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_40005400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_40005400_CHILD_IDX 17 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_40005400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2c_40005400_FOREACH_NODELABEL(fn) fn(i2c1) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c1, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_40005400_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_40005400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40005400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2c_40005400_HASH qdcoGqslkp_qGZ59SAaN4H47YRea2PU_8MI_v34YdEo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_40005400_ORD 12 +#define DT_N_S_soc_S_i2c_40005400_ORD_STR_SORTABLE 00012 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_40005400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_40005400_SUPPORTS_ORDS \ + 13, /* /smbus1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_40005400_EXISTS 1 +#define DT_N_INST_0_st_stm32_i2c_v2 DT_N_S_soc_S_i2c_40005400 +#define DT_N_NODELABEL_i2c1 DT_N_S_soc_S_i2c_40005400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_40005400_REG_NUM 1 +#define DT_N_S_soc_S_i2c_40005400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_REG_IDX_0_VAL_ADDRESS 1073763328 /* 0x40005400 */ +#define DT_N_S_soc_S_i2c_40005400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_i2c_40005400_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_40005400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_40005400_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_VAL_irq 23 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_i2c_40005400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_NAME_combined_VAL_irq DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_i2c_40005400_IRQ_NAME_combined_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_NAME_combined_VAL_priority DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_i2c_40005400_IRQ_NAME_combined_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_IRQ_NAME_combined_CONTROLLER DT_N_S_soc_S_i2c_40005400_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_i2c_40005400_COMPAT_MATCHES_st_stm32_i2c_v2 1 +#define DT_N_S_soc_S_i2c_40005400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_i2c_40005400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_COMPAT_MODEL_IDX_0 "stm32-i2c-v2" +#define DT_N_S_soc_S_i2c_40005400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_40005400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_40005400_P_reg {1073763328 /* 0x40005400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_i2c_40005400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_reg_IDX_0 1073763328 +#define DT_N_S_soc_S_i2c_40005400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_i2c_40005400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_interrupts {23 /* 0x17 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2c_40005400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_interrupts_IDX_0 23 +#define DT_N_S_soc_S_i2c_40005400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2c_40005400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_clock_frequency 100000 +#define DT_N_S_soc_S_i2c_40005400_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_sq_size 4 +#define DT_N_S_soc_S_i2c_40005400_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_cq_size 4 +#define DT_N_S_soc_S_i2c_40005400_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_status "disabled" +#define DT_N_S_soc_S_i2c_40005400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2c_40005400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2c_40005400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2c_40005400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2c_40005400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2c_40005400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005400, status, 0) +#define DT_N_S_soc_S_i2c_40005400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005400, status, 0) +#define DT_N_S_soc_S_i2c_40005400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_40005400_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_compatible {"st,stm32-i2c-v2"} +#define DT_N_S_soc_S_i2c_40005400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_compatible_IDX_0 "st,stm32-i2c-v2" +#define DT_N_S_soc_S_i2c_40005400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-i2c-v2 +#define DT_N_S_soc_S_i2c_40005400_P_compatible_IDX_0_STRING_TOKEN st_stm32_i2c_v2 +#define DT_N_S_soc_S_i2c_40005400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_I2C_V2 +#define DT_N_S_soc_S_i2c_40005400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005400, compatible, 0) +#define DT_N_S_soc_S_i2c_40005400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005400, compatible, 0) +#define DT_N_S_soc_S_i2c_40005400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_40005400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names {"combined"} +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_IDX_0 "combined" +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_IDX_0_STRING_UNQUOTED combined +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_IDX_0_STRING_TOKEN combined +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN COMBINED +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005400, interrupt_names, 0) +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005400, interrupt_names, 0) +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_i2c_40005400_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_VAL_bits 2097152 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2c_40005400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_i2c_40005400, clocks, 0, bits) +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2c_40005400, clocks, 0, bits) +#define DT_N_S_soc_S_i2c_40005400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005400, clocks, 0) +#define DT_N_S_soc_S_i2c_40005400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005400, clocks, 0) +#define DT_N_S_soc_S_i2c_40005400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005400_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2c_40005400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_40005400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_40005400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2c_40005400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /smbus1 + * + * Node identifier: DT_N_S_smbus1 + * + * Binding (compatible = st,stm32-smbus): + * $ZEPHYR_BASE\dts\bindings\smbus\st,stm32-smbus.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_smbus1_PATH "/smbus1" + +/* Node's name with unit-address: */ +#define DT_N_S_smbus1_FULL_NAME "smbus1" +#define DT_N_S_smbus1_FULL_NAME_UNQUOTED smbus1 +#define DT_N_S_smbus1_FULL_NAME_TOKEN smbus1 +#define DT_N_S_smbus1_FULL_NAME_UPPER_TOKEN SMBUS1 + +/* Node parent (/) identifier: */ +#define DT_N_S_smbus1_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_smbus1_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_smbus1_NODELABEL_NUM 1 +#define DT_N_S_smbus1_FOREACH_NODELABEL(fn) fn(smbus1) +#define DT_N_S_smbus1_FOREACH_NODELABEL_VARGS(fn, ...) fn(smbus1, __VA_ARGS__) +#define DT_N_S_smbus1_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_smbus1_CHILD_NUM 0 +#define DT_N_S_smbus1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_smbus1_FOREACH_CHILD(fn) +#define DT_N_S_smbus1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_smbus1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_smbus1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_smbus1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_smbus1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_smbus1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_smbus1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_smbus1_HASH RRjxCtQo8vEaNES3pUGCHfX2Mp6H0kS5wnsZuRpKBrY + +/* Node's dependency ordinal: */ +#define DT_N_S_smbus1_ORD 13 +#define DT_N_S_smbus1_ORD_STR_SORTABLE 00013 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_smbus1_REQUIRES_ORDS \ + 0, /* / */ \ + 12, /* /soc/i2c@40005400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_smbus1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_smbus1_EXISTS 1 +#define DT_N_INST_0_st_stm32_smbus DT_N_S_smbus1 +#define DT_N_NODELABEL_smbus1 DT_N_S_smbus1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_smbus1_REG_NUM 0 +#define DT_N_S_smbus1_RANGES_NUM 0 +#define DT_N_S_smbus1_FOREACH_RANGE(fn) +#define DT_N_S_smbus1_IRQ_NUM 0 +#define DT_N_S_smbus1_IRQ_LEVEL 0 +#define DT_N_S_smbus1_COMPAT_MATCHES_st_stm32_smbus 1 +#define DT_N_S_smbus1_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_smbus1_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_smbus1_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_smbus1_COMPAT_MODEL_IDX_0 "stm32-smbus" +#define DT_N_S_smbus1_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_smbus1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_smbus1_P_i2c DT_N_S_soc_S_i2c_40005400 +#define DT_N_S_smbus1_P_i2c_IDX_0 DT_N_S_soc_S_i2c_40005400 +#define DT_N_S_smbus1_P_i2c_IDX_0_PH DT_N_S_soc_S_i2c_40005400 +#define DT_N_S_smbus1_P_i2c_IDX_0_EXISTS 1 +#define DT_N_S_smbus1_P_i2c_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus1, i2c, 0) +#define DT_N_S_smbus1_P_i2c_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus1, i2c, 0) +#define DT_N_S_smbus1_P_i2c_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus1, i2c, 0, __VA_ARGS__) +#define DT_N_S_smbus1_P_i2c_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus1, i2c, 0, __VA_ARGS__) +#define DT_N_S_smbus1_P_i2c_LEN 1 +#define DT_N_S_smbus1_P_i2c_EXISTS 1 +#define DT_N_S_smbus1_P_status "disabled" +#define DT_N_S_smbus1_P_status_STRING_UNQUOTED disabled +#define DT_N_S_smbus1_P_status_STRING_TOKEN disabled +#define DT_N_S_smbus1_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_smbus1_P_status_IDX_0 "disabled" +#define DT_N_S_smbus1_P_status_IDX_0_EXISTS 1 +#define DT_N_S_smbus1_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_smbus1_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_smbus1_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_smbus1_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus1, status, 0) +#define DT_N_S_smbus1_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus1, status, 0) +#define DT_N_S_smbus1_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus1, status, 0, __VA_ARGS__) +#define DT_N_S_smbus1_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus1, status, 0, __VA_ARGS__) +#define DT_N_S_smbus1_P_status_LEN 1 +#define DT_N_S_smbus1_P_status_EXISTS 1 +#define DT_N_S_smbus1_P_compatible {"st,stm32-smbus"} +#define DT_N_S_smbus1_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_smbus1_P_compatible_IDX_0 "st,stm32-smbus" +#define DT_N_S_smbus1_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-smbus +#define DT_N_S_smbus1_P_compatible_IDX_0_STRING_TOKEN st_stm32_smbus +#define DT_N_S_smbus1_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_SMBUS +#define DT_N_S_smbus1_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus1, compatible, 0) +#define DT_N_S_smbus1_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus1, compatible, 0) +#define DT_N_S_smbus1_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus1, compatible, 0, __VA_ARGS__) +#define DT_N_S_smbus1_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus1, compatible, 0, __VA_ARGS__) +#define DT_N_S_smbus1_P_compatible_LEN 1 +#define DT_N_S_smbus1_P_compatible_EXISTS 1 +#define DT_N_S_smbus1_P_zephyr_deferred_init 0 +#define DT_N_S_smbus1_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_smbus1_P_wakeup_source 0 +#define DT_N_S_smbus1_P_wakeup_source_EXISTS 1 +#define DT_N_S_smbus1_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_smbus1_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@40005800 + * + * Node identifier: DT_N_S_soc_S_i2c_40005800 + * + * Binding (compatible = st,stm32-i2c-v2): + * $ZEPHYR_BASE\dts\bindings\i2c\st,stm32-i2c-v2.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_40005800_PATH "/soc/i2c@40005800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_40005800_FULL_NAME "i2c@40005800" +#define DT_N_S_soc_S_i2c_40005800_FULL_NAME_UNQUOTED i2c@40005800 +#define DT_N_S_soc_S_i2c_40005800_FULL_NAME_TOKEN i2c_40005800 +#define DT_N_S_soc_S_i2c_40005800_FULL_NAME_UPPER_TOKEN I2C_40005800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_40005800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_40005800_CHILD_IDX 18 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_40005800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2c_40005800_FOREACH_NODELABEL(fn) fn(i2c2) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c2, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_40005800_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_40005800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40005800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2c_40005800_HASH eB73TQqq_PUOgKTcnvcwzuS4tWCFU0fUXyPb0bwWGkQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_40005800_ORD 14 +#define DT_N_S_soc_S_i2c_40005800_ORD_STR_SORTABLE 00014 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_40005800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_40005800_SUPPORTS_ORDS \ + 15, /* /smbus2 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_40005800_EXISTS 1 +#define DT_N_INST_1_st_stm32_i2c_v2 DT_N_S_soc_S_i2c_40005800 +#define DT_N_NODELABEL_i2c2 DT_N_S_soc_S_i2c_40005800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_40005800_REG_NUM 1 +#define DT_N_S_soc_S_i2c_40005800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_REG_IDX_0_VAL_ADDRESS 1073764352 /* 0x40005800 */ +#define DT_N_S_soc_S_i2c_40005800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_i2c_40005800_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_40005800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_40005800_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_VAL_irq 24 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_i2c_40005800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_NAME_combined_VAL_irq DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_i2c_40005800_IRQ_NAME_combined_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_NAME_combined_VAL_priority DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_i2c_40005800_IRQ_NAME_combined_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_IRQ_NAME_combined_CONTROLLER DT_N_S_soc_S_i2c_40005800_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_i2c_40005800_COMPAT_MATCHES_st_stm32_i2c_v2 1 +#define DT_N_S_soc_S_i2c_40005800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_i2c_40005800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_COMPAT_MODEL_IDX_0 "stm32-i2c-v2" +#define DT_N_S_soc_S_i2c_40005800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_40005800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_40005800_P_reg {1073764352 /* 0x40005800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_i2c_40005800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_reg_IDX_0 1073764352 +#define DT_N_S_soc_S_i2c_40005800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_i2c_40005800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_interrupts {24 /* 0x18 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2c_40005800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_interrupts_IDX_0 24 +#define DT_N_S_soc_S_i2c_40005800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2c_40005800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_clock_frequency 100000 +#define DT_N_S_soc_S_i2c_40005800_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_sq_size 4 +#define DT_N_S_soc_S_i2c_40005800_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_cq_size 4 +#define DT_N_S_soc_S_i2c_40005800_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_status "disabled" +#define DT_N_S_soc_S_i2c_40005800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2c_40005800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2c_40005800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2c_40005800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2c_40005800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2c_40005800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005800, status, 0) +#define DT_N_S_soc_S_i2c_40005800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005800, status, 0) +#define DT_N_S_soc_S_i2c_40005800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_40005800_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_compatible {"st,stm32-i2c-v2"} +#define DT_N_S_soc_S_i2c_40005800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_compatible_IDX_0 "st,stm32-i2c-v2" +#define DT_N_S_soc_S_i2c_40005800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-i2c-v2 +#define DT_N_S_soc_S_i2c_40005800_P_compatible_IDX_0_STRING_TOKEN st_stm32_i2c_v2 +#define DT_N_S_soc_S_i2c_40005800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_I2C_V2 +#define DT_N_S_soc_S_i2c_40005800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005800, compatible, 0) +#define DT_N_S_soc_S_i2c_40005800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005800, compatible, 0) +#define DT_N_S_soc_S_i2c_40005800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_40005800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names {"combined"} +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_IDX_0 "combined" +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_IDX_0_STRING_UNQUOTED combined +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_IDX_0_STRING_TOKEN combined +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN COMBINED +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005800, interrupt_names, 0) +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005800, interrupt_names, 0) +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_i2c_40005800_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_VAL_bits 4194304 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2c_40005800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_i2c_40005800, clocks, 0, bits) +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2c_40005800, clocks, 0, bits) +#define DT_N_S_soc_S_i2c_40005800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40005800, clocks, 0) +#define DT_N_S_soc_S_i2c_40005800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40005800, clocks, 0) +#define DT_N_S_soc_S_i2c_40005800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40005800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40005800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40005800_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2c_40005800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_40005800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_40005800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_40005800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2c_40005800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /smbus2 + * + * Node identifier: DT_N_S_smbus2 + * + * Binding (compatible = st,stm32-smbus): + * $ZEPHYR_BASE\dts\bindings\smbus\st,stm32-smbus.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_smbus2_PATH "/smbus2" + +/* Node's name with unit-address: */ +#define DT_N_S_smbus2_FULL_NAME "smbus2" +#define DT_N_S_smbus2_FULL_NAME_UNQUOTED smbus2 +#define DT_N_S_smbus2_FULL_NAME_TOKEN smbus2 +#define DT_N_S_smbus2_FULL_NAME_UPPER_TOKEN SMBUS2 + +/* Node parent (/) identifier: */ +#define DT_N_S_smbus2_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_smbus2_CHILD_IDX 11 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_smbus2_NODELABEL_NUM 1 +#define DT_N_S_smbus2_FOREACH_NODELABEL(fn) fn(smbus2) +#define DT_N_S_smbus2_FOREACH_NODELABEL_VARGS(fn, ...) fn(smbus2, __VA_ARGS__) +#define DT_N_S_smbus2_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_smbus2_CHILD_NUM 0 +#define DT_N_S_smbus2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_smbus2_FOREACH_CHILD(fn) +#define DT_N_S_smbus2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_smbus2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_smbus2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_smbus2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_smbus2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_smbus2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_smbus2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_smbus2_HASH CeKsUeBLVHACPFrmleKnxYHTPUYQ02SrNC2w1a_Vmm4 + +/* Node's dependency ordinal: */ +#define DT_N_S_smbus2_ORD 15 +#define DT_N_S_smbus2_ORD_STR_SORTABLE 00015 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_smbus2_REQUIRES_ORDS \ + 0, /* / */ \ + 14, /* /soc/i2c@40005800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_smbus2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_smbus2_EXISTS 1 +#define DT_N_INST_1_st_stm32_smbus DT_N_S_smbus2 +#define DT_N_NODELABEL_smbus2 DT_N_S_smbus2 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_smbus2_REG_NUM 0 +#define DT_N_S_smbus2_RANGES_NUM 0 +#define DT_N_S_smbus2_FOREACH_RANGE(fn) +#define DT_N_S_smbus2_IRQ_NUM 0 +#define DT_N_S_smbus2_IRQ_LEVEL 0 +#define DT_N_S_smbus2_COMPAT_MATCHES_st_stm32_smbus 1 +#define DT_N_S_smbus2_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_smbus2_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_smbus2_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_smbus2_COMPAT_MODEL_IDX_0 "stm32-smbus" +#define DT_N_S_smbus2_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_smbus2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_smbus2_P_i2c DT_N_S_soc_S_i2c_40005800 +#define DT_N_S_smbus2_P_i2c_IDX_0 DT_N_S_soc_S_i2c_40005800 +#define DT_N_S_smbus2_P_i2c_IDX_0_PH DT_N_S_soc_S_i2c_40005800 +#define DT_N_S_smbus2_P_i2c_IDX_0_EXISTS 1 +#define DT_N_S_smbus2_P_i2c_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus2, i2c, 0) +#define DT_N_S_smbus2_P_i2c_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus2, i2c, 0) +#define DT_N_S_smbus2_P_i2c_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus2, i2c, 0, __VA_ARGS__) +#define DT_N_S_smbus2_P_i2c_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus2, i2c, 0, __VA_ARGS__) +#define DT_N_S_smbus2_P_i2c_LEN 1 +#define DT_N_S_smbus2_P_i2c_EXISTS 1 +#define DT_N_S_smbus2_P_status "disabled" +#define DT_N_S_smbus2_P_status_STRING_UNQUOTED disabled +#define DT_N_S_smbus2_P_status_STRING_TOKEN disabled +#define DT_N_S_smbus2_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_smbus2_P_status_IDX_0 "disabled" +#define DT_N_S_smbus2_P_status_IDX_0_EXISTS 1 +#define DT_N_S_smbus2_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_smbus2_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_smbus2_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_smbus2_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus2, status, 0) +#define DT_N_S_smbus2_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus2, status, 0) +#define DT_N_S_smbus2_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus2, status, 0, __VA_ARGS__) +#define DT_N_S_smbus2_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus2, status, 0, __VA_ARGS__) +#define DT_N_S_smbus2_P_status_LEN 1 +#define DT_N_S_smbus2_P_status_EXISTS 1 +#define DT_N_S_smbus2_P_compatible {"st,stm32-smbus"} +#define DT_N_S_smbus2_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_smbus2_P_compatible_IDX_0 "st,stm32-smbus" +#define DT_N_S_smbus2_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-smbus +#define DT_N_S_smbus2_P_compatible_IDX_0_STRING_TOKEN st_stm32_smbus +#define DT_N_S_smbus2_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_SMBUS +#define DT_N_S_smbus2_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus2, compatible, 0) +#define DT_N_S_smbus2_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus2, compatible, 0) +#define DT_N_S_smbus2_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus2, compatible, 0, __VA_ARGS__) +#define DT_N_S_smbus2_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus2, compatible, 0, __VA_ARGS__) +#define DT_N_S_smbus2_P_compatible_LEN 1 +#define DT_N_S_smbus2_P_compatible_EXISTS 1 +#define DT_N_S_smbus2_P_zephyr_deferred_init 0 +#define DT_N_S_smbus2_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_smbus2_P_wakeup_source 0 +#define DT_N_S_smbus2_P_wakeup_source_EXISTS 1 +#define DT_N_S_smbus2_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_smbus2_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@40008800 + * + * Node identifier: DT_N_S_soc_S_i2c_40008800 + * + * Binding (compatible = st,stm32-i2c-v2): + * $ZEPHYR_BASE\dts\bindings\i2c\st,stm32-i2c-v2.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_40008800_PATH "/soc/i2c@40008800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_40008800_FULL_NAME "i2c@40008800" +#define DT_N_S_soc_S_i2c_40008800_FULL_NAME_UNQUOTED i2c@40008800 +#define DT_N_S_soc_S_i2c_40008800_FULL_NAME_TOKEN i2c_40008800 +#define DT_N_S_soc_S_i2c_40008800_FULL_NAME_UPPER_TOKEN I2C_40008800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_40008800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_40008800_CHILD_IDX 41 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_40008800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2c_40008800_FOREACH_NODELABEL(fn) fn(i2c3) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c3, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_40008800_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_40008800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_40008800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2c_40008800_HASH 0AJns5VQgSiiJ_SumtvI0JD8dtxAcKMy9hy1R0rrMQk + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_40008800_ORD 16 +#define DT_N_S_soc_S_i2c_40008800_ORD_STR_SORTABLE 00016 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_40008800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_40008800_SUPPORTS_ORDS \ + 17, /* /smbus3 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_40008800_EXISTS 1 +#define DT_N_INST_2_st_stm32_i2c_v2 DT_N_S_soc_S_i2c_40008800 +#define DT_N_NODELABEL_i2c3 DT_N_S_soc_S_i2c_40008800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_40008800_REG_NUM 1 +#define DT_N_S_soc_S_i2c_40008800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_REG_IDX_0_VAL_ADDRESS 1073776640 /* 0x40008800 */ +#define DT_N_S_soc_S_i2c_40008800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_i2c_40008800_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_40008800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_40008800_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_VAL_irq 24 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_i2c_40008800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_NAME_combined_VAL_irq DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_i2c_40008800_IRQ_NAME_combined_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_NAME_combined_VAL_priority DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_i2c_40008800_IRQ_NAME_combined_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_IRQ_NAME_combined_CONTROLLER DT_N_S_soc_S_i2c_40008800_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_i2c_40008800_COMPAT_MATCHES_st_stm32_i2c_v2 1 +#define DT_N_S_soc_S_i2c_40008800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_i2c_40008800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_COMPAT_MODEL_IDX_0 "stm32-i2c-v2" +#define DT_N_S_soc_S_i2c_40008800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_40008800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_40008800_P_reg {1073776640 /* 0x40008800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_i2c_40008800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_reg_IDX_0 1073776640 +#define DT_N_S_soc_S_i2c_40008800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_i2c_40008800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_interrupts {24 /* 0x18 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2c_40008800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_interrupts_IDX_0 24 +#define DT_N_S_soc_S_i2c_40008800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2c_40008800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_clock_frequency 100000 +#define DT_N_S_soc_S_i2c_40008800_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_sq_size 4 +#define DT_N_S_soc_S_i2c_40008800_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_cq_size 4 +#define DT_N_S_soc_S_i2c_40008800_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_status "disabled" +#define DT_N_S_soc_S_i2c_40008800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2c_40008800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2c_40008800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2c_40008800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2c_40008800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2c_40008800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40008800, status, 0) +#define DT_N_S_soc_S_i2c_40008800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40008800, status, 0) +#define DT_N_S_soc_S_i2c_40008800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40008800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40008800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_40008800_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_compatible {"st,stm32-i2c-v2"} +#define DT_N_S_soc_S_i2c_40008800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_compatible_IDX_0 "st,stm32-i2c-v2" +#define DT_N_S_soc_S_i2c_40008800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-i2c-v2 +#define DT_N_S_soc_S_i2c_40008800_P_compatible_IDX_0_STRING_TOKEN st_stm32_i2c_v2 +#define DT_N_S_soc_S_i2c_40008800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_I2C_V2 +#define DT_N_S_soc_S_i2c_40008800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40008800, compatible, 0) +#define DT_N_S_soc_S_i2c_40008800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40008800, compatible, 0) +#define DT_N_S_soc_S_i2c_40008800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40008800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40008800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_40008800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names {"combined"} +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_IDX_0 "combined" +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_IDX_0_STRING_UNQUOTED combined +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_IDX_0_STRING_TOKEN combined +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN COMBINED +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40008800, interrupt_names, 0) +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40008800, interrupt_names, 0) +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40008800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40008800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_i2c_40008800_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_VAL_bits 8388608 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2c_40008800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_i2c_40008800, clocks, 0, bits) +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40008800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2c_40008800, clocks, 0, bits) +#define DT_N_S_soc_S_i2c_40008800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_40008800, clocks, 0) +#define DT_N_S_soc_S_i2c_40008800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_40008800, clocks, 0) +#define DT_N_S_soc_S_i2c_40008800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_40008800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_40008800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_40008800_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2c_40008800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_40008800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_40008800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_40008800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2c_40008800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /smbus3 + * + * Node identifier: DT_N_S_smbus3 + * + * Binding (compatible = st,stm32-smbus): + * $ZEPHYR_BASE\dts\bindings\smbus\st,stm32-smbus.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_smbus3_PATH "/smbus3" + +/* Node's name with unit-address: */ +#define DT_N_S_smbus3_FULL_NAME "smbus3" +#define DT_N_S_smbus3_FULL_NAME_UNQUOTED smbus3 +#define DT_N_S_smbus3_FULL_NAME_TOKEN smbus3 +#define DT_N_S_smbus3_FULL_NAME_UPPER_TOKEN SMBUS3 + +/* Node parent (/) identifier: */ +#define DT_N_S_smbus3_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_smbus3_CHILD_IDX 13 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_smbus3_NODELABEL_NUM 1 +#define DT_N_S_smbus3_FOREACH_NODELABEL(fn) fn(smbus3) +#define DT_N_S_smbus3_FOREACH_NODELABEL_VARGS(fn, ...) fn(smbus3, __VA_ARGS__) +#define DT_N_S_smbus3_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_smbus3_CHILD_NUM 0 +#define DT_N_S_smbus3_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_smbus3_FOREACH_CHILD(fn) +#define DT_N_S_smbus3_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_smbus3_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_smbus3_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_smbus3_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_smbus3_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_smbus3_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_smbus3_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_smbus3_HASH ZeVI1g__orT_bhXDEMbeNx9PIwW74xB8lEqisMROKVc + +/* Node's dependency ordinal: */ +#define DT_N_S_smbus3_ORD 17 +#define DT_N_S_smbus3_ORD_STR_SORTABLE 00017 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_smbus3_REQUIRES_ORDS \ + 0, /* / */ \ + 16, /* /soc/i2c@40008800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_smbus3_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_smbus3_EXISTS 1 +#define DT_N_INST_2_st_stm32_smbus DT_N_S_smbus3 +#define DT_N_NODELABEL_smbus3 DT_N_S_smbus3 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_smbus3_REG_NUM 0 +#define DT_N_S_smbus3_RANGES_NUM 0 +#define DT_N_S_smbus3_FOREACH_RANGE(fn) +#define DT_N_S_smbus3_IRQ_NUM 0 +#define DT_N_S_smbus3_IRQ_LEVEL 0 +#define DT_N_S_smbus3_COMPAT_MATCHES_st_stm32_smbus 1 +#define DT_N_S_smbus3_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_smbus3_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_smbus3_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_smbus3_COMPAT_MODEL_IDX_0 "stm32-smbus" +#define DT_N_S_smbus3_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_smbus3_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_smbus3_P_i2c DT_N_S_soc_S_i2c_40008800 +#define DT_N_S_smbus3_P_i2c_IDX_0 DT_N_S_soc_S_i2c_40008800 +#define DT_N_S_smbus3_P_i2c_IDX_0_PH DT_N_S_soc_S_i2c_40008800 +#define DT_N_S_smbus3_P_i2c_IDX_0_EXISTS 1 +#define DT_N_S_smbus3_P_i2c_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus3, i2c, 0) +#define DT_N_S_smbus3_P_i2c_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus3, i2c, 0) +#define DT_N_S_smbus3_P_i2c_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus3, i2c, 0, __VA_ARGS__) +#define DT_N_S_smbus3_P_i2c_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus3, i2c, 0, __VA_ARGS__) +#define DT_N_S_smbus3_P_i2c_LEN 1 +#define DT_N_S_smbus3_P_i2c_EXISTS 1 +#define DT_N_S_smbus3_P_status "disabled" +#define DT_N_S_smbus3_P_status_STRING_UNQUOTED disabled +#define DT_N_S_smbus3_P_status_STRING_TOKEN disabled +#define DT_N_S_smbus3_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_smbus3_P_status_IDX_0 "disabled" +#define DT_N_S_smbus3_P_status_IDX_0_EXISTS 1 +#define DT_N_S_smbus3_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_smbus3_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_smbus3_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_smbus3_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus3, status, 0) +#define DT_N_S_smbus3_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus3, status, 0) +#define DT_N_S_smbus3_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus3, status, 0, __VA_ARGS__) +#define DT_N_S_smbus3_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus3, status, 0, __VA_ARGS__) +#define DT_N_S_smbus3_P_status_LEN 1 +#define DT_N_S_smbus3_P_status_EXISTS 1 +#define DT_N_S_smbus3_P_compatible {"st,stm32-smbus"} +#define DT_N_S_smbus3_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_smbus3_P_compatible_IDX_0 "st,stm32-smbus" +#define DT_N_S_smbus3_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-smbus +#define DT_N_S_smbus3_P_compatible_IDX_0_STRING_TOKEN st_stm32_smbus +#define DT_N_S_smbus3_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_SMBUS +#define DT_N_S_smbus3_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_smbus3, compatible, 0) +#define DT_N_S_smbus3_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_smbus3, compatible, 0) +#define DT_N_S_smbus3_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_smbus3, compatible, 0, __VA_ARGS__) +#define DT_N_S_smbus3_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_smbus3, compatible, 0, __VA_ARGS__) +#define DT_N_S_smbus3_P_compatible_LEN 1 +#define DT_N_S_smbus3_P_compatible_EXISTS 1 +#define DT_N_S_smbus3_P_zephyr_deferred_init 0 +#define DT_N_S_smbus3_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_smbus3_P_wakeup_source 0 +#define DT_N_S_smbus3_P_wakeup_source_EXISTS 1 +#define DT_N_S_smbus3_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_smbus3_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /vbat + * + * Node identifier: DT_N_S_vbat + * + * Binding (compatible = st,stm32-vbat): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-vbat.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_vbat_PATH "/vbat" + +/* Node's name with unit-address: */ +#define DT_N_S_vbat_FULL_NAME "vbat" +#define DT_N_S_vbat_FULL_NAME_UNQUOTED vbat +#define DT_N_S_vbat_FULL_NAME_TOKEN vbat +#define DT_N_S_vbat_FULL_NAME_UPPER_TOKEN VBAT + +/* Node parent (/) identifier: */ +#define DT_N_S_vbat_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_vbat_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_vbat_NODELABEL_NUM 1 +#define DT_N_S_vbat_FOREACH_NODELABEL(fn) fn(vbat) +#define DT_N_S_vbat_FOREACH_NODELABEL_VARGS(fn, ...) fn(vbat, __VA_ARGS__) +#define DT_N_S_vbat_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_vbat_CHILD_NUM 0 +#define DT_N_S_vbat_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_vbat_FOREACH_CHILD(fn) +#define DT_N_S_vbat_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_vbat_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_vbat_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_vbat_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_vbat_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_vbat_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_vbat_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_vbat_HASH 6jTjjWCiokAcWwHDg9DIiUBaK7_R_tkCJ6unpENFBIY + +/* Node's dependency ordinal: */ +#define DT_N_S_vbat_ORD 18 +#define DT_N_S_vbat_ORD_STR_SORTABLE 00018 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_vbat_REQUIRES_ORDS \ + 0, /* / */ \ + 9, /* /soc/adc@40012400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_vbat_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_vbat_EXISTS 1 +#define DT_N_ALIAS_volt_sensor1 DT_N_S_vbat +#define DT_N_INST_0_st_stm32_vbat DT_N_S_vbat +#define DT_N_NODELABEL_vbat DT_N_S_vbat + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_vbat_REG_NUM 0 +#define DT_N_S_vbat_RANGES_NUM 0 +#define DT_N_S_vbat_FOREACH_RANGE(fn) +#define DT_N_S_vbat_IRQ_NUM 0 +#define DT_N_S_vbat_IRQ_LEVEL 0 +#define DT_N_S_vbat_COMPAT_MATCHES_st_stm32_vbat 1 +#define DT_N_S_vbat_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_vbat_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_vbat_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_vbat_COMPAT_MODEL_IDX_0 "stm32-vbat" +#define DT_N_S_vbat_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_vbat_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_vbat_P_io_channels_IDX_0_EXISTS 1 +#define DT_N_S_vbat_P_io_channels_IDX_0_PH DT_N_S_soc_S_adc_40012400 +#define DT_N_S_vbat_P_io_channels_IDX_0_VAL_input 14 +#define DT_N_S_vbat_P_io_channels_IDX_0_VAL_input_EXISTS 1 +#define DT_N_S_vbat_P_io_channels_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_vbat, io_channels, 0, input) +#define DT_N_S_vbat_P_io_channels_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_vbat, io_channels, 0, input) +#define DT_N_S_vbat_P_io_channels_IDX_0_NUM_CELLS 1 +#define DT_N_S_vbat_P_io_channels_FOREACH_PROP_ELEM(fn) fn(DT_N_S_vbat, io_channels, 0) +#define DT_N_S_vbat_P_io_channels_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_vbat, io_channels, 0) +#define DT_N_S_vbat_P_io_channels_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_vbat, io_channels, 0, __VA_ARGS__) +#define DT_N_S_vbat_P_io_channels_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_vbat, io_channels, 0, __VA_ARGS__) +#define DT_N_S_vbat_P_io_channels_LEN 1 +#define DT_N_S_vbat_P_io_channels_EXISTS 1 +#define DT_N_S_vbat_P_ratio 3 +#define DT_N_S_vbat_P_ratio_EXISTS 1 +#define DT_N_S_vbat_P_status "okay" +#define DT_N_S_vbat_P_status_STRING_UNQUOTED okay +#define DT_N_S_vbat_P_status_STRING_TOKEN okay +#define DT_N_S_vbat_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_vbat_P_status_IDX_0 "okay" +#define DT_N_S_vbat_P_status_IDX_0_EXISTS 1 +#define DT_N_S_vbat_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_vbat_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_vbat_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_vbat_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_vbat, status, 0) +#define DT_N_S_vbat_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_vbat, status, 0) +#define DT_N_S_vbat_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_vbat, status, 0, __VA_ARGS__) +#define DT_N_S_vbat_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_vbat, status, 0, __VA_ARGS__) +#define DT_N_S_vbat_P_status_LEN 1 +#define DT_N_S_vbat_P_status_EXISTS 1 +#define DT_N_S_vbat_P_compatible {"st,stm32-vbat"} +#define DT_N_S_vbat_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_vbat_P_compatible_IDX_0 "st,stm32-vbat" +#define DT_N_S_vbat_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-vbat +#define DT_N_S_vbat_P_compatible_IDX_0_STRING_TOKEN st_stm32_vbat +#define DT_N_S_vbat_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_VBAT +#define DT_N_S_vbat_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_vbat, compatible, 0) +#define DT_N_S_vbat_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_vbat, compatible, 0) +#define DT_N_S_vbat_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_vbat, compatible, 0, __VA_ARGS__) +#define DT_N_S_vbat_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_vbat, compatible, 0, __VA_ARGS__) +#define DT_N_S_vbat_P_compatible_LEN 1 +#define DT_N_S_vbat_P_compatible_EXISTS 1 +#define DT_N_S_vbat_P_zephyr_deferred_init 0 +#define DT_N_S_vbat_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_vbat_P_wakeup_source 0 +#define DT_N_S_vbat_P_wakeup_source_EXISTS 1 +#define DT_N_S_vbat_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_vbat_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /vref + * + * Node identifier: DT_N_S_vref + * + * Binding (compatible = st,stm32-vref): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-vref.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_vref_PATH "/vref" + +/* Node's name with unit-address: */ +#define DT_N_S_vref_FULL_NAME "vref" +#define DT_N_S_vref_FULL_NAME_UNQUOTED vref +#define DT_N_S_vref_FULL_NAME_TOKEN vref +#define DT_N_S_vref_FULL_NAME_UPPER_TOKEN VREF + +/* Node parent (/) identifier: */ +#define DT_N_S_vref_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_vref_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_vref_NODELABEL_NUM 1 +#define DT_N_S_vref_FOREACH_NODELABEL(fn) fn(vref) +#define DT_N_S_vref_FOREACH_NODELABEL_VARGS(fn, ...) fn(vref, __VA_ARGS__) +#define DT_N_S_vref_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_vref_CHILD_NUM 0 +#define DT_N_S_vref_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_vref_FOREACH_CHILD(fn) +#define DT_N_S_vref_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_vref_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_vref_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_vref_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_vref_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_vref_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_vref_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_vref_HASH _KQ_hQT8vlL_HGgSo8B0PN_M_dmG5lMZ2C1aGmWYFog + +/* Node's dependency ordinal: */ +#define DT_N_S_vref_ORD 19 +#define DT_N_S_vref_ORD_STR_SORTABLE 00019 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_vref_REQUIRES_ORDS \ + 0, /* / */ \ + 9, /* /soc/adc@40012400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_vref_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_vref_EXISTS 1 +#define DT_N_ALIAS_volt_sensor0 DT_N_S_vref +#define DT_N_INST_0_st_stm32_vref DT_N_S_vref +#define DT_N_NODELABEL_vref DT_N_S_vref + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_vref_REG_NUM 0 +#define DT_N_S_vref_RANGES_NUM 0 +#define DT_N_S_vref_FOREACH_RANGE(fn) +#define DT_N_S_vref_IRQ_NUM 0 +#define DT_N_S_vref_IRQ_LEVEL 0 +#define DT_N_S_vref_COMPAT_MATCHES_st_stm32_vref 1 +#define DT_N_S_vref_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_vref_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_vref_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_vref_COMPAT_MODEL_IDX_0 "stm32-vref" +#define DT_N_S_vref_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_vref_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_vref_P_vrefint_cal_addr 536835498 +#define DT_N_S_vref_P_vrefint_cal_addr_EXISTS 1 +#define DT_N_S_vref_P_vrefint_cal_mv 3000 +#define DT_N_S_vref_P_vrefint_cal_mv_EXISTS 1 +#define DT_N_S_vref_P_vrefint_cal_resolution 12 +#define DT_N_S_vref_P_vrefint_cal_resolution_IDX_0_ENUM_IDX 0 +#define DT_N_S_vref_P_vrefint_cal_resolution_IDX_0_EXISTS 1 +#define DT_N_S_vref_P_vrefint_cal_resolution_IDX_0_ENUM_VAL_12_EXISTS 1 +#define DT_N_S_vref_P_vrefint_cal_resolution_ENUM_VAL_12_EXISTS 1 +#define DT_N_S_vref_P_vrefint_cal_resolution_EXISTS 1 +#define DT_N_S_vref_P_status "okay" +#define DT_N_S_vref_P_status_STRING_UNQUOTED okay +#define DT_N_S_vref_P_status_STRING_TOKEN okay +#define DT_N_S_vref_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_vref_P_status_IDX_0 "okay" +#define DT_N_S_vref_P_status_IDX_0_EXISTS 1 +#define DT_N_S_vref_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_vref_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_vref_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_vref_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_vref, status, 0) +#define DT_N_S_vref_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_vref, status, 0) +#define DT_N_S_vref_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_vref, status, 0, __VA_ARGS__) +#define DT_N_S_vref_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_vref, status, 0, __VA_ARGS__) +#define DT_N_S_vref_P_status_LEN 1 +#define DT_N_S_vref_P_status_EXISTS 1 +#define DT_N_S_vref_P_compatible {"st,stm32-vref"} +#define DT_N_S_vref_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_vref_P_compatible_IDX_0 "st,stm32-vref" +#define DT_N_S_vref_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-vref +#define DT_N_S_vref_P_compatible_IDX_0_STRING_TOKEN st_stm32_vref +#define DT_N_S_vref_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_VREF +#define DT_N_S_vref_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_vref, compatible, 0) +#define DT_N_S_vref_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_vref, compatible, 0) +#define DT_N_S_vref_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_vref, compatible, 0, __VA_ARGS__) +#define DT_N_S_vref_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_vref, compatible, 0, __VA_ARGS__) +#define DT_N_S_vref_P_compatible_LEN 1 +#define DT_N_S_vref_P_compatible_EXISTS 1 +#define DT_N_S_vref_P_io_channels_IDX_0_EXISTS 1 +#define DT_N_S_vref_P_io_channels_IDX_0_PH DT_N_S_soc_S_adc_40012400 +#define DT_N_S_vref_P_io_channels_IDX_0_VAL_input 13 +#define DT_N_S_vref_P_io_channels_IDX_0_VAL_input_EXISTS 1 +#define DT_N_S_vref_P_io_channels_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_vref, io_channels, 0, input) +#define DT_N_S_vref_P_io_channels_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_vref, io_channels, 0, input) +#define DT_N_S_vref_P_io_channels_IDX_0_NUM_CELLS 1 +#define DT_N_S_vref_P_io_channels_FOREACH_PROP_ELEM(fn) fn(DT_N_S_vref, io_channels, 0) +#define DT_N_S_vref_P_io_channels_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_vref, io_channels, 0) +#define DT_N_S_vref_P_io_channels_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_vref, io_channels, 0, __VA_ARGS__) +#define DT_N_S_vref_P_io_channels_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_vref, io_channels, 0, __VA_ARGS__) +#define DT_N_S_vref_P_io_channels_LEN 1 +#define DT_N_S_vref_P_io_channels_EXISTS 1 +#define DT_N_S_vref_P_zephyr_deferred_init 0 +#define DT_N_S_vref_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_vref_P_wakeup_source 0 +#define DT_N_S_vref_P_wakeup_source_EXISTS 1 +#define DT_N_S_vref_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_vref_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /clocks/clk-hse + * + * Node identifier: DT_N_S_clocks_S_clk_hse + * + * Binding (compatible = st,stm32-hse-clock): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32-hse-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clocks_S_clk_hse_PATH "/clocks/clk-hse" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_S_clk_hse_FULL_NAME "clk-hse" +#define DT_N_S_clocks_S_clk_hse_FULL_NAME_UNQUOTED clk-hse +#define DT_N_S_clocks_S_clk_hse_FULL_NAME_TOKEN clk_hse +#define DT_N_S_clocks_S_clk_hse_FULL_NAME_UPPER_TOKEN CLK_HSE + +/* Node parent (/clocks) identifier: */ +#define DT_N_S_clocks_S_clk_hse_PARENT DT_N_S_clocks + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_S_clk_hse_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_S_clk_hse_NODELABEL_NUM 1 +#define DT_N_S_clocks_S_clk_hse_FOREACH_NODELABEL(fn) fn(clk_hse) +#define DT_N_S_clocks_S_clk_hse_FOREACH_NODELABEL_VARGS(fn, ...) fn(clk_hse, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hse_FOREACH_ANCESTOR(fn) fn(DT_N_S_clocks) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_S_clk_hse_CHILD_NUM 0 +#define DT_N_S_clocks_S_clk_hse_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD(fn) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_hse_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clocks_S_clk_hse_HASH CHg50lhzojbh1fYYqBOhbjZFQvgn2_C8kiV4EgV0j3Y + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_S_clk_hse_ORD 20 +#define DT_N_S_clocks_S_clk_hse_ORD_STR_SORTABLE 00020 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_S_clk_hse_REQUIRES_ORDS \ + 5, /* /clocks */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_S_clk_hse_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_S_clk_hse_EXISTS 1 +#define DT_N_INST_0_st_stm32_hse_clock DT_N_S_clocks_S_clk_hse +#define DT_N_NODELABEL_clk_hse DT_N_S_clocks_S_clk_hse + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_S_clk_hse_REG_NUM 0 +#define DT_N_S_clocks_S_clk_hse_RANGES_NUM 0 +#define DT_N_S_clocks_S_clk_hse_FOREACH_RANGE(fn) +#define DT_N_S_clocks_S_clk_hse_IRQ_NUM 0 +#define DT_N_S_clocks_S_clk_hse_IRQ_LEVEL 0 +#define DT_N_S_clocks_S_clk_hse_COMPAT_MATCHES_st_stm32_hse_clock 1 +#define DT_N_S_clocks_S_clk_hse_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_clocks_S_clk_hse_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_COMPAT_MODEL_IDX_0 "stm32-hse-clock" +#define DT_N_S_clocks_S_clk_hse_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_S_clk_hse_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clocks_S_clk_hse_P_hse_bypass 0 +#define DT_N_S_clocks_S_clk_hse_P_hse_bypass_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_css_enabled 0 +#define DT_N_S_clocks_S_clk_hse_P_css_enabled_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_status "disabled" +#define DT_N_S_clocks_S_clk_hse_P_status_STRING_UNQUOTED disabled +#define DT_N_S_clocks_S_clk_hse_P_status_STRING_TOKEN disabled +#define DT_N_S_clocks_S_clk_hse_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_clocks_S_clk_hse_P_status_IDX_0 "disabled" +#define DT_N_S_clocks_S_clk_hse_P_status_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_clocks_S_clk_hse_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_hse, status, 0) +#define DT_N_S_clocks_S_clk_hse_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hse, status, 0) +#define DT_N_S_clocks_S_clk_hse_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hse, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hse_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hse, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hse_P_status_LEN 1 +#define DT_N_S_clocks_S_clk_hse_P_status_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_compatible {"st,stm32-hse-clock"} +#define DT_N_S_clocks_S_clk_hse_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_compatible_IDX_0 "st,stm32-hse-clock" +#define DT_N_S_clocks_S_clk_hse_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-hse-clock +#define DT_N_S_clocks_S_clk_hse_P_compatible_IDX_0_STRING_TOKEN st_stm32_hse_clock +#define DT_N_S_clocks_S_clk_hse_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_HSE_CLOCK +#define DT_N_S_clocks_S_clk_hse_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_hse, compatible, 0) +#define DT_N_S_clocks_S_clk_hse_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hse, compatible, 0) +#define DT_N_S_clocks_S_clk_hse_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hse, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hse_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hse, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hse_P_compatible_LEN 1 +#define DT_N_S_clocks_S_clk_hse_P_compatible_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_zephyr_deferred_init 0 +#define DT_N_S_clocks_S_clk_hse_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_wakeup_source 0 +#define DT_N_S_clocks_S_clk_hse_P_wakeup_source_EXISTS 1 +#define DT_N_S_clocks_S_clk_hse_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_clocks_S_clk_hse_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /clocks/clk-hsi48 + * + * Node identifier: DT_N_S_clocks_S_clk_hsi48 + * + * Binding (compatible = st,stm32-hsi48-clock): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32-hsi48-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clocks_S_clk_hsi48_PATH "/clocks/clk-hsi48" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_S_clk_hsi48_FULL_NAME "clk-hsi48" +#define DT_N_S_clocks_S_clk_hsi48_FULL_NAME_UNQUOTED clk-hsi48 +#define DT_N_S_clocks_S_clk_hsi48_FULL_NAME_TOKEN clk_hsi48 +#define DT_N_S_clocks_S_clk_hsi48_FULL_NAME_UPPER_TOKEN CLK_HSI48 + +/* Node parent (/clocks) identifier: */ +#define DT_N_S_clocks_S_clk_hsi48_PARENT DT_N_S_clocks + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_S_clk_hsi48_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_S_clk_hsi48_NODELABEL_NUM 1 +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_NODELABEL(fn) fn(clk_hsi48) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_NODELABEL_VARGS(fn, ...) fn(clk_hsi48, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_ANCESTOR(fn) fn(DT_N_S_clocks) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_S_clk_hsi48_CHILD_NUM 0 +#define DT_N_S_clocks_S_clk_hsi48_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD(fn) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clocks_S_clk_hsi48_HASH m4q2NUiXYm_f1RVl9VGtz8iGJxJSrtVw_lCXFQUVjsw + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_S_clk_hsi48_ORD 21 +#define DT_N_S_clocks_S_clk_hsi48_ORD_STR_SORTABLE 00021 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_S_clk_hsi48_REQUIRES_ORDS \ + 5, /* /clocks */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_S_clk_hsi48_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_S_clk_hsi48_EXISTS 1 +#define DT_N_INST_0_st_stm32_hsi48_clock DT_N_S_clocks_S_clk_hsi48 +#define DT_N_NODELABEL_clk_hsi48 DT_N_S_clocks_S_clk_hsi48 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_S_clk_hsi48_REG_NUM 0 +#define DT_N_S_clocks_S_clk_hsi48_RANGES_NUM 0 +#define DT_N_S_clocks_S_clk_hsi48_FOREACH_RANGE(fn) +#define DT_N_S_clocks_S_clk_hsi48_IRQ_NUM 0 +#define DT_N_S_clocks_S_clk_hsi48_IRQ_LEVEL 0 +#define DT_N_S_clocks_S_clk_hsi48_COMPAT_MATCHES_st_stm32_hsi48_clock 1 +#define DT_N_S_clocks_S_clk_hsi48_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_clocks_S_clk_hsi48_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_COMPAT_MODEL_IDX_0 "stm32-hsi48-clock" +#define DT_N_S_clocks_S_clk_hsi48_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_S_clk_hsi48_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clocks_S_clk_hsi48_P_crs_usb_sof 1 +#define DT_N_S_clocks_S_clk_hsi48_P_crs_usb_sof_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_clock_frequency 48000000 +#define DT_N_S_clocks_S_clk_hsi48_P_clock_frequency_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_status "okay" +#define DT_N_S_clocks_S_clk_hsi48_P_status_STRING_UNQUOTED okay +#define DT_N_S_clocks_S_clk_hsi48_P_status_STRING_TOKEN okay +#define DT_N_S_clocks_S_clk_hsi48_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_clocks_S_clk_hsi48_P_status_IDX_0 "okay" +#define DT_N_S_clocks_S_clk_hsi48_P_status_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_clocks_S_clk_hsi48_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_hsi48, status, 0) +#define DT_N_S_clocks_S_clk_hsi48_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hsi48, status, 0) +#define DT_N_S_clocks_S_clk_hsi48_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hsi48, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi48_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hsi48, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi48_P_status_LEN 1 +#define DT_N_S_clocks_S_clk_hsi48_P_status_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_compatible {"st,stm32-hsi48-clock"} +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_IDX_0 "st,stm32-hsi48-clock" +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-hsi48-clock +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_IDX_0_STRING_TOKEN st_stm32_hsi48_clock +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_HSI48_CLOCK +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_hsi48, compatible, 0) +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_hsi48, compatible, 0) +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_hsi48, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_hsi48, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_LEN 1 +#define DT_N_S_clocks_S_clk_hsi48_P_compatible_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_zephyr_deferred_init 0 +#define DT_N_S_clocks_S_clk_hsi48_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_wakeup_source 0 +#define DT_N_S_clocks_S_clk_hsi48_P_wakeup_source_EXISTS 1 +#define DT_N_S_clocks_S_clk_hsi48_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_clocks_S_clk_hsi48_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /clocks/clk-lse + * + * Node identifier: DT_N_S_clocks_S_clk_lse + * + * Binding (compatible = st,stm32-lse-clock): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32-lse-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clocks_S_clk_lse_PATH "/clocks/clk-lse" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_S_clk_lse_FULL_NAME "clk-lse" +#define DT_N_S_clocks_S_clk_lse_FULL_NAME_UNQUOTED clk-lse +#define DT_N_S_clocks_S_clk_lse_FULL_NAME_TOKEN clk_lse +#define DT_N_S_clocks_S_clk_lse_FULL_NAME_UPPER_TOKEN CLK_LSE + +/* Node parent (/clocks) identifier: */ +#define DT_N_S_clocks_S_clk_lse_PARENT DT_N_S_clocks + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_S_clk_lse_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_S_clk_lse_NODELABEL_NUM 1 +#define DT_N_S_clocks_S_clk_lse_FOREACH_NODELABEL(fn) fn(clk_lse) +#define DT_N_S_clocks_S_clk_lse_FOREACH_NODELABEL_VARGS(fn, ...) fn(clk_lse, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lse_FOREACH_ANCESTOR(fn) fn(DT_N_S_clocks) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_S_clk_lse_CHILD_NUM 0 +#define DT_N_S_clocks_S_clk_lse_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD(fn) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_lse_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clocks_S_clk_lse_HASH RRqOX2XdydrKvwOwHO0Kh3mPfPtUsDJrDySCwF316Ek + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_S_clk_lse_ORD 22 +#define DT_N_S_clocks_S_clk_lse_ORD_STR_SORTABLE 00022 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_S_clk_lse_REQUIRES_ORDS \ + 5, /* /clocks */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_S_clk_lse_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_S_clk_lse_EXISTS 1 +#define DT_N_INST_0_st_stm32_lse_clock DT_N_S_clocks_S_clk_lse +#define DT_N_NODELABEL_clk_lse DT_N_S_clocks_S_clk_lse + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_S_clk_lse_REG_NUM 0 +#define DT_N_S_clocks_S_clk_lse_RANGES_NUM 0 +#define DT_N_S_clocks_S_clk_lse_FOREACH_RANGE(fn) +#define DT_N_S_clocks_S_clk_lse_IRQ_NUM 0 +#define DT_N_S_clocks_S_clk_lse_IRQ_LEVEL 0 +#define DT_N_S_clocks_S_clk_lse_COMPAT_MATCHES_st_stm32_lse_clock 1 +#define DT_N_S_clocks_S_clk_lse_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_clocks_S_clk_lse_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_COMPAT_MODEL_IDX_0 "stm32-lse-clock" +#define DT_N_S_clocks_S_clk_lse_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_S_clk_lse_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clocks_S_clk_lse_P_driving_capability 0 +#define DT_N_S_clocks_S_clk_lse_P_driving_capability_IDX_0_ENUM_IDX 0 +#define DT_N_S_clocks_S_clk_lse_P_driving_capability_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_driving_capability_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_driving_capability_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_driving_capability_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_lse_bypass 0 +#define DT_N_S_clocks_S_clk_lse_P_lse_bypass_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_clock_frequency 32768 +#define DT_N_S_clocks_S_clk_lse_P_clock_frequency_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_status "disabled" +#define DT_N_S_clocks_S_clk_lse_P_status_STRING_UNQUOTED disabled +#define DT_N_S_clocks_S_clk_lse_P_status_STRING_TOKEN disabled +#define DT_N_S_clocks_S_clk_lse_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_clocks_S_clk_lse_P_status_IDX_0 "disabled" +#define DT_N_S_clocks_S_clk_lse_P_status_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_clocks_S_clk_lse_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_lse, status, 0) +#define DT_N_S_clocks_S_clk_lse_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_lse, status, 0) +#define DT_N_S_clocks_S_clk_lse_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_lse, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lse_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_lse, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lse_P_status_LEN 1 +#define DT_N_S_clocks_S_clk_lse_P_status_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_compatible {"st,stm32-lse-clock"} +#define DT_N_S_clocks_S_clk_lse_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_compatible_IDX_0 "st,stm32-lse-clock" +#define DT_N_S_clocks_S_clk_lse_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-lse-clock +#define DT_N_S_clocks_S_clk_lse_P_compatible_IDX_0_STRING_TOKEN st_stm32_lse_clock +#define DT_N_S_clocks_S_clk_lse_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_LSE_CLOCK +#define DT_N_S_clocks_S_clk_lse_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_lse, compatible, 0) +#define DT_N_S_clocks_S_clk_lse_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_lse, compatible, 0) +#define DT_N_S_clocks_S_clk_lse_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_lse, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lse_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_lse, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lse_P_compatible_LEN 1 +#define DT_N_S_clocks_S_clk_lse_P_compatible_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_zephyr_deferred_init 0 +#define DT_N_S_clocks_S_clk_lse_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_wakeup_source 0 +#define DT_N_S_clocks_S_clk_lse_P_wakeup_source_EXISTS 1 +#define DT_N_S_clocks_S_clk_lse_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_clocks_S_clk_lse_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /clocks/clk-lsi + * + * Node identifier: DT_N_S_clocks_S_clk_lsi + * + * Binding (compatible = fixed-clock): + * $ZEPHYR_BASE\dts\bindings\clock\fixed-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clocks_S_clk_lsi_PATH "/clocks/clk-lsi" + +/* Node's name with unit-address: */ +#define DT_N_S_clocks_S_clk_lsi_FULL_NAME "clk-lsi" +#define DT_N_S_clocks_S_clk_lsi_FULL_NAME_UNQUOTED clk-lsi +#define DT_N_S_clocks_S_clk_lsi_FULL_NAME_TOKEN clk_lsi +#define DT_N_S_clocks_S_clk_lsi_FULL_NAME_UPPER_TOKEN CLK_LSI + +/* Node parent (/clocks) identifier: */ +#define DT_N_S_clocks_S_clk_lsi_PARENT DT_N_S_clocks + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clocks_S_clk_lsi_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clocks_S_clk_lsi_NODELABEL_NUM 1 +#define DT_N_S_clocks_S_clk_lsi_FOREACH_NODELABEL(fn) fn(clk_lsi) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_NODELABEL_VARGS(fn, ...) fn(clk_lsi, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_ANCESTOR(fn) fn(DT_N_S_clocks) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clocks_S_clk_lsi_CHILD_NUM 0 +#define DT_N_S_clocks_S_clk_lsi_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD(fn) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clocks_S_clk_lsi_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clocks_S_clk_lsi_HASH y39tlAqwOoFHfznEDn2ZnvWSfYGNtJJvOJBnTUmFguY + +/* Node's dependency ordinal: */ +#define DT_N_S_clocks_S_clk_lsi_ORD 23 +#define DT_N_S_clocks_S_clk_lsi_ORD_STR_SORTABLE 00023 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clocks_S_clk_lsi_REQUIRES_ORDS \ + 5, /* /clocks */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clocks_S_clk_lsi_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clocks_S_clk_lsi_EXISTS 1 +#define DT_N_INST_0_fixed_clock DT_N_S_clocks_S_clk_lsi +#define DT_N_NODELABEL_clk_lsi DT_N_S_clocks_S_clk_lsi + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clocks_S_clk_lsi_REG_NUM 0 +#define DT_N_S_clocks_S_clk_lsi_RANGES_NUM 0 +#define DT_N_S_clocks_S_clk_lsi_FOREACH_RANGE(fn) +#define DT_N_S_clocks_S_clk_lsi_IRQ_NUM 0 +#define DT_N_S_clocks_S_clk_lsi_IRQ_LEVEL 0 +#define DT_N_S_clocks_S_clk_lsi_COMPAT_MATCHES_fixed_clock 1 +#define DT_N_S_clocks_S_clk_lsi_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clocks_S_clk_lsi_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clocks_S_clk_lsi_P_clock_frequency 32000 +#define DT_N_S_clocks_S_clk_lsi_P_clock_frequency_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_status "okay" +#define DT_N_S_clocks_S_clk_lsi_P_status_STRING_UNQUOTED okay +#define DT_N_S_clocks_S_clk_lsi_P_status_STRING_TOKEN okay +#define DT_N_S_clocks_S_clk_lsi_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_clocks_S_clk_lsi_P_status_IDX_0 "okay" +#define DT_N_S_clocks_S_clk_lsi_P_status_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_clocks_S_clk_lsi_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_lsi, status, 0) +#define DT_N_S_clocks_S_clk_lsi_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_lsi, status, 0) +#define DT_N_S_clocks_S_clk_lsi_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_lsi, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lsi_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_lsi, status, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lsi_P_status_LEN 1 +#define DT_N_S_clocks_S_clk_lsi_P_status_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_compatible {"fixed-clock"} +#define DT_N_S_clocks_S_clk_lsi_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_compatible_IDX_0 "fixed-clock" +#define DT_N_S_clocks_S_clk_lsi_P_compatible_IDX_0_STRING_UNQUOTED fixed-clock +#define DT_N_S_clocks_S_clk_lsi_P_compatible_IDX_0_STRING_TOKEN fixed_clock +#define DT_N_S_clocks_S_clk_lsi_P_compatible_IDX_0_STRING_UPPER_TOKEN FIXED_CLOCK +#define DT_N_S_clocks_S_clk_lsi_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_clocks_S_clk_lsi, compatible, 0) +#define DT_N_S_clocks_S_clk_lsi_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_clocks_S_clk_lsi, compatible, 0) +#define DT_N_S_clocks_S_clk_lsi_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_clocks_S_clk_lsi, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lsi_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_clocks_S_clk_lsi, compatible, 0, __VA_ARGS__) +#define DT_N_S_clocks_S_clk_lsi_P_compatible_LEN 1 +#define DT_N_S_clocks_S_clk_lsi_P_compatible_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_zephyr_deferred_init 0 +#define DT_N_S_clocks_S_clk_lsi_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_wakeup_source 0 +#define DT_N_S_clocks_S_clk_lsi_P_wakeup_source_EXISTS 1 +#define DT_N_S_clocks_S_clk_lsi_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_clocks_S_clk_lsi_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /cpus + * + * Node identifier: DT_N_S_cpus + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_PATH "/cpus" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_FULL_NAME "cpus" +#define DT_N_S_cpus_FULL_NAME_UNQUOTED cpus +#define DT_N_S_cpus_FULL_NAME_TOKEN cpus +#define DT_N_S_cpus_FULL_NAME_UPPER_TOKEN CPUS + +/* Node parent (/) identifier: */ +#define DT_N_S_cpus_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_NODELABEL_NUM 0 +#define DT_N_S_cpus_FOREACH_NODELABEL(fn) +#define DT_N_S_cpus_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_cpus_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_CHILD_NUM 2 +#define DT_N_S_cpus_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_cpus_FOREACH_CHILD(fn) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_cpus_HASH iL3XRGZVvvtpNJqKV0_jvtuXF7m6kgky4nI2ifizwdg + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_ORD 24 +#define DT_N_S_cpus_ORD_STR_SORTABLE 00024 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_SUPPORTS_ORDS \ + 25, /* /cpus/power-states */ \ + 28, /* /cpus/cpu@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_REG_NUM 0 +#define DT_N_S_cpus_RANGES_NUM 0 +#define DT_N_S_cpus_FOREACH_RANGE(fn) +#define DT_N_S_cpus_IRQ_NUM 0 +#define DT_N_S_cpus_IRQ_LEVEL 0 +#define DT_N_S_cpus_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /cpus/power-states + * + * Node identifier: DT_N_S_cpus_S_power_states + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_power_states_PATH "/cpus/power-states" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_power_states_FULL_NAME "power-states" +#define DT_N_S_cpus_S_power_states_FULL_NAME_UNQUOTED power-states +#define DT_N_S_cpus_S_power_states_FULL_NAME_TOKEN power_states +#define DT_N_S_cpus_S_power_states_FULL_NAME_UPPER_TOKEN POWER_STATES + +/* Node parent (/cpus) identifier: */ +#define DT_N_S_cpus_S_power_states_PARENT DT_N_S_cpus + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_power_states_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_power_states_NODELABEL_NUM 0 +#define DT_N_S_cpus_S_power_states_FOREACH_NODELABEL(fn) +#define DT_N_S_cpus_S_power_states_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_power_states_CHILD_NUM 2 +#define DT_N_S_cpus_S_power_states_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD(fn) fn(DT_N_S_cpus_S_power_states_S_state0) fn(DT_N_S_cpus_S_power_states_S_state1) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_state0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states_S_state1) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_cpus_S_power_states_S_state0) fn(DT_N_S_cpus_S_power_states_S_state1) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_state0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states_S_state1) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_cpus_S_power_states_HASH qMexuiO6C_SHOSQQCC_3by3odasm1z5VRx723zYLVgY + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_power_states_ORD 25 +#define DT_N_S_cpus_S_power_states_ORD_STR_SORTABLE 00025 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_power_states_REQUIRES_ORDS \ + 24, /* /cpus */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_power_states_SUPPORTS_ORDS \ + 26, /* /cpus/power-states/state0 */ \ + 27, /* /cpus/power-states/state1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_power_states_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_power_states_REG_NUM 0 +#define DT_N_S_cpus_S_power_states_RANGES_NUM 0 +#define DT_N_S_cpus_S_power_states_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_power_states_IRQ_NUM 0 +#define DT_N_S_cpus_S_power_states_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_power_states_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_power_states_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /cpus/power-states/state0 + * + * Node identifier: DT_N_S_cpus_S_power_states_S_state0 + * + * Binding (compatible = zephyr,power-state): + * $ZEPHYR_BASE\dts\bindings\power\zephyr,power-state.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_power_states_S_state0_PATH "/cpus/power-states/state0" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_power_states_S_state0_FULL_NAME "state0" +#define DT_N_S_cpus_S_power_states_S_state0_FULL_NAME_UNQUOTED state0 +#define DT_N_S_cpus_S_power_states_S_state0_FULL_NAME_TOKEN state0 +#define DT_N_S_cpus_S_power_states_S_state0_FULL_NAME_UPPER_TOKEN STATE0 + +/* Node parent (/cpus/power-states) identifier: */ +#define DT_N_S_cpus_S_power_states_S_state0_PARENT DT_N_S_cpus_S_power_states + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_power_states_S_state0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_power_states_S_state0_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_NODELABEL(fn) fn(stop0) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_NODELABEL_VARGS(fn, ...) fn(stop0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_power_states_S_state0_CHILD_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_power_states_S_state0_HASH 7gm1YoDC64qAH_XbCVglhJihgirY8BmBcJS3HmCqr7E + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_power_states_S_state0_ORD 26 +#define DT_N_S_cpus_S_power_states_S_state0_ORD_STR_SORTABLE 00026 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_power_states_S_state0_REQUIRES_ORDS \ + 25, /* /cpus/power-states */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_power_states_S_state0_SUPPORTS_ORDS \ + 28, /* /cpus/cpu@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_power_states_S_state0_EXISTS 1 +#define DT_N_INST_0_zephyr_power_state DT_N_S_cpus_S_power_states_S_state0 +#define DT_N_NODELABEL_stop0 DT_N_S_cpus_S_power_states_S_state0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_power_states_S_state0_REG_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state0_RANGES_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state0_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_power_states_S_state0_IRQ_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state0_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_power_states_S_state0_COMPAT_MATCHES_zephyr_power_state 1 +#define DT_N_S_cpus_S_power_states_S_state0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_COMPAT_VENDOR_IDX_0 "The Zephyr Project" +#define DT_N_S_cpus_S_power_states_S_state0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_COMPAT_MODEL_IDX_0 "power-state" +#define DT_N_S_cpus_S_power_states_S_state0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_power_states_S_state0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name "suspend-to-idle" +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_STRING_UNQUOTED suspend-to-idle +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_STRING_TOKEN suspend_to_idle +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_STRING_UPPER_TOKEN SUSPEND_TO_IDLE +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_IDX_0 "suspend-to-idle" +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_IDX_0_ENUM_IDX 2 +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_IDX_0_ENUM_VAL_suspend_to_idle_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_ENUM_VAL_suspend_to_idle_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_power_states_S_state0, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_state0, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_state0, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_state0, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_LEN 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_power_state_name_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_substate_id 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_substate_id_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_min_residency_us 20 +#define DT_N_S_cpus_S_power_states_S_state0_P_min_residency_us_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state0_P_zephyr_pm_device_disabled 0 +#define DT_N_S_cpus_S_power_states_S_state0_P_zephyr_pm_device_disabled_EXISTS 1 + +/* + * Devicetree node: /cpus/power-states/state1 + * + * Node identifier: DT_N_S_cpus_S_power_states_S_state1 + * + * Binding (compatible = zephyr,power-state): + * $ZEPHYR_BASE\dts\bindings\power\zephyr,power-state.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_power_states_S_state1_PATH "/cpus/power-states/state1" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_power_states_S_state1_FULL_NAME "state1" +#define DT_N_S_cpus_S_power_states_S_state1_FULL_NAME_UNQUOTED state1 +#define DT_N_S_cpus_S_power_states_S_state1_FULL_NAME_TOKEN state1 +#define DT_N_S_cpus_S_power_states_S_state1_FULL_NAME_UPPER_TOKEN STATE1 + +/* Node parent (/cpus/power-states) identifier: */ +#define DT_N_S_cpus_S_power_states_S_state1_PARENT DT_N_S_cpus_S_power_states + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_power_states_S_state1_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_power_states_S_state1_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_NODELABEL(fn) fn(stop1) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_NODELABEL_VARGS(fn, ...) fn(stop1, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_power_states_S_state1_CHILD_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_power_states_S_state1_HASH HNV4Y3tkieq567WGGXTiZXOQ_iS0j5zVpLHTSMEzQPc + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_power_states_S_state1_ORD 27 +#define DT_N_S_cpus_S_power_states_S_state1_ORD_STR_SORTABLE 00027 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_power_states_S_state1_REQUIRES_ORDS \ + 25, /* /cpus/power-states */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_power_states_S_state1_SUPPORTS_ORDS \ + 28, /* /cpus/cpu@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_power_states_S_state1_EXISTS 1 +#define DT_N_INST_1_zephyr_power_state DT_N_S_cpus_S_power_states_S_state1 +#define DT_N_NODELABEL_stop1 DT_N_S_cpus_S_power_states_S_state1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_power_states_S_state1_REG_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state1_RANGES_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state1_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_power_states_S_state1_IRQ_NUM 0 +#define DT_N_S_cpus_S_power_states_S_state1_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_power_states_S_state1_COMPAT_MATCHES_zephyr_power_state 1 +#define DT_N_S_cpus_S_power_states_S_state1_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_COMPAT_VENDOR_IDX_0 "The Zephyr Project" +#define DT_N_S_cpus_S_power_states_S_state1_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_COMPAT_MODEL_IDX_0 "power-state" +#define DT_N_S_cpus_S_power_states_S_state1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_power_states_S_state1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name "suspend-to-idle" +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_STRING_UNQUOTED suspend-to-idle +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_STRING_TOKEN suspend_to_idle +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_STRING_UPPER_TOKEN SUSPEND_TO_IDLE +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_IDX_0 "suspend-to-idle" +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_IDX_0_ENUM_IDX 2 +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_IDX_0_ENUM_VAL_suspend_to_idle_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_ENUM_VAL_suspend_to_idle_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_power_states_S_state1, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_state1, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_state1, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_state1, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_LEN 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_power_state_name_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_substate_id 2 +#define DT_N_S_cpus_S_power_states_S_state1_P_substate_id_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_min_residency_us 100 +#define DT_N_S_cpus_S_power_states_S_state1_P_min_residency_us_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_state1_P_zephyr_pm_device_disabled 0 +#define DT_N_S_cpus_S_power_states_S_state1_P_zephyr_pm_device_disabled_EXISTS 1 + +/* + * Devicetree node: /cpus/cpu@0 + * + * Node identifier: DT_N_S_cpus_S_cpu_0 + * + * Binding (compatible = arm,cortex-m0+): + * $ZEPHYR_BASE\dts\bindings\cpu\arm,cortex-m0+.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_cpu_0_PATH "/cpus/cpu@0" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_cpu_0_FULL_NAME "cpu@0" +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_UNQUOTED cpu@0 +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_TOKEN cpu_0 +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_UPPER_TOKEN CPU_0 + +/* Node parent (/cpus) identifier: */ +#define DT_N_S_cpus_S_cpu_0_PARENT DT_N_S_cpus + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_cpu_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_cpu_0_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_cpu_0_FOREACH_NODELABEL(fn) fn(cpu0) +#define DT_N_S_cpus_S_cpu_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(cpu0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_cpu_0_CHILD_NUM 0 +#define DT_N_S_cpus_S_cpu_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_cpu_0_HASH Su0JBbOtM0QIxe_1ka2Xvgw4rk1QaIlMIj8Rp_v4yVQ + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_cpu_0_ORD 28 +#define DT_N_S_cpus_S_cpu_0_ORD_STR_SORTABLE 00028 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_cpu_0_REQUIRES_ORDS \ + 24, /* /cpus */ \ + 26, /* /cpus/power-states/state0 */ \ + 27, /* /cpus/power-states/state1 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_cpu_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_cpu_0_EXISTS 1 +#define DT_N_INST_0_arm_cortex_m0_ DT_N_S_cpus_S_cpu_0 +#define DT_N_NODELABEL_cpu0 DT_N_S_cpus_S_cpu_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_cpu_0_REG_NUM 1 +#define DT_N_S_cpus_S_cpu_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_cpus_S_cpu_0_RANGES_NUM 0 +#define DT_N_S_cpus_S_cpu_0_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_cpu_0_IRQ_NUM 0 +#define DT_N_S_cpus_S_cpu_0_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_cpu_0_COMPAT_MATCHES_arm_cortex_m0_ 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_cpus_S_cpu_0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_MODEL_IDX_0 "cortex-m0+" +#define DT_N_S_cpus_S_cpu_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_cpu_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_0 DT_N_S_cpus_S_power_states_S_state0 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_0_PH DT_N_S_cpus_S_power_states_S_state0 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_1 DT_N_S_cpus_S_power_states_S_state1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_1_PH DT_N_S_cpus_S_power_states_S_state1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0) \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0, __VA_ARGS__) \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_LEN 2 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible {"arm,cortex-m0+"} +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0 "arm,cortex-m0+" +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_UNQUOTED arm,cortex-m0+ +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_TOKEN arm_cortex_m0_ +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_CORTEX_M0_ +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_0, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_compatible_LEN 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_reg {0 /* 0x0 */} +#define DT_N_S_cpus_S_cpu_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_reg_IDX_0 0 +#define DT_N_S_cpus_S_cpu_0_P_reg_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_deferred_init 0 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_wakeup_source 0 +#define DT_N_S_cpus_S_cpu_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000 + * + * Binding (compatible = st,stm32-pinctrl): + * $ZEPHYR_BASE\dts\bindings\pinctrl\st,stm32-pinctrl.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_PATH "/soc/pin-controller@50000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_FULL_NAME "pin-controller@50000000" +#define DT_N_S_soc_S_pin_controller_50000000_FULL_NAME_UNQUOTED pin-controller@50000000 +#define DT_N_S_soc_S_pin_controller_50000000_FULL_NAME_TOKEN pin_controller_50000000 +#define DT_N_S_soc_S_pin_controller_50000000_FULL_NAME_UPPER_TOKEN PIN_CONTROLLER_50000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_NODELABEL(fn) fn(pinctrl) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pinctrl, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_CHILD_NUM 12 +#define DT_N_S_soc_S_pin_controller_50000000_CHILD_NUM_STATUS_OKAY 12 +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_HASH v3hkTQfQuifAYcW8NqV1Md5s_SiY5fNAcDqXNH2jItY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_ORD 29 +#define DT_N_S_soc_S_pin_controller_50000000_ORD_STR_SORTABLE 00029 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_REQUIRES_ORDS \ + 3, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_SUPPORTS_ORDS \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ \ + 41, /* /soc/pin-controller@50000000/fdcan2_rx_pb0 */ \ + 42, /* /soc/pin-controller@50000000/fdcan2_tx_pb1 */ \ + 56, /* /soc/pin-controller@50000000/usart1_rx_pc5 */ \ + 57, /* /soc/pin-controller@50000000/usart1_tx_pc4 */ \ + 68, /* /soc/pin-controller@50000000/usb_dm_pa11 */ \ + 69, /* /soc/pin-controller@50000000/usb_dp_pa12 */ \ + 79, /* /soc/pin-controller@50000000/gpio@50000c00 */ \ + 80, /* /soc/pin-controller@50000000/gpio@50001400 */ \ + 81, /* /soc/pin-controller@50000000/gpio@50000800 */ \ + 82, /* /soc/pin-controller@50000000/gpio@50001000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_EXISTS 1 +#define DT_N_INST_0_st_stm32_pinctrl DT_N_S_soc_S_pin_controller_50000000 +#define DT_N_NODELABEL_pinctrl DT_N_S_soc_S_pin_controller_50000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_REG_IDX_0_VAL_ADDRESS 1342177280 /* 0x50000000 */ +#define DT_N_S_soc_S_pin_controller_50000000_REG_IDX_0_VAL_SIZE 8192 /* 0x2000 */ +#define DT_N_S_soc_S_pin_controller_50000000_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_COMPAT_MATCHES_st_stm32_pinctrl 1 +#define DT_N_S_soc_S_pin_controller_50000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_COMPAT_MODEL_IDX_0 "stm32-pinctrl" +#define DT_N_S_soc_S_pin_controller_50000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_P_reg {1342177280 /* 0x50000000 */, 8192 /* 0x2000 */} +#define DT_N_S_soc_S_pin_controller_50000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_reg_IDX_0 1342177280 +#define DT_N_S_soc_S_pin_controller_50000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_reg_IDX_1 8192 +#define DT_N_S_soc_S_pin_controller_50000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_remap_pa11 0 +#define DT_N_S_soc_S_pin_controller_50000000_P_remap_pa11_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_remap_pa12 0 +#define DT_N_S_soc_S_pin_controller_50000000_P_remap_pa12_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_remap_pa11_pa12 0 +#define DT_N_S_soc_S_pin_controller_50000000_P_remap_pa11_pa12_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible {"st,stm32-pinctrl"} +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_IDX_0 "st,stm32-pinctrl" +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pinctrl +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_IDX_0_STRING_TOKEN st_stm32_pinctrl +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PINCTRL +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/gpio@50000000 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 + * + * Binding (compatible = st,stm32-gpio): + * $ZEPHYR_BASE\dts\bindings\gpio\st,stm32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_PATH "/soc/pin-controller@50000000/gpio@50000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FULL_NAME "gpio@50000000" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FULL_NAME_UNQUOTED gpio@50000000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FULL_NAME_TOKEN gpio_50000000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FULL_NAME_UPPER_TOKEN GPIO_50000000 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_NODELABEL(fn) fn(gpioa) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpioa, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_HASH g5bDb_NNEGx_zW9lmhqFMi9PjNXXNPNH9tqKeS8zr3Q + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_ORD 30 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_ORD_STR_SORTABLE 00030 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_SUPPORTS_ORDS \ + 32, /* /gpio_keys */ \ + 33, /* /gpio_keys/pfet1 */ \ + 83, /* /soc/power@40007000 */ \ + 84, /* /soc/power@40007000/wkup-pin@1 */ \ + 85, /* /soc/power@40007000/wkup-pin@2 */ \ + 87, /* /soc/power@40007000/wkup-pin@4 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_EXISTS 1 +#define DT_N_INST_0_st_stm32_gpio DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 +#define DT_N_NODELABEL_gpioa DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_REG_IDX_0_VAL_ADDRESS 1342177280 /* 0x50000000 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_COMPAT_MATCHES_st_stm32_gpio 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_COMPAT_MODEL_IDX_0 "stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_reg {1342177280 /* 0x50000000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_reg_IDX_0 1342177280 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_VAL_bus 52 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_VAL_bits 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_ngpios 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_gpio_controller 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible {"st,stm32-gpio"} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_IDX_0 "st,stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_IDX_0_STRING_TOKEN st_stm32_gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_GPIO +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/gpio@50000400 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400 + * + * Binding (compatible = st,stm32-gpio): + * $ZEPHYR_BASE\dts\bindings\gpio\st,stm32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_PATH "/soc/pin-controller@50000000/gpio@50000400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FULL_NAME "gpio@50000400" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FULL_NAME_UNQUOTED gpio@50000400 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FULL_NAME_TOKEN gpio_50000400 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FULL_NAME_UPPER_TOKEN GPIO_50000400 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_NODELABEL(fn) fn(gpiob) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpiob, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_HASH ZcQ9W9iURRRLfUB9_iWIR9HhrWKs6j2W_QflDXHqexY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_ORD 31 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_ORD_STR_SORTABLE 00031 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_SUPPORTS_ORDS \ + 32, /* /gpio_keys */ \ + 34, /* /gpio_keys/pfet2 */ \ + 35, /* /leds */ \ + 36, /* /leds/led_0 */ \ + 83, /* /soc/power@40007000 */ \ + 89, /* /soc/power@40007000/wkup-pin@6 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_EXISTS 1 +#define DT_N_INST_1_st_stm32_gpio DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400 +#define DT_N_NODELABEL_gpiob DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_REG_IDX_0_VAL_ADDRESS 1342178304 /* 0x50000400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_COMPAT_MATCHES_st_stm32_gpio 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_COMPAT_MODEL_IDX_0 "stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_reg {1342178304 /* 0x50000400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_reg_IDX_0 1342178304 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_VAL_bus 52 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_VAL_bits 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_ngpios 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_gpio_controller 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible {"st,stm32-gpio"} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_IDX_0 "st,stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_IDX_0_STRING_TOKEN st_stm32_gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_GPIO +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /gpio_keys + * + * Node identifier: DT_N_S_gpio_keys + * + * Binding (compatible = gpio-keys): + * $ZEPHYR_BASE\dts\bindings\input\gpio-keys.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_gpio_keys_PATH "/gpio_keys" + +/* Node's name with unit-address: */ +#define DT_N_S_gpio_keys_FULL_NAME "gpio_keys" +#define DT_N_S_gpio_keys_FULL_NAME_UNQUOTED gpio_keys +#define DT_N_S_gpio_keys_FULL_NAME_TOKEN gpio_keys +#define DT_N_S_gpio_keys_FULL_NAME_UPPER_TOKEN GPIO_KEYS + +/* Node parent (/) identifier: */ +#define DT_N_S_gpio_keys_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_gpio_keys_CHILD_IDX 15 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_gpio_keys_NODELABEL_NUM 0 +#define DT_N_S_gpio_keys_FOREACH_NODELABEL(fn) +#define DT_N_S_gpio_keys_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_gpio_keys_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_gpio_keys_CHILD_NUM 2 +#define DT_N_S_gpio_keys_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_gpio_keys_FOREACH_CHILD(fn) fn(DT_N_S_gpio_keys_S_pfet1) fn(DT_N_S_gpio_keys_S_pfet2) +#define DT_N_S_gpio_keys_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys_S_pfet2) +#define DT_N_S_gpio_keys_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_gpio_keys_S_pfet1, __VA_ARGS__) fn(DT_N_S_gpio_keys_S_pfet2, __VA_ARGS__) +#define DT_N_S_gpio_keys_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys_S_pfet1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys_S_pfet2, __VA_ARGS__) +#define DT_N_S_gpio_keys_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_gpio_keys_S_pfet1) fn(DT_N_S_gpio_keys_S_pfet2) +#define DT_N_S_gpio_keys_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys_S_pfet2) +#define DT_N_S_gpio_keys_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_gpio_keys_S_pfet1, __VA_ARGS__) fn(DT_N_S_gpio_keys_S_pfet2, __VA_ARGS__) +#define DT_N_S_gpio_keys_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys_S_pfet1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_gpio_keys_S_pfet2, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_gpio_keys_HASH o_cyM_1oGxkDdZvjWwmF_qWSV_TFQR0RmVqGE69cQ78 + +/* Node's dependency ordinal: */ +#define DT_N_S_gpio_keys_ORD 32 +#define DT_N_S_gpio_keys_ORD_STR_SORTABLE 00032 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_gpio_keys_REQUIRES_ORDS \ + 0, /* / */ \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_gpio_keys_SUPPORTS_ORDS \ + 33, /* /gpio_keys/pfet1 */ \ + 34, /* /gpio_keys/pfet2 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_gpio_keys_EXISTS 1 +#define DT_N_INST_0_gpio_keys DT_N_S_gpio_keys + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_gpio_keys_REG_NUM 0 +#define DT_N_S_gpio_keys_RANGES_NUM 0 +#define DT_N_S_gpio_keys_FOREACH_RANGE(fn) +#define DT_N_S_gpio_keys_IRQ_NUM 0 +#define DT_N_S_gpio_keys_IRQ_LEVEL 0 +#define DT_N_S_gpio_keys_COMPAT_MATCHES_gpio_keys 1 +#define DT_N_S_gpio_keys_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_gpio_keys_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_gpio_keys_P_debounce_interval_ms 30 +#define DT_N_S_gpio_keys_P_debounce_interval_ms_EXISTS 1 +#define DT_N_S_gpio_keys_P_polling_mode 0 +#define DT_N_S_gpio_keys_P_polling_mode_EXISTS 1 +#define DT_N_S_gpio_keys_P_no_disconnect 0 +#define DT_N_S_gpio_keys_P_no_disconnect_EXISTS 1 +#define DT_N_S_gpio_keys_P_compatible {"gpio-keys"} +#define DT_N_S_gpio_keys_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_gpio_keys_P_compatible_IDX_0 "gpio-keys" +#define DT_N_S_gpio_keys_P_compatible_IDX_0_STRING_UNQUOTED gpio-keys +#define DT_N_S_gpio_keys_P_compatible_IDX_0_STRING_TOKEN gpio_keys +#define DT_N_S_gpio_keys_P_compatible_IDX_0_STRING_UPPER_TOKEN GPIO_KEYS +#define DT_N_S_gpio_keys_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_gpio_keys, compatible, 0) +#define DT_N_S_gpio_keys_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_gpio_keys, compatible, 0) +#define DT_N_S_gpio_keys_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_gpio_keys, compatible, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys, compatible, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_P_compatible_LEN 1 +#define DT_N_S_gpio_keys_P_compatible_EXISTS 1 +#define DT_N_S_gpio_keys_P_zephyr_deferred_init 0 +#define DT_N_S_gpio_keys_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_gpio_keys_P_wakeup_source 0 +#define DT_N_S_gpio_keys_P_wakeup_source_EXISTS 1 +#define DT_N_S_gpio_keys_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_gpio_keys_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /gpio_keys/pfet1 + * + * Node identifier: DT_N_S_gpio_keys_S_pfet1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_gpio_keys_S_pfet1_PATH "/gpio_keys/pfet1" + +/* Node's name with unit-address: */ +#define DT_N_S_gpio_keys_S_pfet1_FULL_NAME "pfet1" +#define DT_N_S_gpio_keys_S_pfet1_FULL_NAME_UNQUOTED pfet1 +#define DT_N_S_gpio_keys_S_pfet1_FULL_NAME_TOKEN pfet1 +#define DT_N_S_gpio_keys_S_pfet1_FULL_NAME_UPPER_TOKEN PFET1 + +/* Node parent (/gpio_keys) identifier: */ +#define DT_N_S_gpio_keys_S_pfet1_PARENT DT_N_S_gpio_keys + +/* Node's index in its parent's list of children: */ +#define DT_N_S_gpio_keys_S_pfet1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_gpio_keys_S_pfet1_NODELABEL_NUM 1 +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_NODELABEL(fn) fn(pfet1) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_NODELABEL_VARGS(fn, ...) fn(pfet1, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_ANCESTOR(fn) fn(DT_N_S_gpio_keys) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_gpio_keys_S_pfet1_CHILD_NUM 0 +#define DT_N_S_gpio_keys_S_pfet1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD(fn) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_gpio_keys_S_pfet1_HASH MiSvWPgDf_U_oIuxGCHT6sbmamLxNXKF8sEDBX4bC3E + +/* Node's dependency ordinal: */ +#define DT_N_S_gpio_keys_S_pfet1_ORD 33 +#define DT_N_S_gpio_keys_S_pfet1_ORD_STR_SORTABLE 00033 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_gpio_keys_S_pfet1_REQUIRES_ORDS \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 32, /* /gpio_keys */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_gpio_keys_S_pfet1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_gpio_keys_S_pfet1_EXISTS 1 +#define DT_N_ALIAS_pfet0 DT_N_S_gpio_keys_S_pfet1 +#define DT_N_NODELABEL_pfet1 DT_N_S_gpio_keys_S_pfet1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_gpio_keys_S_pfet1_REG_NUM 0 +#define DT_N_S_gpio_keys_S_pfet1_RANGES_NUM 0 +#define DT_N_S_gpio_keys_S_pfet1_FOREACH_RANGE(fn) +#define DT_N_S_gpio_keys_S_pfet1_IRQ_NUM 0 +#define DT_N_S_gpio_keys_S_pfet1_IRQ_LEVEL 0 +#define DT_N_S_gpio_keys_S_pfet1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_gpio_keys_S_pfet1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_VAL_pin 8 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0, pin) \ + fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0, flags) +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0, flags) +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0) +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0) +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys_S_pfet1, gpios, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_LEN 1 +#define DT_N_S_gpio_keys_S_pfet1_P_gpios_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet1_P_label "PFET1" +#define DT_N_S_gpio_keys_S_pfet1_P_label_STRING_UNQUOTED PFET1 +#define DT_N_S_gpio_keys_S_pfet1_P_label_STRING_TOKEN PFET1 +#define DT_N_S_gpio_keys_S_pfet1_P_label_STRING_UPPER_TOKEN PFET1 +#define DT_N_S_gpio_keys_S_pfet1_P_label_IDX_0 "PFET1" +#define DT_N_S_gpio_keys_S_pfet1_P_label_IDX_0_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet1_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_gpio_keys_S_pfet1, label, 0) +#define DT_N_S_gpio_keys_S_pfet1_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet1, label, 0) +#define DT_N_S_gpio_keys_S_pfet1_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_gpio_keys_S_pfet1, label, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet1_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys_S_pfet1, label, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet1_P_label_LEN 1 +#define DT_N_S_gpio_keys_S_pfet1_P_label_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet1_P_zephyr_code 2 +#define DT_N_S_gpio_keys_S_pfet1_P_zephyr_code_EXISTS 1 + +/* + * Devicetree node: /gpio_keys/pfet2 + * + * Node identifier: DT_N_S_gpio_keys_S_pfet2 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_gpio_keys_S_pfet2_PATH "/gpio_keys/pfet2" + +/* Node's name with unit-address: */ +#define DT_N_S_gpio_keys_S_pfet2_FULL_NAME "pfet2" +#define DT_N_S_gpio_keys_S_pfet2_FULL_NAME_UNQUOTED pfet2 +#define DT_N_S_gpio_keys_S_pfet2_FULL_NAME_TOKEN pfet2 +#define DT_N_S_gpio_keys_S_pfet2_FULL_NAME_UPPER_TOKEN PFET2 + +/* Node parent (/gpio_keys) identifier: */ +#define DT_N_S_gpio_keys_S_pfet2_PARENT DT_N_S_gpio_keys + +/* Node's index in its parent's list of children: */ +#define DT_N_S_gpio_keys_S_pfet2_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_gpio_keys_S_pfet2_NODELABEL_NUM 1 +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_NODELABEL(fn) fn(pfet2) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_NODELABEL_VARGS(fn, ...) fn(pfet2, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_ANCESTOR(fn) fn(DT_N_S_gpio_keys) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_gpio_keys_S_pfet2_CHILD_NUM 0 +#define DT_N_S_gpio_keys_S_pfet2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD(fn) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_gpio_keys_S_pfet2_HASH kwhI_mlDU7VTvn72oYdBIizrOrJGDqCSGhWU31P5e_4 + +/* Node's dependency ordinal: */ +#define DT_N_S_gpio_keys_S_pfet2_ORD 34 +#define DT_N_S_gpio_keys_S_pfet2_ORD_STR_SORTABLE 00034 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_gpio_keys_S_pfet2_REQUIRES_ORDS \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ \ + 32, /* /gpio_keys */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_gpio_keys_S_pfet2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_gpio_keys_S_pfet2_EXISTS 1 +#define DT_N_ALIAS_pfet1 DT_N_S_gpio_keys_S_pfet2 +#define DT_N_NODELABEL_pfet2 DT_N_S_gpio_keys_S_pfet2 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_gpio_keys_S_pfet2_REG_NUM 0 +#define DT_N_S_gpio_keys_S_pfet2_RANGES_NUM 0 +#define DT_N_S_gpio_keys_S_pfet2_FOREACH_RANGE(fn) +#define DT_N_S_gpio_keys_S_pfet2_IRQ_NUM 0 +#define DT_N_S_gpio_keys_S_pfet2_IRQ_LEVEL 0 +#define DT_N_S_gpio_keys_S_pfet2_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_gpio_keys_S_pfet2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_VAL_pin 2 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0, pin) \ + fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0, flags) +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0, flags) +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0) +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0) +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys_S_pfet2, gpios, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_LEN 1 +#define DT_N_S_gpio_keys_S_pfet2_P_gpios_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet2_P_label "PFET2" +#define DT_N_S_gpio_keys_S_pfet2_P_label_STRING_UNQUOTED PFET2 +#define DT_N_S_gpio_keys_S_pfet2_P_label_STRING_TOKEN PFET2 +#define DT_N_S_gpio_keys_S_pfet2_P_label_STRING_UPPER_TOKEN PFET2 +#define DT_N_S_gpio_keys_S_pfet2_P_label_IDX_0 "PFET2" +#define DT_N_S_gpio_keys_S_pfet2_P_label_IDX_0_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet2_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_gpio_keys_S_pfet2, label, 0) +#define DT_N_S_gpio_keys_S_pfet2_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_gpio_keys_S_pfet2, label, 0) +#define DT_N_S_gpio_keys_S_pfet2_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_gpio_keys_S_pfet2, label, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet2_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_gpio_keys_S_pfet2, label, 0, __VA_ARGS__) +#define DT_N_S_gpio_keys_S_pfet2_P_label_LEN 1 +#define DT_N_S_gpio_keys_S_pfet2_P_label_EXISTS 1 +#define DT_N_S_gpio_keys_S_pfet2_P_zephyr_code 3 +#define DT_N_S_gpio_keys_S_pfet2_P_zephyr_code_EXISTS 1 + +/* + * Devicetree node: /leds + * + * Node identifier: DT_N_S_leds + * + * Binding (compatible = gpio-leds): + * $ZEPHYR_BASE\dts\bindings\led\gpio-leds.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_PATH "/leds" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_FULL_NAME "leds" +#define DT_N_S_leds_FULL_NAME_UNQUOTED leds +#define DT_N_S_leds_FULL_NAME_TOKEN leds +#define DT_N_S_leds_FULL_NAME_UPPER_TOKEN LEDS + +/* Node parent (/) identifier: */ +#define DT_N_S_leds_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_CHILD_IDX 14 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_NODELABEL_NUM 1 +#define DT_N_S_leds_FOREACH_NODELABEL(fn) fn(leds) +#define DT_N_S_leds_FOREACH_NODELABEL_VARGS(fn, ...) fn(leds, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_CHILD_NUM 1 +#define DT_N_S_leds_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_leds_FOREACH_CHILD(fn) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_leds_HASH bMroFUocDdjE3kJ38dK18mDvlCOPoyya5kIIs76irj8 + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_ORD 35 +#define DT_N_S_leds_ORD_STR_SORTABLE 00035 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_REQUIRES_ORDS \ + 0, /* / */ \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_SUPPORTS_ORDS \ + 36, /* /leds/led_0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_EXISTS 1 +#define DT_N_INST_0_gpio_leds DT_N_S_leds +#define DT_N_NODELABEL_leds DT_N_S_leds + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_REG_NUM 0 +#define DT_N_S_leds_RANGES_NUM 0 +#define DT_N_S_leds_FOREACH_RANGE(fn) +#define DT_N_S_leds_IRQ_NUM 0 +#define DT_N_S_leds_IRQ_LEVEL 0 +#define DT_N_S_leds_COMPAT_MATCHES_gpio_leds 1 +#define DT_N_S_leds_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_P_compatible {"gpio-leds"} +#define DT_N_S_leds_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_leds_P_compatible_IDX_0 "gpio-leds" +#define DT_N_S_leds_P_compatible_IDX_0_STRING_UNQUOTED gpio-leds +#define DT_N_S_leds_P_compatible_IDX_0_STRING_TOKEN gpio_leds +#define DT_N_S_leds_P_compatible_IDX_0_STRING_UPPER_TOKEN GPIO_LEDS +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds, compatible, 0) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds, compatible, 0) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds, compatible, 0, __VA_ARGS__) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds, compatible, 0, __VA_ARGS__) +#define DT_N_S_leds_P_compatible_LEN 1 +#define DT_N_S_leds_P_compatible_EXISTS 1 + +/* + * Devicetree node: /leds/led_0 + * + * Node identifier: DT_N_S_leds_S_led_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_S_led_0_PATH "/leds/led_0" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_S_led_0_FULL_NAME "led_0" +#define DT_N_S_leds_S_led_0_FULL_NAME_UNQUOTED led_0 +#define DT_N_S_leds_S_led_0_FULL_NAME_TOKEN led_0 +#define DT_N_S_leds_S_led_0_FULL_NAME_UPPER_TOKEN LED_0 + +/* Node parent (/leds) identifier: */ +#define DT_N_S_leds_S_led_0_PARENT DT_N_S_leds + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_S_led_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_S_led_0_NODELABEL_NUM 1 +#define DT_N_S_leds_S_led_0_FOREACH_NODELABEL(fn) fn(status_led) +#define DT_N_S_leds_S_led_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(status_led, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_leds) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_S_led_0_CHILD_NUM 0 +#define DT_N_S_leds_S_led_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_leds_S_led_0_FOREACH_CHILD(fn) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_leds_S_led_0_HASH kqSZv01Dnr_1hPdmxPVlr9u8kLMk_UWHIyVHG3GknSY + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_S_led_0_ORD 36 +#define DT_N_S_leds_S_led_0_ORD_STR_SORTABLE 00036 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_S_led_0_REQUIRES_ORDS \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ \ + 35, /* /leds */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_S_led_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_S_led_0_EXISTS 1 +#define DT_N_ALIAS_led0 DT_N_S_leds_S_led_0 +#define DT_N_NODELABEL_status_led DT_N_S_leds_S_led_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_S_led_0_REG_NUM 0 +#define DT_N_S_leds_S_led_0_RANGES_NUM 0 +#define DT_N_S_leds_S_led_0_FOREACH_RANGE(fn) +#define DT_N_S_leds_S_led_0_IRQ_NUM 0 +#define DT_N_S_leds_S_led_0_IRQ_LEVEL 0 +#define DT_N_S_leds_S_led_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_S_led_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_pin 4 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_leds_S_led_0, gpios, 0, pin) \ + fn(DT_N_S_leds_S_led_0, gpios, 0, flags) +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_leds_S_led_0, gpios, 0, flags) +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_0, gpios, 0) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, gpios, 0) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_gpios_LEN 1 +#define DT_N_S_leds_S_led_0_P_gpios_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_label "Status LED" +#define DT_N_S_leds_S_led_0_P_label_STRING_UNQUOTED Status LED +#define DT_N_S_leds_S_led_0_P_label_STRING_TOKEN Status_LED +#define DT_N_S_leds_S_led_0_P_label_STRING_UPPER_TOKEN STATUS_LED +#define DT_N_S_leds_S_led_0_P_label_IDX_0 "Status LED" +#define DT_N_S_leds_S_led_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_0, label, 0) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, label, 0) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_label_LEN 1 +#define DT_N_S_leds_S_led_0_P_label_EXISTS 1 + +/* + * Devicetree node: /mcos + * + * Node identifier: DT_N_S_mcos + */ + +/* Node's full path: */ +#define DT_N_S_mcos_PATH "/mcos" + +/* Node's name with unit-address: */ +#define DT_N_S_mcos_FULL_NAME "mcos" +#define DT_N_S_mcos_FULL_NAME_UNQUOTED mcos +#define DT_N_S_mcos_FULL_NAME_TOKEN mcos +#define DT_N_S_mcos_FULL_NAME_UPPER_TOKEN MCOS + +/* Node parent (/) identifier: */ +#define DT_N_S_mcos_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_mcos_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_mcos_NODELABEL_NUM 0 +#define DT_N_S_mcos_FOREACH_NODELABEL(fn) +#define DT_N_S_mcos_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_mcos_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_mcos_CHILD_NUM 2 +#define DT_N_S_mcos_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_mcos_FOREACH_CHILD(fn) fn(DT_N_S_mcos_S_mco1) fn(DT_N_S_mcos_S_mco2) +#define DT_N_S_mcos_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_mcos_S_mco1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_mcos_S_mco2) +#define DT_N_S_mcos_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_mcos_S_mco1, __VA_ARGS__) fn(DT_N_S_mcos_S_mco2, __VA_ARGS__) +#define DT_N_S_mcos_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_mcos_S_mco1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_mcos_S_mco2, __VA_ARGS__) +#define DT_N_S_mcos_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_mcos_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_mcos_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_mcos_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_mcos_HASH 6SPQgIfzgP5rJNinRk1zLBq_DlKqwei9gyXlUnsq0Fg + +/* Node's dependency ordinal: */ +#define DT_N_S_mcos_ORD 37 +#define DT_N_S_mcos_ORD_STR_SORTABLE 00037 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_mcos_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_mcos_SUPPORTS_ORDS \ + 38, /* /mcos/mco1 */ \ + 39, /* /mcos/mco2 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_mcos_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_mcos_REG_NUM 0 +#define DT_N_S_mcos_RANGES_NUM 0 +#define DT_N_S_mcos_FOREACH_RANGE(fn) +#define DT_N_S_mcos_IRQ_NUM 0 +#define DT_N_S_mcos_IRQ_LEVEL 0 +#define DT_N_S_mcos_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_mcos_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /mcos/mco1 + * + * Node identifier: DT_N_S_mcos_S_mco1 + * + * Binding (compatible = st,stm32-clock-mco): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32-clock-mco.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_mcos_S_mco1_PATH "/mcos/mco1" + +/* Node's name with unit-address: */ +#define DT_N_S_mcos_S_mco1_FULL_NAME "mco1" +#define DT_N_S_mcos_S_mco1_FULL_NAME_UNQUOTED mco1 +#define DT_N_S_mcos_S_mco1_FULL_NAME_TOKEN mco1 +#define DT_N_S_mcos_S_mco1_FULL_NAME_UPPER_TOKEN MCO1 + +/* Node parent (/mcos) identifier: */ +#define DT_N_S_mcos_S_mco1_PARENT DT_N_S_mcos + +/* Node's index in its parent's list of children: */ +#define DT_N_S_mcos_S_mco1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_mcos_S_mco1_NODELABEL_NUM 1 +#define DT_N_S_mcos_S_mco1_FOREACH_NODELABEL(fn) fn(mco1) +#define DT_N_S_mcos_S_mco1_FOREACH_NODELABEL_VARGS(fn, ...) fn(mco1, __VA_ARGS__) +#define DT_N_S_mcos_S_mco1_FOREACH_ANCESTOR(fn) fn(DT_N_S_mcos) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_mcos_S_mco1_CHILD_NUM 0 +#define DT_N_S_mcos_S_mco1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD(fn) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_mcos_S_mco1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_mcos_S_mco1_HASH fXW21upYnb1ZV4bEuBvKCXEcbrABE4XfjXq4dwS7rfY + +/* Node's dependency ordinal: */ +#define DT_N_S_mcos_S_mco1_ORD 38 +#define DT_N_S_mcos_S_mco1_ORD_STR_SORTABLE 00038 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_mcos_S_mco1_REQUIRES_ORDS \ + 37, /* /mcos */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_mcos_S_mco1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_mcos_S_mco1_EXISTS 1 +#define DT_N_INST_0_st_stm32_clock_mco DT_N_S_mcos_S_mco1 +#define DT_N_NODELABEL_mco1 DT_N_S_mcos_S_mco1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_mcos_S_mco1_REG_NUM 0 +#define DT_N_S_mcos_S_mco1_RANGES_NUM 0 +#define DT_N_S_mcos_S_mco1_FOREACH_RANGE(fn) +#define DT_N_S_mcos_S_mco1_IRQ_NUM 0 +#define DT_N_S_mcos_S_mco1_IRQ_LEVEL 0 +#define DT_N_S_mcos_S_mco1_COMPAT_MATCHES_st_stm32_clock_mco 1 +#define DT_N_S_mcos_S_mco1_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco1_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_mcos_S_mco1_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco1_COMPAT_MODEL_IDX_0 "stm32-clock-mco" +#define DT_N_S_mcos_S_mco1_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_mcos_S_mco1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_mcos_S_mco1_P_status "disabled" +#define DT_N_S_mcos_S_mco1_P_status_STRING_UNQUOTED disabled +#define DT_N_S_mcos_S_mco1_P_status_STRING_TOKEN disabled +#define DT_N_S_mcos_S_mco1_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_mcos_S_mco1_P_status_IDX_0 "disabled" +#define DT_N_S_mcos_S_mco1_P_status_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_mcos_S_mco1_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_mcos_S_mco1, status, 0) +#define DT_N_S_mcos_S_mco1_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_mcos_S_mco1, status, 0) +#define DT_N_S_mcos_S_mco1_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_mcos_S_mco1, status, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco1_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_mcos_S_mco1, status, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco1_P_status_LEN 1 +#define DT_N_S_mcos_S_mco1_P_status_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_compatible {"st,stm32-clock-mco"} +#define DT_N_S_mcos_S_mco1_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_compatible_IDX_0 "st,stm32-clock-mco" +#define DT_N_S_mcos_S_mco1_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-clock-mco +#define DT_N_S_mcos_S_mco1_P_compatible_IDX_0_STRING_TOKEN st_stm32_clock_mco +#define DT_N_S_mcos_S_mco1_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_CLOCK_MCO +#define DT_N_S_mcos_S_mco1_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_mcos_S_mco1, compatible, 0) +#define DT_N_S_mcos_S_mco1_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_mcos_S_mco1, compatible, 0) +#define DT_N_S_mcos_S_mco1_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_mcos_S_mco1, compatible, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco1_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_mcos_S_mco1, compatible, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco1_P_compatible_LEN 1 +#define DT_N_S_mcos_S_mco1_P_compatible_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_zephyr_deferred_init 0 +#define DT_N_S_mcos_S_mco1_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_wakeup_source 0 +#define DT_N_S_mcos_S_mco1_P_wakeup_source_EXISTS 1 +#define DT_N_S_mcos_S_mco1_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_mcos_S_mco1_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /mcos/mco2 + * + * Node identifier: DT_N_S_mcos_S_mco2 + * + * Binding (compatible = st,stm32-clock-mco): + * $ZEPHYR_BASE\dts\bindings\clock\st,stm32-clock-mco.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_mcos_S_mco2_PATH "/mcos/mco2" + +/* Node's name with unit-address: */ +#define DT_N_S_mcos_S_mco2_FULL_NAME "mco2" +#define DT_N_S_mcos_S_mco2_FULL_NAME_UNQUOTED mco2 +#define DT_N_S_mcos_S_mco2_FULL_NAME_TOKEN mco2 +#define DT_N_S_mcos_S_mco2_FULL_NAME_UPPER_TOKEN MCO2 + +/* Node parent (/mcos) identifier: */ +#define DT_N_S_mcos_S_mco2_PARENT DT_N_S_mcos + +/* Node's index in its parent's list of children: */ +#define DT_N_S_mcos_S_mco2_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_mcos_S_mco2_NODELABEL_NUM 1 +#define DT_N_S_mcos_S_mco2_FOREACH_NODELABEL(fn) fn(mco2) +#define DT_N_S_mcos_S_mco2_FOREACH_NODELABEL_VARGS(fn, ...) fn(mco2, __VA_ARGS__) +#define DT_N_S_mcos_S_mco2_FOREACH_ANCESTOR(fn) fn(DT_N_S_mcos) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_mcos_S_mco2_CHILD_NUM 0 +#define DT_N_S_mcos_S_mco2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD(fn) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_mcos_S_mco2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_mcos_S_mco2_HASH irDa5qZM1apmLNBL8AyfbwMybA8MLSxOkE_OVqE7xC0 + +/* Node's dependency ordinal: */ +#define DT_N_S_mcos_S_mco2_ORD 39 +#define DT_N_S_mcos_S_mco2_ORD_STR_SORTABLE 00039 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_mcos_S_mco2_REQUIRES_ORDS \ + 37, /* /mcos */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_mcos_S_mco2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_mcos_S_mco2_EXISTS 1 +#define DT_N_INST_1_st_stm32_clock_mco DT_N_S_mcos_S_mco2 +#define DT_N_NODELABEL_mco2 DT_N_S_mcos_S_mco2 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_mcos_S_mco2_REG_NUM 0 +#define DT_N_S_mcos_S_mco2_RANGES_NUM 0 +#define DT_N_S_mcos_S_mco2_FOREACH_RANGE(fn) +#define DT_N_S_mcos_S_mco2_IRQ_NUM 0 +#define DT_N_S_mcos_S_mco2_IRQ_LEVEL 0 +#define DT_N_S_mcos_S_mco2_COMPAT_MATCHES_st_stm32_clock_mco 1 +#define DT_N_S_mcos_S_mco2_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco2_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_mcos_S_mco2_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco2_COMPAT_MODEL_IDX_0 "stm32-clock-mco" +#define DT_N_S_mcos_S_mco2_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_mcos_S_mco2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_mcos_S_mco2_P_status "disabled" +#define DT_N_S_mcos_S_mco2_P_status_STRING_UNQUOTED disabled +#define DT_N_S_mcos_S_mco2_P_status_STRING_TOKEN disabled +#define DT_N_S_mcos_S_mco2_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_mcos_S_mco2_P_status_IDX_0 "disabled" +#define DT_N_S_mcos_S_mco2_P_status_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_mcos_S_mco2_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_mcos_S_mco2, status, 0) +#define DT_N_S_mcos_S_mco2_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_mcos_S_mco2, status, 0) +#define DT_N_S_mcos_S_mco2_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_mcos_S_mco2, status, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco2_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_mcos_S_mco2, status, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco2_P_status_LEN 1 +#define DT_N_S_mcos_S_mco2_P_status_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_compatible {"st,stm32-clock-mco"} +#define DT_N_S_mcos_S_mco2_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_compatible_IDX_0 "st,stm32-clock-mco" +#define DT_N_S_mcos_S_mco2_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-clock-mco +#define DT_N_S_mcos_S_mco2_P_compatible_IDX_0_STRING_TOKEN st_stm32_clock_mco +#define DT_N_S_mcos_S_mco2_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_CLOCK_MCO +#define DT_N_S_mcos_S_mco2_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_mcos_S_mco2, compatible, 0) +#define DT_N_S_mcos_S_mco2_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_mcos_S_mco2, compatible, 0) +#define DT_N_S_mcos_S_mco2_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_mcos_S_mco2, compatible, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco2_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_mcos_S_mco2, compatible, 0, __VA_ARGS__) +#define DT_N_S_mcos_S_mco2_P_compatible_LEN 1 +#define DT_N_S_mcos_S_mco2_P_compatible_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_zephyr_deferred_init 0 +#define DT_N_S_mcos_S_mco2_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_wakeup_source 0 +#define DT_N_S_mcos_S_mco2_P_wakeup_source_EXISTS 1 +#define DT_N_S_mcos_S_mco2_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_mcos_S_mco2_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/can@40006400 + * + * Node identifier: DT_N_S_soc_S_can_40006400 + * + * Binding (compatible = st,stm32-fdcan): + * $ZEPHYR_BASE\dts\bindings\can\st,stm32-fdcan.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_can_40006400_PATH "/soc/can@40006400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_can_40006400_FULL_NAME "can@40006400" +#define DT_N_S_soc_S_can_40006400_FULL_NAME_UNQUOTED can@40006400 +#define DT_N_S_soc_S_can_40006400_FULL_NAME_TOKEN can_40006400 +#define DT_N_S_soc_S_can_40006400_FULL_NAME_UPPER_TOKEN CAN_40006400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_can_40006400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_can_40006400_CHILD_IDX 35 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_can_40006400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_can_40006400_FOREACH_NODELABEL(fn) fn(fdcan1) +#define DT_N_S_soc_S_can_40006400_FOREACH_NODELABEL_VARGS(fn, ...) fn(fdcan1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_can_40006400_CHILD_NUM 0 +#define DT_N_S_soc_S_can_40006400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_can_40006400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_can_40006400_HASH val_iOcNyNmh6jx1XoeAlpOC9DwQRToiiXS2PS43mJQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_can_40006400_ORD 40 +#define DT_N_S_soc_S_can_40006400_ORD_STR_SORTABLE 00040 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_can_40006400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_can_40006400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_can_40006400_EXISTS 1 +#define DT_N_INST_1_st_stm32_fdcan DT_N_S_soc_S_can_40006400 +#define DT_N_NODELABEL_fdcan1 DT_N_S_soc_S_can_40006400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_can_40006400_REG_NUM 2 +#define DT_N_S_soc_S_can_40006400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_REG_IDX_0_VAL_ADDRESS 1073767424 /* 0x40006400 */ +#define DT_N_S_soc_S_can_40006400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_can_40006400_REG_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_REG_IDX_1_VAL_ADDRESS 1073787904 /* 0x4000b400 */ +#define DT_N_S_soc_S_can_40006400_REG_IDX_1_VAL_SIZE 848 /* 0x350 */ +#define DT_N_S_soc_S_can_40006400_REG_NAME_m_can_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_REG_NAME_m_can_VAL_ADDRESS DT_N_S_soc_S_can_40006400_REG_IDX_0_VAL_ADDRESS +#define DT_N_S_soc_S_can_40006400_REG_NAME_m_can_VAL_SIZE DT_N_S_soc_S_can_40006400_REG_IDX_0_VAL_SIZE +#define DT_N_S_soc_S_can_40006400_REG_NAME_message_ram_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_REG_NAME_message_ram_VAL_ADDRESS DT_N_S_soc_S_can_40006400_REG_IDX_1_VAL_ADDRESS +#define DT_N_S_soc_S_can_40006400_REG_NAME_message_ram_VAL_SIZE DT_N_S_soc_S_can_40006400_REG_IDX_1_VAL_SIZE +#define DT_N_S_soc_S_can_40006400_RANGES_NUM 0 +#define DT_N_S_soc_S_can_40006400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_can_40006400_IRQ_NUM 2 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_VAL_irq 21 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_VAL_irq 22 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_can_40006400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int0_VAL_irq DT_N_S_soc_S_can_40006400_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int0_VAL_priority DT_N_S_soc_S_can_40006400_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int0_CONTROLLER DT_N_S_soc_S_can_40006400_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int1_VAL_irq DT_N_S_soc_S_can_40006400_IRQ_IDX_1_VAL_irq +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int1_VAL_priority DT_N_S_soc_S_can_40006400_IRQ_IDX_1_VAL_priority +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_IRQ_NAME_int1_CONTROLLER DT_N_S_soc_S_can_40006400_IRQ_IDX_1_CONTROLLER +#define DT_N_S_soc_S_can_40006400_COMPAT_MATCHES_st_stm32_fdcan 1 +#define DT_N_S_soc_S_can_40006400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_can_40006400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_COMPAT_MODEL_IDX_0 "stm32-fdcan" +#define DT_N_S_soc_S_can_40006400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_can_40006400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_can_40006400_P_reg {1073767424 /* 0x40006400 */, 1024 /* 0x400 */, 1073787904 /* 0x4000b400 */, 848 /* 0x350 */} +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_0 1073767424 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_2 1073787904 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_IDX_3 848 +#define DT_N_S_soc_S_can_40006400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupts {21 /* 0x15 */, 0 /* 0x0 */, 22 /* 0x16 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_0 21 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_2 22 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupts_IDX_3 0 +#define DT_N_S_soc_S_can_40006400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names {"int0", "int1"} +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_0 "int0" +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_0_STRING_UNQUOTED int0 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_0_STRING_TOKEN int0 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN INT0 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_1 "int1" +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_1_STRING_UNQUOTED int1 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_1_STRING_TOKEN int1 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_IDX_1_STRING_UPPER_TOKEN INT1 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006400, interrupt_names, 0) \ + fn(DT_N_S_soc_S_can_40006400, interrupt_names, 1) +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, interrupt_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, interrupt_names, 1) +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006400, interrupt_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, interrupt_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006400, interrupt_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, interrupt_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_LEN 2 +#define DT_N_S_soc_S_can_40006400_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_VAL_bits 4096 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_can_40006400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_can_40006400, clocks, 0, bits) +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, clocks, 0, bits) +#define DT_N_S_soc_S_can_40006400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_can_40006400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006400, clocks, 0) +#define DT_N_S_soc_S_can_40006400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, clocks, 0) +#define DT_N_S_soc_S_can_40006400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_clocks_LEN 1 +#define DT_N_S_soc_S_can_40006400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg {0 /* 0x0 */, 28 /* 0x1c */, 8 /* 0x8 */, 3 /* 0x3 */, 3 /* 0x3 */, 0 /* 0x0 */, 3 /* 0x3 */, 3 /* 0x3 */} +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_0 0 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_1 28 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_2 8 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_3 3 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_4 3 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_5 0 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_6 3 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_IDX_7 3 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 0) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 1) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 2) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 3) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 4) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 5) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 6) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 7) +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 3) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 4) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 5) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 6) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 7) +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 1, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 2, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 3, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 4, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 5, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 6, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 7, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, bosch_mram_cfg, 7, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_LEN 8 +#define DT_N_S_soc_S_can_40006400_P_bosch_mram_cfg_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_status "disabled" +#define DT_N_S_soc_S_can_40006400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_can_40006400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_can_40006400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_can_40006400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_can_40006400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_can_40006400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006400, status, 0) +#define DT_N_S_soc_S_can_40006400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, status, 0) +#define DT_N_S_soc_S_can_40006400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_status_LEN 1 +#define DT_N_S_soc_S_can_40006400_P_status_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_compatible {"st,stm32-fdcan"} +#define DT_N_S_soc_S_can_40006400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_compatible_IDX_0 "st,stm32-fdcan" +#define DT_N_S_soc_S_can_40006400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-fdcan +#define DT_N_S_soc_S_can_40006400_P_compatible_IDX_0_STRING_TOKEN st_stm32_fdcan +#define DT_N_S_soc_S_can_40006400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_FDCAN +#define DT_N_S_soc_S_can_40006400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006400, compatible, 0) +#define DT_N_S_soc_S_can_40006400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, compatible, 0) +#define DT_N_S_soc_S_can_40006400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_compatible_LEN 1 +#define DT_N_S_soc_S_can_40006400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_names {"m_can", "message_ram"} +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_0 "m_can" +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_0_STRING_UNQUOTED m_can +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_0_STRING_TOKEN m_can +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_0_STRING_UPPER_TOKEN M_CAN +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_1 "message_ram" +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_1_STRING_UNQUOTED message_ram +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_1_STRING_TOKEN message_ram +#define DT_N_S_soc_S_can_40006400_P_reg_names_IDX_1_STRING_UPPER_TOKEN MESSAGE_RAM +#define DT_N_S_soc_S_can_40006400_P_reg_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006400, reg_names, 0) \ + fn(DT_N_S_soc_S_can_40006400, reg_names, 1) +#define DT_N_S_soc_S_can_40006400_P_reg_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006400, reg_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, reg_names, 1) +#define DT_N_S_soc_S_can_40006400_P_reg_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006400, reg_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006400, reg_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_reg_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006400, reg_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006400, reg_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006400_P_reg_names_LEN 2 +#define DT_N_S_soc_S_can_40006400_P_reg_names_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_can_40006400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_wakeup_source 0 +#define DT_N_S_soc_S_can_40006400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_can_40006400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_can_40006400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/fdcan2_rx_pb0 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_PATH "/soc/pin-controller@50000000/fdcan2_rx_pb0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FULL_NAME "fdcan2_rx_pb0" +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FULL_NAME_UNQUOTED fdcan2_rx_pb0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FULL_NAME_TOKEN fdcan2_rx_pb0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FULL_NAME_UPPER_TOKEN FDCAN2_RX_PB0 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_NODELABEL(fn) fn(fdcan2_rx_pb0) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_NODELABEL_VARGS(fn, ...) fn(fdcan2_rx_pb0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_HASH C1nplAoPrEQK_EH1gw7U6YqwgVLY7nQBCQ3z9Kl64r4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_ORD 41 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_ORD_STR_SORTABLE 00041 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_REQUIRES_ORDS \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_SUPPORTS_ORDS \ + 43, /* /soc/can@40006800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_EXISTS 1 +#define DT_N_NODELABEL_fdcan2_rx_pb0 DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_REG_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_pinmux 515 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_pinmux_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_STRING_UNQUOTED low-speed +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_STRING_TOKEN low_speed +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_STRING_UPPER_TOKEN LOW_SPEED +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_IDX_0 "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_IDX_0_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_slew_rate_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_bias_disable 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_bias_disable_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_bias_pull_up 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_bias_pull_up_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_bias_pull_down 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_bias_pull_down_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_drive_push_pull 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_drive_push_pull_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_drive_open_drain 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_drive_open_drain_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_output_low 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_output_low_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_output_high 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0_P_output_high_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/fdcan2_tx_pb1 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_PATH "/soc/pin-controller@50000000/fdcan2_tx_pb1" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FULL_NAME "fdcan2_tx_pb1" +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FULL_NAME_UNQUOTED fdcan2_tx_pb1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FULL_NAME_TOKEN fdcan2_tx_pb1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FULL_NAME_UPPER_TOKEN FDCAN2_TX_PB1 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_NODELABEL(fn) fn(fdcan2_tx_pb1) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_NODELABEL_VARGS(fn, ...) fn(fdcan2_tx_pb1, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_HASH OxoCpVaf4iGy9Wu_2BhtPHGUHNSphIE4kGqMQR0G7DE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_ORD 42 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_ORD_STR_SORTABLE 00042 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_REQUIRES_ORDS \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_SUPPORTS_ORDS \ + 43, /* /soc/can@40006800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_EXISTS 1 +#define DT_N_NODELABEL_fdcan2_tx_pb1 DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_REG_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_pinmux 547 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_pinmux_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_STRING_UNQUOTED low-speed +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_STRING_TOKEN low_speed +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_STRING_UPPER_TOKEN LOW_SPEED +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_IDX_0 "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_IDX_0_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_slew_rate_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_bias_disable 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_bias_disable_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_bias_pull_up 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_bias_pull_down 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_drive_push_pull 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_drive_open_drain 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_output_low 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_output_low_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_output_high 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /soc/can@40006800 + * + * Node identifier: DT_N_S_soc_S_can_40006800 + * + * Binding (compatible = st,stm32-fdcan): + * $ZEPHYR_BASE\dts\bindings\can\st,stm32-fdcan.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_can_40006800_PATH "/soc/can@40006800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_can_40006800_FULL_NAME "can@40006800" +#define DT_N_S_soc_S_can_40006800_FULL_NAME_UNQUOTED can@40006800 +#define DT_N_S_soc_S_can_40006800_FULL_NAME_TOKEN can_40006800 +#define DT_N_S_soc_S_can_40006800_FULL_NAME_UPPER_TOKEN CAN_40006800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_can_40006800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_can_40006800_CHILD_IDX 36 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_can_40006800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_can_40006800_FOREACH_NODELABEL(fn) fn(fdcan2) +#define DT_N_S_soc_S_can_40006800_FOREACH_NODELABEL_VARGS(fn, ...) fn(fdcan2, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_can_40006800_CHILD_NUM 0 +#define DT_N_S_soc_S_can_40006800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_can_40006800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_can_40006800_HASH y20CprTbiBzqYzfZOxJkE92qZmllpADEfqqY6Kr4g_s + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_can_40006800_ORD 43 +#define DT_N_S_soc_S_can_40006800_ORD_STR_SORTABLE 00043 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_can_40006800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 41, /* /soc/pin-controller@50000000/fdcan2_rx_pb0 */ \ + 42, /* /soc/pin-controller@50000000/fdcan2_tx_pb1 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_can_40006800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_can_40006800_EXISTS 1 +#define DT_N_INST_0_st_stm32_fdcan DT_N_S_soc_S_can_40006800 +#define DT_N_NODELABEL_fdcan2 DT_N_S_soc_S_can_40006800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_can_40006800_REG_NUM 2 +#define DT_N_S_soc_S_can_40006800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_REG_IDX_0_VAL_ADDRESS 1073768448 /* 0x40006800 */ +#define DT_N_S_soc_S_can_40006800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_can_40006800_REG_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_REG_IDX_1_VAL_ADDRESS 1073788752 /* 0x4000b750 */ +#define DT_N_S_soc_S_can_40006800_REG_IDX_1_VAL_SIZE 848 /* 0x350 */ +#define DT_N_S_soc_S_can_40006800_REG_NAME_m_can_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_REG_NAME_m_can_VAL_ADDRESS DT_N_S_soc_S_can_40006800_REG_IDX_0_VAL_ADDRESS +#define DT_N_S_soc_S_can_40006800_REG_NAME_m_can_VAL_SIZE DT_N_S_soc_S_can_40006800_REG_IDX_0_VAL_SIZE +#define DT_N_S_soc_S_can_40006800_REG_NAME_message_ram_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_REG_NAME_message_ram_VAL_ADDRESS DT_N_S_soc_S_can_40006800_REG_IDX_1_VAL_ADDRESS +#define DT_N_S_soc_S_can_40006800_REG_NAME_message_ram_VAL_SIZE DT_N_S_soc_S_can_40006800_REG_IDX_1_VAL_SIZE +#define DT_N_S_soc_S_can_40006800_RANGES_NUM 0 +#define DT_N_S_soc_S_can_40006800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_can_40006800_IRQ_NUM 2 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_VAL_irq 21 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_VAL_irq 22 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_can_40006800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int0_VAL_irq DT_N_S_soc_S_can_40006800_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int0_VAL_priority DT_N_S_soc_S_can_40006800_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int0_CONTROLLER DT_N_S_soc_S_can_40006800_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int1_VAL_irq DT_N_S_soc_S_can_40006800_IRQ_IDX_1_VAL_irq +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int1_VAL_priority DT_N_S_soc_S_can_40006800_IRQ_IDX_1_VAL_priority +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_IRQ_NAME_int1_CONTROLLER DT_N_S_soc_S_can_40006800_IRQ_IDX_1_CONTROLLER +#define DT_N_S_soc_S_can_40006800_COMPAT_MATCHES_st_stm32_fdcan 1 +#define DT_N_S_soc_S_can_40006800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_can_40006800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_COMPAT_MODEL_IDX_0 "stm32-fdcan" +#define DT_N_S_soc_S_can_40006800_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_can_40006800_PINCTRL_NUM 1 +#define DT_N_S_soc_S_can_40006800_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_can_40006800_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_can_40006800_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_can_40006800_PINCTRL_NAME_default_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0 +#define DT_N_S_soc_S_can_40006800_PINCTRL_NAME_default_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1 + +/* Generic property macros: */ +#define DT_N_S_soc_S_can_40006800_P_reg {1073768448 /* 0x40006800 */, 1024 /* 0x400 */, 1073788752 /* 0x4000b750 */, 848 /* 0x350 */} +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_0 1073768448 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_2 1073788752 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_IDX_3 848 +#define DT_N_S_soc_S_can_40006800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupts {21 /* 0x15 */, 0 /* 0x0 */, 22 /* 0x16 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_0 21 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_2 22 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupts_IDX_3 0 +#define DT_N_S_soc_S_can_40006800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names {"int0", "int1"} +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_0 "int0" +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_0_STRING_UNQUOTED int0 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_0_STRING_TOKEN int0 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN INT0 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_1 "int1" +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_1_STRING_UNQUOTED int1 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_1_STRING_TOKEN int1 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_IDX_1_STRING_UPPER_TOKEN INT1 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, interrupt_names, 0) \ + fn(DT_N_S_soc_S_can_40006800, interrupt_names, 1) +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, interrupt_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, interrupt_names, 1) +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, interrupt_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, interrupt_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, interrupt_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, interrupt_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_LEN 2 +#define DT_N_S_soc_S_can_40006800_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_VAL_bits 4096 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_can_40006800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_can_40006800, clocks, 0, bits) +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, clocks, 0, bits) +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_VAL_bus 11 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_VAL_bits 19398744 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_can_40006800, clocks, 1, bus) \ + fn(DT_N_S_soc_S_can_40006800, clocks, 1, bits) +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, clocks, 1, bits) +#define DT_N_S_soc_S_can_40006800_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_can_40006800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, clocks, 0) \ + fn(DT_N_S_soc_S_can_40006800, clocks, 1) +#define DT_N_S_soc_S_can_40006800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, clocks, 1) +#define DT_N_S_soc_S_can_40006800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_clocks_LEN 2 +#define DT_N_S_soc_S_can_40006800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg {0 /* 0x0 */, 28 /* 0x1c */, 8 /* 0x8 */, 3 /* 0x3 */, 3 /* 0x3 */, 0 /* 0x0 */, 3 /* 0x3 */, 3 /* 0x3 */} +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_0 0 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_1 28 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_2 8 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_3 3 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_4 3 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_5 0 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_6 3 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_IDX_7 3 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 0) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 1) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 2) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 3) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 4) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 5) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 6) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 7) +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 3) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 4) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 5) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 6) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 7) +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 1, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 2, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 3, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 4, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 5, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 6, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 7, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, bosch_mram_cfg, 7, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_LEN 8 +#define DT_N_S_soc_S_can_40006800_P_bosch_mram_cfg_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_status "okay" +#define DT_N_S_soc_S_can_40006800_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_can_40006800_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_can_40006800_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_can_40006800_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_can_40006800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_can_40006800_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, status, 0) +#define DT_N_S_soc_S_can_40006800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, status, 0) +#define DT_N_S_soc_S_can_40006800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_status_LEN 1 +#define DT_N_S_soc_S_can_40006800_P_status_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_compatible {"st,stm32-fdcan"} +#define DT_N_S_soc_S_can_40006800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_compatible_IDX_0 "st,stm32-fdcan" +#define DT_N_S_soc_S_can_40006800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-fdcan +#define DT_N_S_soc_S_can_40006800_P_compatible_IDX_0_STRING_TOKEN st_stm32_fdcan +#define DT_N_S_soc_S_can_40006800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_FDCAN +#define DT_N_S_soc_S_can_40006800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, compatible, 0) +#define DT_N_S_soc_S_can_40006800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, compatible, 0) +#define DT_N_S_soc_S_can_40006800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_compatible_LEN 1 +#define DT_N_S_soc_S_can_40006800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_names {"m_can", "message_ram"} +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_0 "m_can" +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_0_STRING_UNQUOTED m_can +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_0_STRING_TOKEN m_can +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_0_STRING_UPPER_TOKEN M_CAN +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_1 "message_ram" +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_1_STRING_UNQUOTED message_ram +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_1_STRING_TOKEN message_ram +#define DT_N_S_soc_S_can_40006800_P_reg_names_IDX_1_STRING_UPPER_TOKEN MESSAGE_RAM +#define DT_N_S_soc_S_can_40006800_P_reg_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, reg_names, 0) \ + fn(DT_N_S_soc_S_can_40006800, reg_names, 1) +#define DT_N_S_soc_S_can_40006800_P_reg_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, reg_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, reg_names, 1) +#define DT_N_S_soc_S_can_40006800_P_reg_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, reg_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, reg_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_reg_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, reg_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, reg_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_reg_names_LEN 2 +#define DT_N_S_soc_S_can_40006800_P_reg_names_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_can_40006800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_wakeup_source 0 +#define DT_N_S_soc_S_can_40006800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_can_40006800_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_IDX_0 DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_IDX_1 DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 0) \ + fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 1) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 1) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_can_40006800, pinctrl_0, 1, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_LEN 2 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_40006800, pinctrl_names, 0) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_40006800, pinctrl_names, 0) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_40006800, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_40006800, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_can_40006800_P_pinctrl_names_EXISTS 1 + +/* + * Devicetree node: /soc/dac@40007400 + * + * Node identifier: DT_N_S_soc_S_dac_40007400 + * + * Binding (compatible = st,stm32-dac): + * $ZEPHYR_BASE\dts\bindings\dac\st,stm32-dac.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_dac_40007400_PATH "/soc/dac@40007400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_dac_40007400_FULL_NAME "dac@40007400" +#define DT_N_S_soc_S_dac_40007400_FULL_NAME_UNQUOTED dac@40007400 +#define DT_N_S_soc_S_dac_40007400_FULL_NAME_TOKEN dac_40007400 +#define DT_N_S_soc_S_dac_40007400_FULL_NAME_UPPER_TOKEN DAC_40007400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_dac_40007400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_dac_40007400_CHILD_IDX 30 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_dac_40007400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_dac_40007400_FOREACH_NODELABEL(fn) fn(dac1) +#define DT_N_S_soc_S_dac_40007400_FOREACH_NODELABEL_VARGS(fn, ...) fn(dac1, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_dac_40007400_CHILD_NUM 0 +#define DT_N_S_soc_S_dac_40007400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_dac_40007400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_dac_40007400_HASH AEmTXTZMLBfEYJhhkd3MmBxYI__rcYzmOjJiV2l9668 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_dac_40007400_ORD 44 +#define DT_N_S_soc_S_dac_40007400_ORD_STR_SORTABLE 00044 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_dac_40007400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_dac_40007400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_dac_40007400_EXISTS 1 +#define DT_N_INST_0_st_stm32_dac DT_N_S_soc_S_dac_40007400 +#define DT_N_NODELABEL_dac1 DT_N_S_soc_S_dac_40007400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_dac_40007400_REG_NUM 1 +#define DT_N_S_soc_S_dac_40007400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_REG_IDX_0_VAL_ADDRESS 1073771520 /* 0x40007400 */ +#define DT_N_S_soc_S_dac_40007400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_dac_40007400_RANGES_NUM 0 +#define DT_N_S_soc_S_dac_40007400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_dac_40007400_IRQ_NUM 0 +#define DT_N_S_soc_S_dac_40007400_IRQ_LEVEL 0 +#define DT_N_S_soc_S_dac_40007400_COMPAT_MATCHES_st_stm32_dac 1 +#define DT_N_S_soc_S_dac_40007400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_dac_40007400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_COMPAT_MODEL_IDX_0 "stm32-dac" +#define DT_N_S_soc_S_dac_40007400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_dac_40007400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_dac_40007400_P_reg {1073771520 /* 0x40007400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_dac_40007400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_reg_IDX_0 1073771520 +#define DT_N_S_soc_S_dac_40007400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_dac_40007400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_VAL_bits 536870912 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_dac_40007400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_dac_40007400, clocks, 0, bits) +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_dac_40007400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_dac_40007400, clocks, 0, bits) +#define DT_N_S_soc_S_dac_40007400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_dac_40007400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dac_40007400, clocks, 0) +#define DT_N_S_soc_S_dac_40007400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dac_40007400, clocks, 0) +#define DT_N_S_soc_S_dac_40007400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dac_40007400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dac_40007400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_P_clocks_LEN 1 +#define DT_N_S_soc_S_dac_40007400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_status "disabled" +#define DT_N_S_soc_S_dac_40007400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_dac_40007400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_dac_40007400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_dac_40007400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_dac_40007400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_dac_40007400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dac_40007400, status, 0) +#define DT_N_S_soc_S_dac_40007400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dac_40007400, status, 0) +#define DT_N_S_soc_S_dac_40007400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dac_40007400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dac_40007400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_P_status_LEN 1 +#define DT_N_S_soc_S_dac_40007400_P_status_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_compatible {"st,stm32-dac"} +#define DT_N_S_soc_S_dac_40007400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_compatible_IDX_0 "st,stm32-dac" +#define DT_N_S_soc_S_dac_40007400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-dac +#define DT_N_S_soc_S_dac_40007400_P_compatible_IDX_0_STRING_TOKEN st_stm32_dac +#define DT_N_S_soc_S_dac_40007400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_DAC +#define DT_N_S_soc_S_dac_40007400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dac_40007400, compatible, 0) +#define DT_N_S_soc_S_dac_40007400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dac_40007400, compatible, 0) +#define DT_N_S_soc_S_dac_40007400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dac_40007400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dac_40007400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dac_40007400_P_compatible_LEN 1 +#define DT_N_S_soc_S_dac_40007400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_dac_40007400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_wakeup_source 0 +#define DT_N_S_soc_S_dac_40007400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_dac_40007400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_dac_40007400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/dma@40020000 + * + * Node identifier: DT_N_S_soc_S_dma_40020000 + * + * Binding (compatible = st,stm32-dma-v2): + * $ZEPHYR_BASE\dts\bindings\dma\st,stm32-dma-v2.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_dma_40020000_PATH "/soc/dma@40020000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_dma_40020000_FULL_NAME "dma@40020000" +#define DT_N_S_soc_S_dma_40020000_FULL_NAME_UNQUOTED dma@40020000 +#define DT_N_S_soc_S_dma_40020000_FULL_NAME_TOKEN dma_40020000 +#define DT_N_S_soc_S_dma_40020000_FULL_NAME_UPPER_TOKEN DMA_40020000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_dma_40020000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_dma_40020000_CHILD_IDX 22 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_dma_40020000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_dma_40020000_FOREACH_NODELABEL(fn) fn(dma1) +#define DT_N_S_soc_S_dma_40020000_FOREACH_NODELABEL_VARGS(fn, ...) fn(dma1, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_dma_40020000_CHILD_NUM 0 +#define DT_N_S_soc_S_dma_40020000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_dma_40020000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_dma_40020000_HASH wrD_czGB0R3hBC1Od9iGdfNbQ3BZqmarPsJAc4MBFAs + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_dma_40020000_ORD 45 +#define DT_N_S_soc_S_dma_40020000_ORD_STR_SORTABLE 00045 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_dma_40020000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_dma_40020000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_dma_40020000_EXISTS 1 +#define DT_N_INST_0_st_stm32_dma_v2 DT_N_S_soc_S_dma_40020000 +#define DT_N_NODELABEL_dma1 DT_N_S_soc_S_dma_40020000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_dma_40020000_REG_NUM 1 +#define DT_N_S_soc_S_dma_40020000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_REG_IDX_0_VAL_ADDRESS 1073872896 /* 0x40020000 */ +#define DT_N_S_soc_S_dma_40020000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_dma_40020000_RANGES_NUM 0 +#define DT_N_S_soc_S_dma_40020000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_dma_40020000_IRQ_NUM 7 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_VAL_irq 9 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_VAL_irq 10 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_VAL_irq 10 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_2_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_3_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_4_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_5_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_IRQ_IDX_6_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_dma_40020000_COMPAT_MATCHES_st_stm32_dma_v2 1 +#define DT_N_S_soc_S_dma_40020000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_dma_40020000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_COMPAT_MODEL_IDX_0 "stm32-dma-v2" +#define DT_N_S_soc_S_dma_40020000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_dma_40020000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_dma_40020000_P_reg {1073872896 /* 0x40020000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_dma_40020000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_reg_IDX_0 1073872896 +#define DT_N_S_soc_S_dma_40020000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_dma_40020000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts {9 /* 0x9 */, 0 /* 0x0 */, 10 /* 0xa */, 0 /* 0x0 */, 10 /* 0xa */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */} +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_0 9 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_2 10 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_3 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_4 10 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_5 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_6 11 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_7 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_8_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_8 11 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_9_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_9 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_10_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_10 11 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_11_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_11 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_12_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_12 11 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_13_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_IDX_13 0 +#define DT_N_S_soc_S_dma_40020000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_st_mem2mem 0 +#define DT_N_S_soc_S_dma_40020000_P_st_mem2mem_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_dma_offset 0 +#define DT_N_S_soc_S_dma_40020000_P_dma_offset_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_dma_requests 7 +#define DT_N_S_soc_S_dma_40020000_P_dma_requests_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_status "disabled" +#define DT_N_S_soc_S_dma_40020000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_dma_40020000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_dma_40020000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_dma_40020000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_dma_40020000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_dma_40020000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_40020000, status, 0) +#define DT_N_S_soc_S_dma_40020000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020000, status, 0) +#define DT_N_S_soc_S_dma_40020000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_40020000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_40020000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_P_status_LEN 1 +#define DT_N_S_soc_S_dma_40020000_P_status_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_compatible {"st,stm32-dma-v2"} +#define DT_N_S_soc_S_dma_40020000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_compatible_IDX_0 "st,stm32-dma-v2" +#define DT_N_S_soc_S_dma_40020000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-dma-v2 +#define DT_N_S_soc_S_dma_40020000_P_compatible_IDX_0_STRING_TOKEN st_stm32_dma_v2 +#define DT_N_S_soc_S_dma_40020000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_DMA_V2 +#define DT_N_S_soc_S_dma_40020000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_40020000, compatible, 0) +#define DT_N_S_soc_S_dma_40020000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020000, compatible, 0) +#define DT_N_S_soc_S_dma_40020000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_40020000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_40020000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_P_compatible_LEN 1 +#define DT_N_S_soc_S_dma_40020000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_VAL_bus 56 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_VAL_bits 1 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_dma_40020000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_dma_40020000, clocks, 0, bits) +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_dma_40020000, clocks, 0, bits) +#define DT_N_S_soc_S_dma_40020000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_dma_40020000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_40020000, clocks, 0) +#define DT_N_S_soc_S_dma_40020000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020000, clocks, 0) +#define DT_N_S_soc_S_dma_40020000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_40020000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_40020000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020000_P_clocks_LEN 1 +#define DT_N_S_soc_S_dma_40020000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_dma_40020000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_wakeup_source 0 +#define DT_N_S_soc_S_dma_40020000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_dma_40020000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_dma_40020000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/dma@40020400 + * + * Node identifier: DT_N_S_soc_S_dma_40020400 + * + * Binding (compatible = st,stm32-dma-v2): + * $ZEPHYR_BASE\dts\bindings\dma\st,stm32-dma-v2.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_dma_40020400_PATH "/soc/dma@40020400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_dma_40020400_FULL_NAME "dma@40020400" +#define DT_N_S_soc_S_dma_40020400_FULL_NAME_UNQUOTED dma@40020400 +#define DT_N_S_soc_S_dma_40020400_FULL_NAME_TOKEN dma_40020400 +#define DT_N_S_soc_S_dma_40020400_FULL_NAME_UPPER_TOKEN DMA_40020400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_dma_40020400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_dma_40020400_CHILD_IDX 43 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_dma_40020400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_dma_40020400_FOREACH_NODELABEL(fn) fn(dma2) +#define DT_N_S_soc_S_dma_40020400_FOREACH_NODELABEL_VARGS(fn, ...) fn(dma2, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_dma_40020400_CHILD_NUM 0 +#define DT_N_S_soc_S_dma_40020400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_dma_40020400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_dma_40020400_HASH 6M2mn87tCKiqdKtfbifYbjloijPkEmcQ0zczmKi97Y8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_dma_40020400_ORD 46 +#define DT_N_S_soc_S_dma_40020400_ORD_STR_SORTABLE 00046 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_dma_40020400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_dma_40020400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_dma_40020400_EXISTS 1 +#define DT_N_INST_1_st_stm32_dma_v2 DT_N_S_soc_S_dma_40020400 +#define DT_N_NODELABEL_dma2 DT_N_S_soc_S_dma_40020400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_dma_40020400_REG_NUM 1 +#define DT_N_S_soc_S_dma_40020400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_REG_IDX_0_VAL_ADDRESS 1073873920 /* 0x40020400 */ +#define DT_N_S_soc_S_dma_40020400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_dma_40020400_RANGES_NUM 0 +#define DT_N_S_soc_S_dma_40020400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_dma_40020400_IRQ_NUM 5 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_2_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_3_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_VAL_irq 11 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_VAL_priority 0 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_IRQ_IDX_4_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dma_40020400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_dma_40020400_COMPAT_MATCHES_st_stm32_dma_v2 1 +#define DT_N_S_soc_S_dma_40020400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_dma_40020400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_COMPAT_MODEL_IDX_0 "stm32-dma-v2" +#define DT_N_S_soc_S_dma_40020400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_dma_40020400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_dma_40020400_P_reg {1073873920 /* 0x40020400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_dma_40020400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_reg_IDX_0 1073873920 +#define DT_N_S_soc_S_dma_40020400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_dma_40020400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts {11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */, 11 /* 0xb */, 0 /* 0x0 */} +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_0 11 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_2 11 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_3 0 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_4 11 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_5 0 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_6 11 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_7 0 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_8_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_8 11 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_9_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_IDX_9 0 +#define DT_N_S_soc_S_dma_40020400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_st_mem2mem 0 +#define DT_N_S_soc_S_dma_40020400_P_st_mem2mem_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_dma_offset 7 +#define DT_N_S_soc_S_dma_40020400_P_dma_offset_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_dma_requests 5 +#define DT_N_S_soc_S_dma_40020400_P_dma_requests_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_status "disabled" +#define DT_N_S_soc_S_dma_40020400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_dma_40020400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_dma_40020400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_dma_40020400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_dma_40020400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_dma_40020400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_40020400, status, 0) +#define DT_N_S_soc_S_dma_40020400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020400, status, 0) +#define DT_N_S_soc_S_dma_40020400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_40020400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_40020400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_P_status_LEN 1 +#define DT_N_S_soc_S_dma_40020400_P_status_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_compatible {"st,stm32-dma-v2"} +#define DT_N_S_soc_S_dma_40020400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_compatible_IDX_0 "st,stm32-dma-v2" +#define DT_N_S_soc_S_dma_40020400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-dma-v2 +#define DT_N_S_soc_S_dma_40020400_P_compatible_IDX_0_STRING_TOKEN st_stm32_dma_v2 +#define DT_N_S_soc_S_dma_40020400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_DMA_V2 +#define DT_N_S_soc_S_dma_40020400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_40020400, compatible, 0) +#define DT_N_S_soc_S_dma_40020400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020400, compatible, 0) +#define DT_N_S_soc_S_dma_40020400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_40020400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_40020400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_P_compatible_LEN 1 +#define DT_N_S_soc_S_dma_40020400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_VAL_bus 56 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_VAL_bits 2 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_dma_40020400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_dma_40020400, clocks, 0, bits) +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_dma_40020400, clocks, 0, bits) +#define DT_N_S_soc_S_dma_40020400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_dma_40020400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_40020400, clocks, 0) +#define DT_N_S_soc_S_dma_40020400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_40020400, clocks, 0) +#define DT_N_S_soc_S_dma_40020400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_40020400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_40020400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_40020400_P_clocks_LEN 1 +#define DT_N_S_soc_S_dma_40020400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_dma_40020400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_wakeup_source 0 +#define DT_N_S_soc_S_dma_40020400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_dma_40020400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_dma_40020400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/dmamux@40020800 + * + * Node identifier: DT_N_S_soc_S_dmamux_40020800 + * + * Binding (compatible = st,stm32-dmamux): + * $ZEPHYR_BASE\dts\bindings\dma\st,stm32-dmamux.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_dmamux_40020800_PATH "/soc/dmamux@40020800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_dmamux_40020800_FULL_NAME "dmamux@40020800" +#define DT_N_S_soc_S_dmamux_40020800_FULL_NAME_UNQUOTED dmamux@40020800 +#define DT_N_S_soc_S_dmamux_40020800_FULL_NAME_TOKEN dmamux_40020800 +#define DT_N_S_soc_S_dmamux_40020800_FULL_NAME_UPPER_TOKEN DMAMUX_40020800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_dmamux_40020800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_dmamux_40020800_CHILD_IDX 23 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_dmamux_40020800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_NODELABEL(fn) fn(dmamux1) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_NODELABEL_VARGS(fn, ...) fn(dmamux1, __VA_ARGS__) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_dmamux_40020800_CHILD_NUM 0 +#define DT_N_S_soc_S_dmamux_40020800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_dmamux_40020800_HASH jGulMrGrDMjffC0jOcX9YAYtoaIaoNYHlAm2EvPJs_w + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_dmamux_40020800_ORD 47 +#define DT_N_S_soc_S_dmamux_40020800_ORD_STR_SORTABLE 00047 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_dmamux_40020800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_dmamux_40020800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_dmamux_40020800_EXISTS 1 +#define DT_N_INST_0_st_stm32_dmamux DT_N_S_soc_S_dmamux_40020800 +#define DT_N_NODELABEL_dmamux1 DT_N_S_soc_S_dmamux_40020800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_dmamux_40020800_REG_NUM 1 +#define DT_N_S_soc_S_dmamux_40020800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_REG_IDX_0_VAL_ADDRESS 1073874944 /* 0x40020800 */ +#define DT_N_S_soc_S_dmamux_40020800_REG_IDX_0_VAL_SIZE 2048 /* 0x800 */ +#define DT_N_S_soc_S_dmamux_40020800_RANGES_NUM 0 +#define DT_N_S_soc_S_dmamux_40020800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_dmamux_40020800_IRQ_NUM 1 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_VAL_irq 11 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_dmamux_40020800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_dmamux_40020800_COMPAT_MATCHES_st_stm32_dmamux 1 +#define DT_N_S_soc_S_dmamux_40020800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_dmamux_40020800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_COMPAT_MODEL_IDX_0 "stm32-dmamux" +#define DT_N_S_soc_S_dmamux_40020800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_dmamux_40020800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_dmamux_40020800_P_reg {1073874944 /* 0x40020800 */, 2048 /* 0x800 */} +#define DT_N_S_soc_S_dmamux_40020800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_reg_IDX_0 1073874944 +#define DT_N_S_soc_S_dmamux_40020800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_reg_IDX_1 2048 +#define DT_N_S_soc_S_dmamux_40020800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_dma_channels 12 +#define DT_N_S_soc_S_dmamux_40020800_P_dma_channels_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_dma_generators 4 +#define DT_N_S_soc_S_dmamux_40020800_P_dma_generators_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_dma_requests 73 +#define DT_N_S_soc_S_dmamux_40020800_P_dma_requests_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_status "disabled" +#define DT_N_S_soc_S_dmamux_40020800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_dmamux_40020800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_dmamux_40020800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_dmamux_40020800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_dmamux_40020800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_dmamux_40020800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dmamux_40020800, status, 0) +#define DT_N_S_soc_S_dmamux_40020800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dmamux_40020800, status, 0) +#define DT_N_S_soc_S_dmamux_40020800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dmamux_40020800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dmamux_40020800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dmamux_40020800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dmamux_40020800_P_status_LEN 1 +#define DT_N_S_soc_S_dmamux_40020800_P_status_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_compatible {"st,stm32-dmamux"} +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_IDX_0 "st,stm32-dmamux" +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-dmamux +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_IDX_0_STRING_TOKEN st_stm32_dmamux +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_DMAMUX +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dmamux_40020800, compatible, 0) +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dmamux_40020800, compatible, 0) +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dmamux_40020800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dmamux_40020800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_LEN 1 +#define DT_N_S_soc_S_dmamux_40020800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_interrupts {11 /* 0xb */, 0 /* 0x0 */} +#define DT_N_S_soc_S_dmamux_40020800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_interrupts_IDX_0 11 +#define DT_N_S_soc_S_dmamux_40020800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_dmamux_40020800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_dmamux_40020800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_wakeup_source 0 +#define DT_N_S_soc_S_dmamux_40020800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_dmamux_40020800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_dmamux_40020800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/interrupt-controller@40021800 + * + * Node identifier: DT_N_S_soc_S_interrupt_controller_40021800 + * + * Binding (compatible = st,stm32g0-exti): + * $ZEPHYR_BASE\dts\bindings\interrupt-controller\st,stm32g0-exti.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_PATH "/soc/interrupt-controller@40021800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_FULL_NAME "interrupt-controller@40021800" +#define DT_N_S_soc_S_interrupt_controller_40021800_FULL_NAME_UNQUOTED interrupt-controller@40021800 +#define DT_N_S_soc_S_interrupt_controller_40021800_FULL_NAME_TOKEN interrupt_controller_40021800 +#define DT_N_S_soc_S_interrupt_controller_40021800_FULL_NAME_UPPER_TOKEN INTERRUPT_CONTROLLER_40021800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_NODELABEL(fn) fn(exti) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_NODELABEL_VARGS(fn, ...) fn(exti, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_interrupt_controller_40021800_CHILD_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_HASH 3Km89C7vSURbsI43_TcybIf3491YImWTQs8_Yt4VHqA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_ORD 48 +#define DT_N_S_soc_S_interrupt_controller_40021800_ORD_STR_SORTABLE 00048 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_EXISTS 1 +#define DT_N_INST_0_st_stm32g0_exti DT_N_S_soc_S_interrupt_controller_40021800 +#define DT_N_INST_0_st_stm32_exti DT_N_S_soc_S_interrupt_controller_40021800 +#define DT_N_NODELABEL_exti DT_N_S_soc_S_interrupt_controller_40021800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_REG_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_REG_IDX_0_VAL_ADDRESS 1073879040 /* 0x40021800 */ +#define DT_N_S_soc_S_interrupt_controller_40021800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_interrupt_controller_40021800_RANGES_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NUM 3 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_VAL_irq 5 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_VAL_irq 6 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_VAL_irq 7 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_VAL_priority 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line0_1_VAL_irq DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line0_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line0_1_VAL_priority DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line0_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line0_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line2_3_VAL_irq DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_VAL_irq +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line2_3_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line2_3_VAL_priority DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_VAL_priority +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line2_3_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line2_3_CONTROLLER DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_1_CONTROLLER +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line4_15_VAL_irq DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_VAL_irq +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line4_15_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line4_15_VAL_priority DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_VAL_priority +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line4_15_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_IRQ_NAME_line4_15_CONTROLLER DT_N_S_soc_S_interrupt_controller_40021800_IRQ_IDX_2_CONTROLLER +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_MATCHES_st_stm32g0_exti 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_MODEL_IDX_0 "stm32g0-exti" +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_MATCHES_st_stm32_exti 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_COMPAT_MODEL_IDX_1 "stm32-exti" +#define DT_N_S_soc_S_interrupt_controller_40021800_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_interrupt_controller_40021800_P_reg {1073879040 /* 0x40021800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_interrupt_controller_40021800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_reg_IDX_0 1073879040 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts {5 /* 0x5 */, 0 /* 0x0 */, 6 /* 0x6 */, 0 /* 0x0 */, 7 /* 0x7 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_0 5 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_2 6 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_3 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_4 7 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_IDX_5 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names {"line0-1", "line2-3", "line4-15"} +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_0 "line0-1" +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_0_STRING_UNQUOTED line0-1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_0_STRING_TOKEN line0_1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN LINE0_1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_1 "line2-3" +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_1_STRING_UNQUOTED line2-3 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_1_STRING_TOKEN line2_3 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_1_STRING_UPPER_TOKEN LINE2_3 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_2 "line4-15" +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_2_STRING_UNQUOTED line4-15 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_2_STRING_TOKEN line4_15 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_IDX_2_STRING_UPPER_TOKEN LINE4_15 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 0) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 1) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 2) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 2) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 1, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 2, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, interrupt_names, 2, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_LEN 3 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_num_lines 64 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_num_lines_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_num_gpio_lines 16 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_num_gpio_lines_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges {0 /* 0x0 */, 2 /* 0x2 */, 2 /* 0x2 */, 2 /* 0x2 */, 4 /* 0x4 */, 12 /* 0xc */} +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_0 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_1 2 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_2 2 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_3 2 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_4 4 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_IDX_5 12 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 0) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 1) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 2) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 3) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 4) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 5) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 3) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 4) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 5) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 1, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 2, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 3, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 4, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 5, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, line_ranges, 5, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_LEN 6 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_line_ranges_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible {"st,stm32g0-exti", "st,stm32-exti"} +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_0 "st,stm32g0-exti" +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32g0-exti +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_0_STRING_TOKEN st_stm32g0_exti +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32G0_EXTI +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_1 "st,stm32-exti" +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-exti +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_1_STRING_TOKEN st_stm32_exti +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_EXTI +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 0) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 1) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 1) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_LEN 2 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_VAL_bits 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0, bits) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0, bits) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_LEN 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_wakeup_source 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_controller 1 +#define DT_N_S_soc_S_interrupt_controller_40021800_P_interrupt_controller_EXISTS 1 + +/* + * Devicetree node: /soc/rcc@40021000/reset-controller + * + * Node identifier: DT_N_S_soc_S_rcc_40021000_S_reset_controller + * + * Binding (compatible = st,stm32-rcc-rctl): + * $ZEPHYR_BASE\dts\bindings\reset\st,stm32-rcc-rctl.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_PATH "/soc/rcc@40021000/reset-controller" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FULL_NAME "reset-controller" +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FULL_NAME_UNQUOTED reset-controller +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FULL_NAME_TOKEN reset_controller +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FULL_NAME_UPPER_TOKEN RESET_CONTROLLER + +/* Node parent (/soc/rcc@40021000) identifier: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_PARENT DT_N_S_soc_S_rcc_40021000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_NODELABEL(fn) fn(rctl) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_NODELABEL_VARGS(fn, ...) fn(rctl, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_rcc_40021000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_CHILD_NUM 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_HASH IG1ObzgWVlEiYIYYv8tGMqRz03UFbMoci7_3L65c4dQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_ORD 49 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_ORD_STR_SORTABLE 00049 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_SUPPORTS_ORDS \ + 50, /* /soc/serial@40004400 */ \ + 51, /* /soc/serial@40004800 */ \ + 52, /* /soc/serial@40004c00 */ \ + 53, /* /soc/serial@40005000 */ \ + 54, /* /soc/serial@40008000 */ \ + 55, /* /soc/serial@40008400 */ \ + 58, /* /soc/serial@40013800 */ \ + 59, /* /soc/serial@40013c00 */ \ + 92, /* /soc/timers@40000000 */ \ + 95, /* /soc/timers@40000400 */ \ + 99, /* /soc/timers@40000800 */ \ + 102, /* /soc/timers@40001000 */ \ + 104, /* /soc/timers@40001400 */ \ + 106, /* /soc/timers@40002000 */ \ + 109, /* /soc/timers@40012c00 */ \ + 113, /* /soc/timers@40014000 */ \ + 116, /* /soc/timers@40014400 */ \ + 119, /* /soc/timers@40014800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_EXISTS 1 +#define DT_N_INST_0_st_stm32_rcc_rctl DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_NODELABEL_rctl DT_N_S_soc_S_rcc_40021000_S_reset_controller + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_REG_NUM 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_RANGES_NUM 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_IRQ_NUM 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_IRQ_LEVEL 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_COMPAT_MATCHES_st_stm32_rcc_rctl 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_COMPAT_MODEL_IDX_0 "stm32-rcc-rctl" +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_set_bit_to_deassert 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_set_bit_to_deassert_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible {"st,stm32-rcc-rctl"} +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_IDX_0 "st,stm32-rcc-rctl" +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-rcc-rctl +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_IDX_0_STRING_TOKEN st_stm32_rcc_rctl +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_RCC_RCTL +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, compatible, 0) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, compatible, 0) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_LEN 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_wakeup_source 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rcc_40021000_S_reset_controller_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40004400 + * + * Node identifier: DT_N_S_soc_S_serial_40004400 + * + * Binding (compatible = st,stm32-usart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-usart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40004400_PATH "/soc/serial@40004400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40004400_FULL_NAME "serial@40004400" +#define DT_N_S_soc_S_serial_40004400_FULL_NAME_UNQUOTED serial@40004400 +#define DT_N_S_soc_S_serial_40004400_FULL_NAME_TOKEN serial_40004400 +#define DT_N_S_soc_S_serial_40004400_FULL_NAME_UPPER_TOKEN SERIAL_40004400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40004400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40004400_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40004400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40004400_FOREACH_NODELABEL(fn) fn(usart2) +#define DT_N_S_soc_S_serial_40004400_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart2, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40004400_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40004400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40004400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40004400_HASH w0whRjCvTBPyVty9dxjB3Bsl1nzzH1xRQTJifgUAAKQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40004400_ORD 50 +#define DT_N_S_soc_S_serial_40004400_ORD_STR_SORTABLE 00050 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40004400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40004400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40004400_EXISTS 1 +#define DT_N_INST_1_st_stm32_usart DT_N_S_soc_S_serial_40004400 +#define DT_N_INST_1_st_stm32_uart DT_N_S_soc_S_serial_40004400 +#define DT_N_NODELABEL_usart2 DT_N_S_soc_S_serial_40004400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40004400_REG_NUM 1 +#define DT_N_S_soc_S_serial_40004400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_REG_IDX_0_VAL_ADDRESS 1073759232 /* 0x40004400 */ +#define DT_N_S_soc_S_serial_40004400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40004400_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40004400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40004400_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_VAL_irq 28 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40004400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_MATCHES_st_stm32_usart 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40004400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_MODEL_IDX_0 "stm32-usart" +#define DT_N_S_soc_S_serial_40004400_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40004400_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40004400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40004400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40004400_P_reg {1073759232 /* 0x40004400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40004400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_reg_IDX_0 1073759232 +#define DT_N_S_soc_S_serial_40004400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40004400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_VAL_bits 131072 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40004400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40004400, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004400, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40004400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40004400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004400, clocks, 0) +#define DT_N_S_soc_S_serial_40004400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, clocks, 0) +#define DT_N_S_soc_S_serial_40004400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40004400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_VAL_id 1425 +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40004400, resets, 0, id) +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, resets, 0, id) +#define DT_N_S_soc_S_serial_40004400_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40004400_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004400, resets, 0) +#define DT_N_S_soc_S_serial_40004400_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, resets, 0) +#define DT_N_S_soc_S_serial_40004400_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40004400_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_interrupts {28 /* 0x1c */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40004400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_interrupts_IDX_0 28 +#define DT_N_S_soc_S_serial_40004400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40004400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40004400_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004400, stop_bits, 0) +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, stop_bits, 0) +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004400, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004400, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40004400_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_data_bits 8 +#define DT_N_S_soc_S_serial_40004400_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40004400_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_single_wire 0 +#define DT_N_S_soc_S_serial_40004400_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40004400_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_de_enable 0 +#define DT_N_S_soc_S_serial_40004400_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40004400_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40004400_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_de_invert 0 +#define DT_N_S_soc_S_serial_40004400_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40004400_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40004400_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_parity "none" +#define DT_N_S_soc_S_serial_40004400_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40004400_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40004400_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40004400_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40004400_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40004400_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004400, parity, 0) +#define DT_N_S_soc_S_serial_40004400_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, parity, 0) +#define DT_N_S_soc_S_serial_40004400_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004400, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004400, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40004400_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_status "disabled" +#define DT_N_S_soc_S_serial_40004400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40004400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40004400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40004400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40004400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40004400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004400, status, 0) +#define DT_N_S_soc_S_serial_40004400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, status, 0) +#define DT_N_S_soc_S_serial_40004400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40004400_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_compatible {"st,stm32-usart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_0 "st,stm32-usart" +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usart +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_0_STRING_TOKEN st_stm32_usart +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USART +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40004400_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40004400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004400, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40004400, compatible, 1) +#define DT_N_S_soc_S_serial_40004400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004400, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004400, compatible, 1) +#define DT_N_S_soc_S_serial_40004400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004400, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40004400, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004400, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004400, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004400_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40004400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40004400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40004400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40004400_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40004400_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40004400_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40004400_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40004800 + * + * Node identifier: DT_N_S_soc_S_serial_40004800 + * + * Binding (compatible = st,stm32-usart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-usart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40004800_PATH "/soc/serial@40004800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40004800_FULL_NAME "serial@40004800" +#define DT_N_S_soc_S_serial_40004800_FULL_NAME_UNQUOTED serial@40004800 +#define DT_N_S_soc_S_serial_40004800_FULL_NAME_TOKEN serial_40004800 +#define DT_N_S_soc_S_serial_40004800_FULL_NAME_UPPER_TOKEN SERIAL_40004800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40004800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40004800_CHILD_IDX 31 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40004800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40004800_FOREACH_NODELABEL(fn) fn(usart3) +#define DT_N_S_soc_S_serial_40004800_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart3, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40004800_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40004800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40004800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40004800_HASH zEiuovs75QHyumn1pL5rvTd5x6H1bdnak278L4bYuj0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40004800_ORD 51 +#define DT_N_S_soc_S_serial_40004800_ORD_STR_SORTABLE 00051 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40004800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40004800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40004800_EXISTS 1 +#define DT_N_INST_2_st_stm32_usart DT_N_S_soc_S_serial_40004800 +#define DT_N_INST_3_st_stm32_uart DT_N_S_soc_S_serial_40004800 +#define DT_N_NODELABEL_usart3 DT_N_S_soc_S_serial_40004800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40004800_REG_NUM 1 +#define DT_N_S_soc_S_serial_40004800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_REG_IDX_0_VAL_ADDRESS 1073760256 /* 0x40004800 */ +#define DT_N_S_soc_S_serial_40004800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40004800_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40004800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40004800_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40004800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_MATCHES_st_stm32_usart 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40004800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_MODEL_IDX_0 "stm32-usart" +#define DT_N_S_soc_S_serial_40004800_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40004800_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40004800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40004800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40004800_P_reg {1073760256 /* 0x40004800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40004800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_reg_IDX_0 1073760256 +#define DT_N_S_soc_S_serial_40004800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40004800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_VAL_bits 262144 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40004800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40004800, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004800, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40004800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40004800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004800, clocks, 0) +#define DT_N_S_soc_S_serial_40004800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, clocks, 0) +#define DT_N_S_soc_S_serial_40004800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40004800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_VAL_id 1426 +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40004800, resets, 0, id) +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, resets, 0, id) +#define DT_N_S_soc_S_serial_40004800_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40004800_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004800, resets, 0) +#define DT_N_S_soc_S_serial_40004800_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, resets, 0) +#define DT_N_S_soc_S_serial_40004800_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40004800_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_interrupts {29 /* 0x1d */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40004800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_serial_40004800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40004800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40004800_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004800, stop_bits, 0) +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, stop_bits, 0) +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004800, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004800, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40004800_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_data_bits 8 +#define DT_N_S_soc_S_serial_40004800_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40004800_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_single_wire 0 +#define DT_N_S_soc_S_serial_40004800_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40004800_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_de_enable 0 +#define DT_N_S_soc_S_serial_40004800_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40004800_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40004800_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_de_invert 0 +#define DT_N_S_soc_S_serial_40004800_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40004800_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40004800_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_parity "none" +#define DT_N_S_soc_S_serial_40004800_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40004800_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40004800_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40004800_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40004800_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40004800_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004800, parity, 0) +#define DT_N_S_soc_S_serial_40004800_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, parity, 0) +#define DT_N_S_soc_S_serial_40004800_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004800, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004800, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40004800_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_status "disabled" +#define DT_N_S_soc_S_serial_40004800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40004800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40004800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40004800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40004800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40004800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004800, status, 0) +#define DT_N_S_soc_S_serial_40004800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, status, 0) +#define DT_N_S_soc_S_serial_40004800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40004800_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_compatible {"st,stm32-usart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_0 "st,stm32-usart" +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usart +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_0_STRING_TOKEN st_stm32_usart +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USART +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40004800_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40004800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004800, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40004800, compatible, 1) +#define DT_N_S_soc_S_serial_40004800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004800, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004800, compatible, 1) +#define DT_N_S_soc_S_serial_40004800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004800, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40004800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004800, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004800_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40004800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40004800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40004800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40004800_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40004800_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40004800_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40004800_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40004c00 + * + * Node identifier: DT_N_S_soc_S_serial_40004c00 + * + * Binding (compatible = st,stm32-usart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-usart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40004c00_PATH "/soc/serial@40004c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40004c00_FULL_NAME "serial@40004c00" +#define DT_N_S_soc_S_serial_40004c00_FULL_NAME_UNQUOTED serial@40004c00 +#define DT_N_S_soc_S_serial_40004c00_FULL_NAME_TOKEN serial_40004c00 +#define DT_N_S_soc_S_serial_40004c00_FULL_NAME_UPPER_TOKEN SERIAL_40004C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40004c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40004c00_CHILD_IDX 32 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40004c00_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40004c00_FOREACH_NODELABEL(fn) fn(usart4) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart4, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40004c00_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40004c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40004c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40004c00_HASH qw6sySCqGO4wCPwXm_EFlFNv1NqVYdGrZFXhKaRqK7U + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40004c00_ORD 52 +#define DT_N_S_soc_S_serial_40004c00_ORD_STR_SORTABLE 00052 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40004c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40004c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40004c00_EXISTS 1 +#define DT_N_INST_3_st_stm32_usart DT_N_S_soc_S_serial_40004c00 +#define DT_N_INST_4_st_stm32_uart DT_N_S_soc_S_serial_40004c00 +#define DT_N_NODELABEL_usart4 DT_N_S_soc_S_serial_40004c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40004c00_REG_NUM 1 +#define DT_N_S_soc_S_serial_40004c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_REG_IDX_0_VAL_ADDRESS 1073761280 /* 0x40004c00 */ +#define DT_N_S_soc_S_serial_40004c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40004c00_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40004c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40004c00_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40004c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_MATCHES_st_stm32_usart 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40004c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_MODEL_IDX_0 "stm32-usart" +#define DT_N_S_soc_S_serial_40004c00_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40004c00_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40004c00_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40004c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40004c00_P_reg {1073761280 /* 0x40004c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40004c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_reg_IDX_0 1073761280 +#define DT_N_S_soc_S_serial_40004c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40004c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_VAL_bits 524288 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40004c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40004c00, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004c00, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40004c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004c00, clocks, 0) +#define DT_N_S_soc_S_serial_40004c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, clocks, 0) +#define DT_N_S_soc_S_serial_40004c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_VAL_id 1427 +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40004c00, resets, 0, id) +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, resets, 0, id) +#define DT_N_S_soc_S_serial_40004c00_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40004c00_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004c00, resets, 0) +#define DT_N_S_soc_S_serial_40004c00_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, resets, 0) +#define DT_N_S_soc_S_serial_40004c00_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004c00, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004c00, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_interrupts {29 /* 0x1d */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40004c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_serial_40004c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40004c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40004c00_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004c00, stop_bits, 0) +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, stop_bits, 0) +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004c00, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004c00, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_data_bits 8 +#define DT_N_S_soc_S_serial_40004c00_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40004c00_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_single_wire 0 +#define DT_N_S_soc_S_serial_40004c00_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40004c00_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_de_enable 0 +#define DT_N_S_soc_S_serial_40004c00_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40004c00_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40004c00_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_de_invert 0 +#define DT_N_S_soc_S_serial_40004c00_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40004c00_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40004c00_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_parity "none" +#define DT_N_S_soc_S_serial_40004c00_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40004c00_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40004c00_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40004c00_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40004c00_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40004c00_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004c00, parity, 0) +#define DT_N_S_soc_S_serial_40004c00_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, parity, 0) +#define DT_N_S_soc_S_serial_40004c00_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004c00, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004c00, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_status "disabled" +#define DT_N_S_soc_S_serial_40004c00_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40004c00_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40004c00_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40004c00_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40004c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40004c00_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004c00, status, 0) +#define DT_N_S_soc_S_serial_40004c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, status, 0) +#define DT_N_S_soc_S_serial_40004c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40004c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_compatible {"st,stm32-usart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_0 "st,stm32-usart" +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usart +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_usart +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USART +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40004c00_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40004c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40004c00, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40004c00, compatible, 1) +#define DT_N_S_soc_S_serial_40004c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40004c00, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004c00, compatible, 1) +#define DT_N_S_soc_S_serial_40004c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40004c00, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40004c00, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40004c00, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40004c00, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40004c00_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40004c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40004c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40004c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40004c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40004c00_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40004c00_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40004c00_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40005000 + * + * Node identifier: DT_N_S_soc_S_serial_40005000 + * + * Binding (compatible = st,stm32-usart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-usart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40005000_PATH "/soc/serial@40005000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40005000_FULL_NAME "serial@40005000" +#define DT_N_S_soc_S_serial_40005000_FULL_NAME_UNQUOTED serial@40005000 +#define DT_N_S_soc_S_serial_40005000_FULL_NAME_TOKEN serial_40005000 +#define DT_N_S_soc_S_serial_40005000_FULL_NAME_UPPER_TOKEN SERIAL_40005000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40005000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40005000_CHILD_IDX 37 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40005000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40005000_FOREACH_NODELABEL(fn) fn(usart5) +#define DT_N_S_soc_S_serial_40005000_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart5, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40005000_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40005000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40005000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40005000_HASH zMMX5P6gmfqIczU7IzsjM4mPclQdCNjtpO0LqCzLhTI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40005000_ORD 53 +#define DT_N_S_soc_S_serial_40005000_ORD_STR_SORTABLE 00053 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40005000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40005000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40005000_EXISTS 1 +#define DT_N_INST_4_st_stm32_usart DT_N_S_soc_S_serial_40005000 +#define DT_N_INST_5_st_stm32_uart DT_N_S_soc_S_serial_40005000 +#define DT_N_NODELABEL_usart5 DT_N_S_soc_S_serial_40005000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40005000_REG_NUM 1 +#define DT_N_S_soc_S_serial_40005000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_REG_IDX_0_VAL_ADDRESS 1073762304 /* 0x40005000 */ +#define DT_N_S_soc_S_serial_40005000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40005000_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40005000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40005000_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40005000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_MATCHES_st_stm32_usart 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40005000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_MODEL_IDX_0 "stm32-usart" +#define DT_N_S_soc_S_serial_40005000_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40005000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40005000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40005000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40005000_P_reg {1073762304 /* 0x40005000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40005000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_reg_IDX_0 1073762304 +#define DT_N_S_soc_S_serial_40005000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40005000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_VAL_bits 256 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40005000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40005000, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40005000, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40005000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40005000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40005000, clocks, 0) +#define DT_N_S_soc_S_serial_40005000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, clocks, 0) +#define DT_N_S_soc_S_serial_40005000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40005000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40005000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40005000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_VAL_id 1416 +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40005000, resets, 0, id) +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, resets, 0, id) +#define DT_N_S_soc_S_serial_40005000_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40005000_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40005000, resets, 0) +#define DT_N_S_soc_S_serial_40005000_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, resets, 0) +#define DT_N_S_soc_S_serial_40005000_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40005000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40005000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40005000_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_interrupts {29 /* 0x1d */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40005000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_serial_40005000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40005000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40005000_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40005000, stop_bits, 0) +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, stop_bits, 0) +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40005000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40005000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40005000_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_data_bits 8 +#define DT_N_S_soc_S_serial_40005000_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40005000_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_single_wire 0 +#define DT_N_S_soc_S_serial_40005000_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40005000_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_de_enable 0 +#define DT_N_S_soc_S_serial_40005000_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40005000_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40005000_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_de_invert 0 +#define DT_N_S_soc_S_serial_40005000_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40005000_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40005000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_parity "none" +#define DT_N_S_soc_S_serial_40005000_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40005000_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40005000_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40005000_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40005000_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40005000_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40005000, parity, 0) +#define DT_N_S_soc_S_serial_40005000_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, parity, 0) +#define DT_N_S_soc_S_serial_40005000_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40005000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40005000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40005000_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_status "disabled" +#define DT_N_S_soc_S_serial_40005000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40005000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40005000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40005000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40005000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40005000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40005000, status, 0) +#define DT_N_S_soc_S_serial_40005000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, status, 0) +#define DT_N_S_soc_S_serial_40005000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40005000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40005000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40005000_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_compatible {"st,stm32-usart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_0 "st,stm32-usart" +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usart +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_0_STRING_TOKEN st_stm32_usart +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USART +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40005000_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40005000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40005000, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40005000, compatible, 1) +#define DT_N_S_soc_S_serial_40005000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40005000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40005000, compatible, 1) +#define DT_N_S_soc_S_serial_40005000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40005000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40005000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40005000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40005000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40005000_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40005000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40005000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40005000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40005000_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40005000_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40005000_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40005000_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40008000 + * + * Node identifier: DT_N_S_soc_S_serial_40008000 + * + * Binding (compatible = st,stm32-lpuart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-lpuart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40008000_PATH "/soc/serial@40008000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40008000_FULL_NAME "serial@40008000" +#define DT_N_S_soc_S_serial_40008000_FULL_NAME_UNQUOTED serial@40008000 +#define DT_N_S_soc_S_serial_40008000_FULL_NAME_TOKEN serial_40008000 +#define DT_N_S_soc_S_serial_40008000_FULL_NAME_UPPER_TOKEN SERIAL_40008000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40008000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40008000_CHILD_IDX 25 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40008000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40008000_FOREACH_NODELABEL(fn) fn(lpuart1) +#define DT_N_S_soc_S_serial_40008000_FOREACH_NODELABEL_VARGS(fn, ...) fn(lpuart1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40008000_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40008000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40008000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40008000_HASH m3LA5ahuvua6JbY3wkM444Ci5dNOInJTrqWFcetRNbo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40008000_ORD 54 +#define DT_N_S_soc_S_serial_40008000_ORD_STR_SORTABLE 00054 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40008000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40008000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40008000_EXISTS 1 +#define DT_N_INST_0_st_stm32_lpuart DT_N_S_soc_S_serial_40008000 +#define DT_N_INST_2_st_stm32_uart DT_N_S_soc_S_serial_40008000 +#define DT_N_NODELABEL_lpuart1 DT_N_S_soc_S_serial_40008000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40008000_REG_NUM 1 +#define DT_N_S_soc_S_serial_40008000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_REG_IDX_0_VAL_ADDRESS 1073774592 /* 0x40008000 */ +#define DT_N_S_soc_S_serial_40008000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40008000_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40008000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40008000_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40008000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_MATCHES_st_stm32_lpuart 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40008000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_MODEL_IDX_0 "stm32-lpuart" +#define DT_N_S_soc_S_serial_40008000_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40008000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40008000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40008000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40008000_P_reg {1073774592 /* 0x40008000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40008000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_reg_IDX_0 1073774592 +#define DT_N_S_soc_S_serial_40008000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40008000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_VAL_bits 1048576 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40008000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40008000, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40008000, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40008000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40008000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008000, clocks, 0) +#define DT_N_S_soc_S_serial_40008000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, clocks, 0) +#define DT_N_S_soc_S_serial_40008000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40008000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_VAL_id 1428 +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40008000, resets, 0, id) +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, resets, 0, id) +#define DT_N_S_soc_S_serial_40008000_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40008000_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008000, resets, 0) +#define DT_N_S_soc_S_serial_40008000_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, resets, 0) +#define DT_N_S_soc_S_serial_40008000_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40008000_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_interrupts {29 /* 0x1d */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40008000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_serial_40008000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40008000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40008000_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008000, stop_bits, 0) +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, stop_bits, 0) +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40008000_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_data_bits 8 +#define DT_N_S_soc_S_serial_40008000_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40008000_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_single_wire 0 +#define DT_N_S_soc_S_serial_40008000_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40008000_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_de_enable 0 +#define DT_N_S_soc_S_serial_40008000_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40008000_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40008000_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_de_invert 0 +#define DT_N_S_soc_S_serial_40008000_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40008000_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40008000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_parity "none" +#define DT_N_S_soc_S_serial_40008000_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40008000_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40008000_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40008000_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40008000_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40008000_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008000, parity, 0) +#define DT_N_S_soc_S_serial_40008000_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, parity, 0) +#define DT_N_S_soc_S_serial_40008000_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40008000_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_status "disabled" +#define DT_N_S_soc_S_serial_40008000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40008000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40008000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40008000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40008000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40008000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008000, status, 0) +#define DT_N_S_soc_S_serial_40008000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, status, 0) +#define DT_N_S_soc_S_serial_40008000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40008000_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_compatible {"st,stm32-lpuart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_0 "st,stm32-lpuart" +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-lpuart +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_0_STRING_TOKEN st_stm32_lpuart +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_LPUART +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40008000_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40008000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008000, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40008000, compatible, 1) +#define DT_N_S_soc_S_serial_40008000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40008000, compatible, 1) +#define DT_N_S_soc_S_serial_40008000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40008000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40008000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008000_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40008000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40008000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40008000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40008000_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40008000_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40008000_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40008000_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40008400 + * + * Node identifier: DT_N_S_soc_S_serial_40008400 + * + * Binding (compatible = st,stm32-lpuart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-lpuart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40008400_PATH "/soc/serial@40008400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40008400_FULL_NAME "serial@40008400" +#define DT_N_S_soc_S_serial_40008400_FULL_NAME_UNQUOTED serial@40008400 +#define DT_N_S_soc_S_serial_40008400_FULL_NAME_TOKEN serial_40008400 +#define DT_N_S_soc_S_serial_40008400_FULL_NAME_UPPER_TOKEN SERIAL_40008400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40008400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40008400_CHILD_IDX 39 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40008400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40008400_FOREACH_NODELABEL(fn) fn(lpuart2) +#define DT_N_S_soc_S_serial_40008400_FOREACH_NODELABEL_VARGS(fn, ...) fn(lpuart2, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40008400_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40008400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40008400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40008400_HASH V__YFOpnq9e4T1BSF3dikWkEp6SduDSERJDTpEI8JzM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40008400_ORD 55 +#define DT_N_S_soc_S_serial_40008400_ORD_STR_SORTABLE 00055 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40008400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40008400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40008400_EXISTS 1 +#define DT_N_INST_1_st_stm32_lpuart DT_N_S_soc_S_serial_40008400 +#define DT_N_INST_7_st_stm32_uart DT_N_S_soc_S_serial_40008400 +#define DT_N_NODELABEL_lpuart2 DT_N_S_soc_S_serial_40008400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40008400_REG_NUM 1 +#define DT_N_S_soc_S_serial_40008400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_REG_IDX_0_VAL_ADDRESS 1073775616 /* 0x40008400 */ +#define DT_N_S_soc_S_serial_40008400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40008400_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40008400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40008400_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_VAL_irq 28 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40008400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_MATCHES_st_stm32_lpuart 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40008400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_MODEL_IDX_0 "stm32-lpuart" +#define DT_N_S_soc_S_serial_40008400_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40008400_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40008400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40008400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40008400_P_reg {1073775616 /* 0x40008400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40008400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_reg_IDX_0 1073775616 +#define DT_N_S_soc_S_serial_40008400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40008400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_VAL_bits 128 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40008400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40008400, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40008400, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40008400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40008400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008400, clocks, 0) +#define DT_N_S_soc_S_serial_40008400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, clocks, 0) +#define DT_N_S_soc_S_serial_40008400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40008400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_VAL_id 1415 +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40008400, resets, 0, id) +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, resets, 0, id) +#define DT_N_S_soc_S_serial_40008400_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40008400_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008400, resets, 0) +#define DT_N_S_soc_S_serial_40008400_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, resets, 0) +#define DT_N_S_soc_S_serial_40008400_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40008400_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_interrupts {28 /* 0x1c */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40008400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_interrupts_IDX_0 28 +#define DT_N_S_soc_S_serial_40008400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40008400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40008400_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008400, stop_bits, 0) +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, stop_bits, 0) +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008400, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008400, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40008400_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_data_bits 8 +#define DT_N_S_soc_S_serial_40008400_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40008400_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_single_wire 0 +#define DT_N_S_soc_S_serial_40008400_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40008400_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_de_enable 0 +#define DT_N_S_soc_S_serial_40008400_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40008400_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40008400_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_de_invert 0 +#define DT_N_S_soc_S_serial_40008400_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40008400_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40008400_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_parity "none" +#define DT_N_S_soc_S_serial_40008400_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40008400_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40008400_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40008400_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40008400_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40008400_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008400, parity, 0) +#define DT_N_S_soc_S_serial_40008400_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, parity, 0) +#define DT_N_S_soc_S_serial_40008400_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008400, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008400, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40008400_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_status "disabled" +#define DT_N_S_soc_S_serial_40008400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40008400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40008400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40008400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40008400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40008400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008400, status, 0) +#define DT_N_S_soc_S_serial_40008400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, status, 0) +#define DT_N_S_soc_S_serial_40008400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40008400_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_compatible {"st,stm32-lpuart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_0 "st,stm32-lpuart" +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-lpuart +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_0_STRING_TOKEN st_stm32_lpuart +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_LPUART +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40008400_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40008400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40008400, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40008400, compatible, 1) +#define DT_N_S_soc_S_serial_40008400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40008400, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40008400, compatible, 1) +#define DT_N_S_soc_S_serial_40008400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40008400, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40008400, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40008400, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40008400, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40008400_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40008400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40008400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40008400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40008400_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40008400_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40008400_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40008400_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/usart1_rx_pc5 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_PATH "/soc/pin-controller@50000000/usart1_rx_pc5" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FULL_NAME "usart1_rx_pc5" +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FULL_NAME_UNQUOTED usart1_rx_pc5 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FULL_NAME_TOKEN usart1_rx_pc5 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FULL_NAME_UPPER_TOKEN USART1_RX_PC5 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_NODELABEL(fn) fn(usart1_rx_pc5) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart1_rx_pc5, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_HASH 5kphRz8x0jkUD_Y8BsaXF9BFAROazjml0dpLloDEC20 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_ORD 56 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_ORD_STR_SORTABLE 00056 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_REQUIRES_ORDS \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_SUPPORTS_ORDS \ + 58, /* /soc/serial@40013800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_EXISTS 1 +#define DT_N_NODELABEL_usart1_rx_pc5 DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_REG_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_pinmux 1185 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_pinmux_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_STRING_UNQUOTED low-speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_STRING_TOKEN low_speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_STRING_UPPER_TOKEN LOW_SPEED +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_IDX_0 "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_IDX_0_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_slew_rate_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_bias_disable 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_bias_disable_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_bias_pull_up 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_bias_pull_up_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_bias_pull_down 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_bias_pull_down_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_drive_push_pull 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_drive_push_pull_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_drive_open_drain 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_drive_open_drain_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_output_low 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_output_low_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_output_high 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5_P_output_high_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/usart1_tx_pc4 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_PATH "/soc/pin-controller@50000000/usart1_tx_pc4" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FULL_NAME "usart1_tx_pc4" +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FULL_NAME_UNQUOTED usart1_tx_pc4 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FULL_NAME_TOKEN usart1_tx_pc4 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FULL_NAME_UPPER_TOKEN USART1_TX_PC4 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_NODELABEL(fn) fn(usart1_tx_pc4) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart1_tx_pc4, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_HASH lqWKIzuL5UqER5MumtNXBEPodWtEhd4H17HvHbQi2r0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_ORD 57 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_ORD_STR_SORTABLE 00057 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_REQUIRES_ORDS \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_SUPPORTS_ORDS \ + 58, /* /soc/serial@40013800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_EXISTS 1 +#define DT_N_NODELABEL_usart1_tx_pc4 DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_REG_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_pinmux 1153 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_pinmux_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_STRING_UNQUOTED low-speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_STRING_TOKEN low_speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_STRING_UPPER_TOKEN LOW_SPEED +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_IDX_0 "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_IDX_0_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_slew_rate_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_bias_disable 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_bias_disable_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_bias_pull_up 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_bias_pull_up_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_bias_pull_down 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_bias_pull_down_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_drive_push_pull 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_drive_push_pull_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_drive_open_drain 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_drive_open_drain_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_output_low 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_output_low_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_output_high 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4_P_output_high_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40013800 + * + * Node identifier: DT_N_S_soc_S_serial_40013800 + * + * Binding (compatible = st,stm32-usart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-usart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40013800_PATH "/soc/serial@40013800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40013800_FULL_NAME "serial@40013800" +#define DT_N_S_soc_S_serial_40013800_FULL_NAME_UNQUOTED serial@40013800 +#define DT_N_S_soc_S_serial_40013800_FULL_NAME_TOKEN serial_40013800 +#define DT_N_S_soc_S_serial_40013800_FULL_NAME_UPPER_TOKEN SERIAL_40013800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40013800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40013800_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40013800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40013800_FOREACH_NODELABEL(fn) fn(usart1) +#define DT_N_S_soc_S_serial_40013800_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40013800_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40013800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40013800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40013800_HASH Ekd_nQjwNx1R3lqiZl1FuXwHyvPZFcfnjksadzf44zc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40013800_ORD 58 +#define DT_N_S_soc_S_serial_40013800_ORD_STR_SORTABLE 00058 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40013800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ \ + 56, /* /soc/pin-controller@50000000/usart1_rx_pc5 */ \ + 57, /* /soc/pin-controller@50000000/usart1_tx_pc4 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40013800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40013800_EXISTS 1 +#define DT_N_INST_0_st_stm32_usart DT_N_S_soc_S_serial_40013800 +#define DT_N_INST_0_st_stm32_uart DT_N_S_soc_S_serial_40013800 +#define DT_N_NODELABEL_usart1 DT_N_S_soc_S_serial_40013800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40013800_REG_NUM 1 +#define DT_N_S_soc_S_serial_40013800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_REG_IDX_0_VAL_ADDRESS 1073821696 /* 0x40013800 */ +#define DT_N_S_soc_S_serial_40013800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40013800_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40013800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40013800_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_VAL_irq 27 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40013800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_MATCHES_st_stm32_usart 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40013800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_MODEL_IDX_0 "stm32-usart" +#define DT_N_S_soc_S_serial_40013800_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40013800_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40013800_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40013800_PINCTRL_NUM 1 +#define DT_N_S_soc_S_serial_40013800_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_serial_40013800_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_serial_40013800_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_serial_40013800_PINCTRL_NAME_default_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4 +#define DT_N_S_soc_S_serial_40013800_PINCTRL_NAME_default_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40013800_P_reg {1073821696 /* 0x40013800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40013800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_reg_IDX_0 1073821696 +#define DT_N_S_soc_S_serial_40013800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40013800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_VAL_bits 16384 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40013800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40013800, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013800, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40013800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40013800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, clocks, 0) +#define DT_N_S_soc_S_serial_40013800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, clocks, 0) +#define DT_N_S_soc_S_serial_40013800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40013800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_VAL_id 1550 +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40013800, resets, 0, id) +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, resets, 0, id) +#define DT_N_S_soc_S_serial_40013800_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40013800_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, resets, 0) +#define DT_N_S_soc_S_serial_40013800_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, resets, 0) +#define DT_N_S_soc_S_serial_40013800_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40013800_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_interrupts {27 /* 0x1b */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40013800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_interrupts_IDX_0 27 +#define DT_N_S_soc_S_serial_40013800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40013800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40013800_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, stop_bits, 0) +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, stop_bits, 0) +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40013800_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_data_bits 8 +#define DT_N_S_soc_S_serial_40013800_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40013800_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_single_wire 0 +#define DT_N_S_soc_S_serial_40013800_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40013800_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_IDX_0 DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_IDX_1 DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 0) \ + fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 1) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 1) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013800, pinctrl_0, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_LEN 2 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, pinctrl_names, 0) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, pinctrl_names, 0) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_serial_40013800_P_pinctrl_names_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_de_enable 0 +#define DT_N_S_soc_S_serial_40013800_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40013800_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40013800_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_de_invert 0 +#define DT_N_S_soc_S_serial_40013800_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40013800_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40013800_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_parity "none" +#define DT_N_S_soc_S_serial_40013800_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40013800_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40013800_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40013800_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40013800_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40013800_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, parity, 0) +#define DT_N_S_soc_S_serial_40013800_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, parity, 0) +#define DT_N_S_soc_S_serial_40013800_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40013800_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_status "okay" +#define DT_N_S_soc_S_serial_40013800_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_serial_40013800_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_serial_40013800_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_serial_40013800_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_serial_40013800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40013800_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, status, 0) +#define DT_N_S_soc_S_serial_40013800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, status, 0) +#define DT_N_S_soc_S_serial_40013800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40013800_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_compatible {"st,stm32-usart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_0 "st,stm32-usart" +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usart +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_0_STRING_TOKEN st_stm32_usart +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USART +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40013800_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40013800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013800, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40013800, compatible, 1) +#define DT_N_S_soc_S_serial_40013800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013800, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013800, compatible, 1) +#define DT_N_S_soc_S_serial_40013800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013800, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40013800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013800, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013800_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40013800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40013800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40013800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40013800_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40013800_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40013800_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40013800_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/serial@40013c00 + * + * Node identifier: DT_N_S_soc_S_serial_40013c00 + * + * Binding (compatible = st,stm32-usart): + * $ZEPHYR_BASE\dts\bindings\serial\st,stm32-usart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_serial_40013c00_PATH "/soc/serial@40013c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_serial_40013c00_FULL_NAME "serial@40013c00" +#define DT_N_S_soc_S_serial_40013c00_FULL_NAME_UNQUOTED serial@40013c00 +#define DT_N_S_soc_S_serial_40013c00_FULL_NAME_TOKEN serial_40013c00 +#define DT_N_S_soc_S_serial_40013c00_FULL_NAME_UPPER_TOKEN SERIAL_40013C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_serial_40013c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_serial_40013c00_CHILD_IDX 38 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_serial_40013c00_NODELABEL_NUM 1 +#define DT_N_S_soc_S_serial_40013c00_FOREACH_NODELABEL(fn) fn(usart6) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(usart6, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_serial_40013c00_CHILD_NUM 0 +#define DT_N_S_soc_S_serial_40013c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_serial_40013c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_serial_40013c00_HASH qfwTM3DLo888CjOqiRBERRCv7Zh_S_kzbkhLYPPGcAE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_serial_40013c00_ORD 59 +#define DT_N_S_soc_S_serial_40013c00_ORD_STR_SORTABLE 00059 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_serial_40013c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_serial_40013c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_serial_40013c00_EXISTS 1 +#define DT_N_INST_5_st_stm32_usart DT_N_S_soc_S_serial_40013c00 +#define DT_N_INST_6_st_stm32_uart DT_N_S_soc_S_serial_40013c00 +#define DT_N_NODELABEL_usart6 DT_N_S_soc_S_serial_40013c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_serial_40013c00_REG_NUM 1 +#define DT_N_S_soc_S_serial_40013c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_REG_IDX_0_VAL_ADDRESS 1073822720 /* 0x40013c00 */ +#define DT_N_S_soc_S_serial_40013c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_serial_40013c00_RANGES_NUM 0 +#define DT_N_S_soc_S_serial_40013c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_serial_40013c00_IRQ_NUM 1 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_serial_40013c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_MATCHES_st_stm32_usart 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40013c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_MODEL_IDX_0 "stm32-usart" +#define DT_N_S_soc_S_serial_40013c00_COMPAT_MATCHES_st_stm32_uart 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_serial_40013c00_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_COMPAT_MODEL_IDX_1 "stm32-uart" +#define DT_N_S_soc_S_serial_40013c00_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_serial_40013c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_serial_40013c00_P_reg {1073822720 /* 0x40013c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_serial_40013c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_reg_IDX_0 1073822720 +#define DT_N_S_soc_S_serial_40013c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_serial_40013c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_VAL_bits 512 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40013c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_serial_40013c00, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013c00, clocks, 0, bits) +#define DT_N_S_soc_S_serial_40013c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013c00, clocks, 0) +#define DT_N_S_soc_S_serial_40013c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, clocks, 0) +#define DT_N_S_soc_S_serial_40013c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_clocks_LEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_VAL_id 1417 +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_serial_40013c00, resets, 0, id) +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, resets, 0, id) +#define DT_N_S_soc_S_serial_40013c00_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_serial_40013c00_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013c00, resets, 0) +#define DT_N_S_soc_S_serial_40013c00_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, resets, 0) +#define DT_N_S_soc_S_serial_40013c00_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013c00, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013c00, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_resets_LEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_resets_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_interrupts {29 /* 0x1d */, 0 /* 0x0 */} +#define DT_N_S_soc_S_serial_40013c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_serial_40013c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_serial_40013c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_current_speed 115200 +#define DT_N_S_soc_S_serial_40013c00_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits "1" +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013c00, stop_bits, 0) +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, stop_bits, 0) +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013c00, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013c00, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_data_bits 8 +#define DT_N_S_soc_S_serial_40013c00_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_serial_40013c00_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_single_wire 0 +#define DT_N_S_soc_S_serial_40013c00_P_single_wire_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_tx_rx_swap 0 +#define DT_N_S_soc_S_serial_40013c00_P_tx_rx_swap_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_de_enable 0 +#define DT_N_S_soc_S_serial_40013c00_P_de_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_de_assert_time 0 +#define DT_N_S_soc_S_serial_40013c00_P_de_assert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_de_deassert_time 0 +#define DT_N_S_soc_S_serial_40013c00_P_de_deassert_time_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_de_invert 0 +#define DT_N_S_soc_S_serial_40013c00_P_de_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_fifo_enable 0 +#define DT_N_S_soc_S_serial_40013c00_P_fifo_enable_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_hw_flow_control 0 +#define DT_N_S_soc_S_serial_40013c00_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_parity "none" +#define DT_N_S_soc_S_serial_40013c00_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_serial_40013c00_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_serial_40013c00_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_serial_40013c00_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_serial_40013c00_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_serial_40013c00_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013c00, parity, 0) +#define DT_N_S_soc_S_serial_40013c00_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, parity, 0) +#define DT_N_S_soc_S_serial_40013c00_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013c00, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013c00, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_parity_LEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_parity_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_status "disabled" +#define DT_N_S_soc_S_serial_40013c00_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_serial_40013c00_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_serial_40013c00_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_serial_40013c00_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_serial_40013c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_serial_40013c00_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013c00, status, 0) +#define DT_N_S_soc_S_serial_40013c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, status, 0) +#define DT_N_S_soc_S_serial_40013c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_status_LEN 1 +#define DT_N_S_soc_S_serial_40013c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_compatible {"st,stm32-usart", "st,stm32-uart"} +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_0 "st,stm32-usart" +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usart +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_usart +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USART +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_1 "st,stm32-uart" +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-uart +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_1_STRING_TOKEN st_stm32_uart +#define DT_N_S_soc_S_serial_40013c00_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_UART +#define DT_N_S_soc_S_serial_40013c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_serial_40013c00, compatible, 0) \ + fn(DT_N_S_soc_S_serial_40013c00, compatible, 1) +#define DT_N_S_soc_S_serial_40013c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_serial_40013c00, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013c00, compatible, 1) +#define DT_N_S_soc_S_serial_40013c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_serial_40013c00, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_serial_40013c00, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_serial_40013c00, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_serial_40013c00, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_serial_40013c00_P_compatible_LEN 2 +#define DT_N_S_soc_S_serial_40013c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_serial_40013c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_wakeup_source 0 +#define DT_N_S_soc_S_serial_40013c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_serial_40013c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_tx_invert 0 +#define DT_N_S_soc_S_serial_40013c00_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_serial_40013c00_P_rx_invert 0 +#define DT_N_S_soc_S_serial_40013c00_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/spi@40003800 + * + * Node identifier: DT_N_S_soc_S_spi_40003800 + * + * Binding (compatible = st,stm32-spi-fifo): + * $ZEPHYR_BASE\dts\bindings\spi\st,stm32-spi-fifo.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_40003800_PATH "/soc/spi@40003800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_40003800_FULL_NAME "spi@40003800" +#define DT_N_S_soc_S_spi_40003800_FULL_NAME_UNQUOTED spi@40003800 +#define DT_N_S_soc_S_spi_40003800_FULL_NAME_TOKEN spi_40003800 +#define DT_N_S_soc_S_spi_40003800_FULL_NAME_UPPER_TOKEN SPI_40003800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_40003800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_40003800_CHILD_IDX 20 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_40003800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_40003800_FOREACH_NODELABEL(fn) fn(spi2) +#define DT_N_S_soc_S_spi_40003800_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi2, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_40003800_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_40003800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40003800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_spi_40003800_HASH XKwnj_54XNd9o8CRTIG33G9j_T58zD9aWx_JOqtlec4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_40003800_ORD 60 +#define DT_N_S_soc_S_spi_40003800_ORD_STR_SORTABLE 00060 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_40003800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_40003800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_40003800_EXISTS 1 +#define DT_N_INST_1_st_stm32_spi_fifo DT_N_S_soc_S_spi_40003800 +#define DT_N_INST_1_st_stm32_spi DT_N_S_soc_S_spi_40003800 +#define DT_N_NODELABEL_spi2 DT_N_S_soc_S_spi_40003800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_40003800_REG_NUM 1 +#define DT_N_S_soc_S_spi_40003800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_REG_IDX_0_VAL_ADDRESS 1073756160 /* 0x40003800 */ +#define DT_N_S_soc_S_spi_40003800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_spi_40003800_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_40003800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_40003800_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_VAL_irq 26 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_40003800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_MATCHES_st_stm32_spi_fifo 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_spi_40003800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_MODEL_IDX_0 "stm32-spi-fifo" +#define DT_N_S_soc_S_spi_40003800_COMPAT_MATCHES_st_stm32_spi 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_spi_40003800_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_COMPAT_MODEL_IDX_1 "stm32-spi" +#define DT_N_S_soc_S_spi_40003800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_40003800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_40003800_P_reg {1073756160 /* 0x40003800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_spi_40003800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_reg_IDX_0 1073756160 +#define DT_N_S_soc_S_spi_40003800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_spi_40003800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_interrupts {26 /* 0x1a */, 0 /* 0x0 */} +#define DT_N_S_soc_S_spi_40003800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_interrupts_IDX_0 26 +#define DT_N_S_soc_S_spi_40003800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_spi_40003800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_ioswp 0 +#define DT_N_S_soc_S_spi_40003800_P_ioswp_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_status "disabled" +#define DT_N_S_soc_S_spi_40003800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_40003800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_40003800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_40003800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_40003800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_spi_40003800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003800, status, 0) +#define DT_N_S_soc_S_spi_40003800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003800, status, 0) +#define DT_N_S_soc_S_spi_40003800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_P_status_LEN 1 +#define DT_N_S_soc_S_spi_40003800_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_compatible {"st,stm32-spi-fifo", "st,stm32-spi"} +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_0 "st,stm32-spi-fifo" +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-spi-fifo +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_0_STRING_TOKEN st_stm32_spi_fifo +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_SPI_FIFO +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_1 "st,stm32-spi" +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-spi +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_1_STRING_TOKEN st_stm32_spi +#define DT_N_S_soc_S_spi_40003800_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_SPI +#define DT_N_S_soc_S_spi_40003800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003800, compatible, 0) \ + fn(DT_N_S_soc_S_spi_40003800, compatible, 1) +#define DT_N_S_soc_S_spi_40003800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003800, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40003800, compatible, 1) +#define DT_N_S_soc_S_spi_40003800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003800, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_spi_40003800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003800, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40003800, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_P_compatible_LEN 2 +#define DT_N_S_soc_S_spi_40003800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_VAL_bits 16384 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_40003800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_spi_40003800, clocks, 0, bits) +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40003800, clocks, 0, bits) +#define DT_N_S_soc_S_spi_40003800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_40003800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003800, clocks, 0) +#define DT_N_S_soc_S_spi_40003800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003800, clocks, 0) +#define DT_N_S_soc_S_spi_40003800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003800_P_clocks_LEN 1 +#define DT_N_S_soc_S_spi_40003800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_40003800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_40003800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_40003800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_40003800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@40003c00 + * + * Node identifier: DT_N_S_soc_S_spi_40003c00 + * + * Binding (compatible = st,stm32-spi-fifo): + * $ZEPHYR_BASE\dts\bindings\spi\st,stm32-spi-fifo.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_40003c00_PATH "/soc/spi@40003c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_40003c00_FULL_NAME "spi@40003c00" +#define DT_N_S_soc_S_spi_40003c00_FULL_NAME_UNQUOTED spi@40003c00 +#define DT_N_S_soc_S_spi_40003c00_FULL_NAME_TOKEN spi_40003c00 +#define DT_N_S_soc_S_spi_40003c00_FULL_NAME_UPPER_TOKEN SPI_40003C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_40003c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_40003c00_CHILD_IDX 42 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_40003c00_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_40003c00_FOREACH_NODELABEL(fn) fn(spi3) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi3, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_40003c00_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_40003c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40003c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_spi_40003c00_HASH 2ZRlHGHWIr4tSgRVkDzDHSiC22m9C4PVNAuFo8LU_0A + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_40003c00_ORD 61 +#define DT_N_S_soc_S_spi_40003c00_ORD_STR_SORTABLE 00061 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_40003c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_40003c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_40003c00_EXISTS 1 +#define DT_N_INST_2_st_stm32_spi_fifo DT_N_S_soc_S_spi_40003c00 +#define DT_N_INST_2_st_stm32_spi DT_N_S_soc_S_spi_40003c00 +#define DT_N_NODELABEL_spi3 DT_N_S_soc_S_spi_40003c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_40003c00_REG_NUM 1 +#define DT_N_S_soc_S_spi_40003c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_REG_IDX_0_VAL_ADDRESS 1073757184 /* 0x40003c00 */ +#define DT_N_S_soc_S_spi_40003c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_spi_40003c00_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_40003c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_40003c00_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_VAL_irq 26 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_VAL_priority 3 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_40003c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_MATCHES_st_stm32_spi_fifo 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_spi_40003c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_MODEL_IDX_0 "stm32-spi-fifo" +#define DT_N_S_soc_S_spi_40003c00_COMPAT_MATCHES_st_stm32_spi 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_spi_40003c00_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_COMPAT_MODEL_IDX_1 "stm32-spi" +#define DT_N_S_soc_S_spi_40003c00_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_40003c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_40003c00_P_reg {1073757184 /* 0x40003c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_spi_40003c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_reg_IDX_0 1073757184 +#define DT_N_S_soc_S_spi_40003c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_spi_40003c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_interrupts {26 /* 0x1a */, 3 /* 0x3 */} +#define DT_N_S_soc_S_spi_40003c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_interrupts_IDX_0 26 +#define DT_N_S_soc_S_spi_40003c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_interrupts_IDX_1 3 +#define DT_N_S_soc_S_spi_40003c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_ioswp 0 +#define DT_N_S_soc_S_spi_40003c00_P_ioswp_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_status "disabled" +#define DT_N_S_soc_S_spi_40003c00_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_40003c00_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_40003c00_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_40003c00_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_40003c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_spi_40003c00_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003c00, status, 0) +#define DT_N_S_soc_S_spi_40003c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003c00, status, 0) +#define DT_N_S_soc_S_spi_40003c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_P_status_LEN 1 +#define DT_N_S_soc_S_spi_40003c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_compatible {"st,stm32-spi-fifo", "st,stm32-spi"} +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_0 "st,stm32-spi-fifo" +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-spi-fifo +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_spi_fifo +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_SPI_FIFO +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_1 "st,stm32-spi" +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-spi +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_1_STRING_TOKEN st_stm32_spi +#define DT_N_S_soc_S_spi_40003c00_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_SPI +#define DT_N_S_soc_S_spi_40003c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003c00, compatible, 0) \ + fn(DT_N_S_soc_S_spi_40003c00, compatible, 1) +#define DT_N_S_soc_S_spi_40003c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003c00, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40003c00, compatible, 1) +#define DT_N_S_soc_S_spi_40003c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003c00, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_spi_40003c00, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003c00, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40003c00, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_P_compatible_LEN 2 +#define DT_N_S_soc_S_spi_40003c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_VAL_bits 32768 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_40003c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_spi_40003c00, clocks, 0, bits) +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40003c00, clocks, 0, bits) +#define DT_N_S_soc_S_spi_40003c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40003c00, clocks, 0) +#define DT_N_S_soc_S_spi_40003c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40003c00, clocks, 0) +#define DT_N_S_soc_S_spi_40003c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40003c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40003c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40003c00_P_clocks_LEN 1 +#define DT_N_S_soc_S_spi_40003c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_40003c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_40003c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_40003c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_40003c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@40013000 + * + * Node identifier: DT_N_S_soc_S_spi_40013000 + * + * Binding (compatible = st,stm32-spi-fifo): + * $ZEPHYR_BASE\dts\bindings\spi\st,stm32-spi-fifo.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_40013000_PATH "/soc/spi@40013000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_40013000_FULL_NAME "spi@40013000" +#define DT_N_S_soc_S_spi_40013000_FULL_NAME_UNQUOTED spi@40013000 +#define DT_N_S_soc_S_spi_40013000_FULL_NAME_TOKEN spi_40013000 +#define DT_N_S_soc_S_spi_40013000_FULL_NAME_UPPER_TOKEN SPI_40013000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_40013000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_40013000_CHILD_IDX 19 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_40013000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_40013000_FOREACH_NODELABEL(fn) fn(spi1) +#define DT_N_S_soc_S_spi_40013000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_40013000_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_40013000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_40013000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_spi_40013000_HASH q04f3jPcynKDa_9eKR_V34RQn5SAL2iX4yHIC7XGkLs + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_40013000_ORD 62 +#define DT_N_S_soc_S_spi_40013000_ORD_STR_SORTABLE 00062 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_40013000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_40013000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_40013000_EXISTS 1 +#define DT_N_INST_0_st_stm32_spi_fifo DT_N_S_soc_S_spi_40013000 +#define DT_N_INST_0_st_stm32_spi DT_N_S_soc_S_spi_40013000 +#define DT_N_NODELABEL_spi1 DT_N_S_soc_S_spi_40013000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_40013000_REG_NUM 1 +#define DT_N_S_soc_S_spi_40013000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_REG_IDX_0_VAL_ADDRESS 1073819648 /* 0x40013000 */ +#define DT_N_S_soc_S_spi_40013000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_spi_40013000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_40013000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_40013000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_VAL_irq 25 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_spi_40013000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_MATCHES_st_stm32_spi_fifo 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_spi_40013000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_MODEL_IDX_0 "stm32-spi-fifo" +#define DT_N_S_soc_S_spi_40013000_COMPAT_MATCHES_st_stm32_spi 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_spi_40013000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_COMPAT_MODEL_IDX_1 "stm32-spi" +#define DT_N_S_soc_S_spi_40013000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_40013000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_40013000_P_reg {1073819648 /* 0x40013000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_spi_40013000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_reg_IDX_0 1073819648 +#define DT_N_S_soc_S_spi_40013000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_spi_40013000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_interrupts {25 /* 0x19 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_spi_40013000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_interrupts_IDX_0 25 +#define DT_N_S_soc_S_spi_40013000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_spi_40013000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_ioswp 0 +#define DT_N_S_soc_S_spi_40013000_P_ioswp_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_status "disabled" +#define DT_N_S_soc_S_spi_40013000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_40013000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_40013000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_40013000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_40013000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_spi_40013000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40013000, status, 0) +#define DT_N_S_soc_S_spi_40013000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40013000, status, 0) +#define DT_N_S_soc_S_spi_40013000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40013000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40013000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_40013000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_compatible {"st,stm32-spi-fifo", "st,stm32-spi"} +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_0 "st,stm32-spi-fifo" +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-spi-fifo +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_0_STRING_TOKEN st_stm32_spi_fifo +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_SPI_FIFO +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_1 "st,stm32-spi" +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_1_STRING_UNQUOTED st,stm32-spi +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_1_STRING_TOKEN st_stm32_spi +#define DT_N_S_soc_S_spi_40013000_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32_SPI +#define DT_N_S_soc_S_spi_40013000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40013000, compatible, 0) \ + fn(DT_N_S_soc_S_spi_40013000, compatible, 1) +#define DT_N_S_soc_S_spi_40013000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40013000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40013000, compatible, 1) +#define DT_N_S_soc_S_spi_40013000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40013000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_spi_40013000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40013000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40013000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_P_compatible_LEN 2 +#define DT_N_S_soc_S_spi_40013000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_VAL_bits 4096 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_40013000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_spi_40013000, clocks, 0, bits) +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40013000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_40013000, clocks, 0, bits) +#define DT_N_S_soc_S_spi_40013000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_40013000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_40013000, clocks, 0) +#define DT_N_S_soc_S_spi_40013000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_40013000, clocks, 0) +#define DT_N_S_soc_S_spi_40013000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_40013000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_40013000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_40013000_P_clocks_LEN 1 +#define DT_N_S_soc_S_spi_40013000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_40013000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_40013000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_40013000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_40013000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timer@e000e010 + * + * Node identifier: DT_N_S_soc_S_timer_e000e010 + * + * Binding (compatible = arm,armv6m-systick): + * $ZEPHYR_BASE\dts\bindings\timer\arm,armv6m-systick.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timer_e000e010_PATH "/soc/timer@e000e010" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME "timer@e000e010" +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME_UNQUOTED timer@e000e010 +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME_TOKEN timer_e000e010 +#define DT_N_S_soc_S_timer_e000e010_FULL_NAME_UPPER_TOKEN TIMER_E000E010 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timer_e000e010_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timer_e000e010_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timer_e000e010_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timer_e000e010_FOREACH_NODELABEL(fn) fn(systick) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_NODELABEL_VARGS(fn, ...) fn(systick, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timer_e000e010_CHILD_NUM 0 +#define DT_N_S_soc_S_timer_e000e010_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timer_e000e010_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timer_e000e010_HASH aZrzPLAIRgEwRZJIvTCzJONA6gPgc4QlhkiU5oWGArA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timer_e000e010_ORD 63 +#define DT_N_S_soc_S_timer_e000e010_ORD_STR_SORTABLE 00063 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timer_e000e010_REQUIRES_ORDS \ + 3, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timer_e000e010_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timer_e000e010_EXISTS 1 +#define DT_N_INST_0_arm_armv6m_systick DT_N_S_soc_S_timer_e000e010 +#define DT_N_NODELABEL_systick DT_N_S_soc_S_timer_e000e010 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timer_e000e010_REG_NUM 1 +#define DT_N_S_soc_S_timer_e000e010_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_REG_IDX_0_VAL_ADDRESS 3758153744 /* 0xe000e010 */ +#define DT_N_S_soc_S_timer_e000e010_REG_IDX_0_VAL_SIZE 16 /* 0x10 */ +#define DT_N_S_soc_S_timer_e000e010_RANGES_NUM 0 +#define DT_N_S_soc_S_timer_e000e010_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timer_e000e010_IRQ_NUM 0 +#define DT_N_S_soc_S_timer_e000e010_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_MATCHES_arm_armv6m_systick 1 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_VENDOR_IDX_0 "ARM Ltd." +#define DT_N_S_soc_S_timer_e000e010_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_COMPAT_MODEL_IDX_0 "armv6m-systick" +#define DT_N_S_soc_S_timer_e000e010_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timer_e000e010_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timer_e000e010_P_reg {3758153744 /* 0xe000e010 */, 16 /* 0x10 */} +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_0 3758153744 +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_reg_IDX_1 16 +#define DT_N_S_soc_S_timer_e000e010_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_compatible {"arm,armv6m-systick"} +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0 "arm,armv6m-systick" +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_STRING_UNQUOTED arm,armv6m-systick +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_STRING_TOKEN arm_armv6m_systick +#define DT_N_S_soc_S_timer_e000e010_P_compatible_IDX_0_STRING_UPPER_TOKEN ARM_ARMV6M_SYSTICK +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timer_e000e010, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timer_e000e010_P_compatible_LEN 1 +#define DT_N_S_soc_S_timer_e000e010_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_wakeup_source 0 +#define DT_N_S_soc_S_timer_e000e010_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timer_e000e010_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40007c00 + * + * Node identifier: DT_N_S_soc_S_timers_40007c00 + * + * Binding (compatible = st,stm32-lptim): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-lptim.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40007c00_PATH "/soc/timers@40007c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40007c00_FULL_NAME "timers@40007c00" +#define DT_N_S_soc_S_timers_40007c00_FULL_NAME_UNQUOTED timers@40007c00 +#define DT_N_S_soc_S_timers_40007c00_FULL_NAME_TOKEN timers_40007c00 +#define DT_N_S_soc_S_timers_40007c00_FULL_NAME_UPPER_TOKEN TIMERS_40007C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40007c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40007c00_CHILD_IDX 11 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40007c00_NODELABEL_NUM 2 +#define DT_N_S_soc_S_timers_40007c00_FOREACH_NODELABEL(fn) fn(lptim1) fn(stm32_lp_tick_source) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(lptim1, __VA_ARGS__) fn(stm32_lp_tick_source, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40007c00_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40007c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40007c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40007c00_HASH 0ZbuCp5mjhw6Ls5w9wnMv4hCgy9r4pkUnOw3zpBV8fk + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40007c00_ORD 64 +#define DT_N_S_soc_S_timers_40007c00_ORD_STR_SORTABLE 00064 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40007c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40007c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40007c00_EXISTS 1 +#define DT_N_INST_0_st_stm32_lptim DT_N_S_soc_S_timers_40007c00 +#define DT_N_NODELABEL_lptim1 DT_N_S_soc_S_timers_40007c00 +#define DT_N_NODELABEL_stm32_lp_tick_source DT_N_S_soc_S_timers_40007c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40007c00_REG_NUM 1 +#define DT_N_S_soc_S_timers_40007c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_REG_IDX_0_VAL_ADDRESS 1073773568 /* 0x40007c00 */ +#define DT_N_S_soc_S_timers_40007c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40007c00_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40007c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40007c00_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_VAL_irq 17 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_VAL_priority 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40007c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_NAME_wakeup_VAL_irq DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40007c00_IRQ_NAME_wakeup_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_NAME_wakeup_VAL_priority DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40007c00_IRQ_NAME_wakeup_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_IRQ_NAME_wakeup_CONTROLLER DT_N_S_soc_S_timers_40007c00_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40007c00_COMPAT_MATCHES_st_stm32_lptim 1 +#define DT_N_S_soc_S_timers_40007c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40007c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_COMPAT_MODEL_IDX_0 "stm32-lptim" +#define DT_N_S_soc_S_timers_40007c00_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40007c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40007c00_P_st_prescaler 1 +#define DT_N_S_soc_S_timers_40007c00_P_st_prescaler_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40007c00_P_st_prescaler_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_st_prescaler_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_st_prescaler_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_reg {1073773568 /* 0x40007c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40007c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_reg_IDX_0 1073773568 +#define DT_N_S_soc_S_timers_40007c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40007c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_VAL_bits 2147483648 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40007c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40007c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_VAL_bus 3 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_VAL_bits 20054100 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40007c00, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40007c00, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40007c00, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 1) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40007c00, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 1) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40007c00, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40007c00, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40007c00, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40007c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_status "okay" +#define DT_N_S_soc_S_timers_40007c00_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_timers_40007c00_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_timers_40007c00_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_timers_40007c00_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_timers_40007c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40007c00_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40007c00, status, 0) +#define DT_N_S_soc_S_timers_40007c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40007c00, status, 0) +#define DT_N_S_soc_S_timers_40007c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40007c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40007c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40007c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_compatible {"st,stm32-lptim"} +#define DT_N_S_soc_S_timers_40007c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_compatible_IDX_0 "st,stm32-lptim" +#define DT_N_S_soc_S_timers_40007c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-lptim +#define DT_N_S_soc_S_timers_40007c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_lptim +#define DT_N_S_soc_S_timers_40007c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_LPTIM +#define DT_N_S_soc_S_timers_40007c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40007c00, compatible, 0) +#define DT_N_S_soc_S_timers_40007c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40007c00, compatible, 0) +#define DT_N_S_soc_S_timers_40007c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40007c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40007c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40007c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupts {17 /* 0x11 */, 1 /* 0x1 */} +#define DT_N_S_soc_S_timers_40007c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupts_IDX_0 17 +#define DT_N_S_soc_S_timers_40007c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupts_IDX_1 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names {"wakeup"} +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_IDX_0 "wakeup" +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_IDX_0_STRING_UNQUOTED wakeup +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_IDX_0_STRING_TOKEN wakeup +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN WAKEUP +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40007c00, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40007c00, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40007c00, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40007c00, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40007c00_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40007c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40007c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40007c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40007c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ucpd@4000a000 + * + * Node identifier: DT_N_S_soc_S_ucpd_4000a000 + * + * Binding (compatible = st,stm32-ucpd): + * $ZEPHYR_BASE\dts\bindings\tcpc\st,stm32-ucpd.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ucpd_4000a000_PATH "/soc/ucpd@4000a000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ucpd_4000a000_FULL_NAME "ucpd@4000a000" +#define DT_N_S_soc_S_ucpd_4000a000_FULL_NAME_UNQUOTED ucpd@4000a000 +#define DT_N_S_soc_S_ucpd_4000a000_FULL_NAME_TOKEN ucpd_4000a000 +#define DT_N_S_soc_S_ucpd_4000a000_FULL_NAME_UPPER_TOKEN UCPD_4000A000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ucpd_4000a000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ucpd_4000a000_CHILD_IDX 33 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ucpd_4000a000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_NODELABEL(fn) fn(ucpd1) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ucpd1, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ucpd_4000a000_CHILD_NUM 0 +#define DT_N_S_soc_S_ucpd_4000a000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_ucpd_4000a000_HASH dz71PmBvjUI3KHlHmLFqfpqTyoYXdlXBj5AwJKyEJlk + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ucpd_4000a000_ORD 65 +#define DT_N_S_soc_S_ucpd_4000a000_ORD_STR_SORTABLE 00065 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ucpd_4000a000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ucpd_4000a000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ucpd_4000a000_EXISTS 1 +#define DT_N_INST_0_st_stm32_ucpd DT_N_S_soc_S_ucpd_4000a000 +#define DT_N_NODELABEL_ucpd1 DT_N_S_soc_S_ucpd_4000a000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ucpd_4000a000_REG_NUM 1 +#define DT_N_S_soc_S_ucpd_4000a000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_REG_IDX_0_VAL_ADDRESS 1073782784 /* 0x4000a000 */ +#define DT_N_S_soc_S_ucpd_4000a000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_ucpd_4000a000_RANGES_NUM 0 +#define DT_N_S_soc_S_ucpd_4000a000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_NUM 1 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_VAL_irq 8 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_ucpd_4000a000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_ucpd_4000a000_COMPAT_MATCHES_st_stm32_ucpd 1 +#define DT_N_S_soc_S_ucpd_4000a000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_ucpd_4000a000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_COMPAT_MODEL_IDX_0 "stm32-ucpd" +#define DT_N_S_soc_S_ucpd_4000a000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ucpd_4000a000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ucpd_4000a000_P_reg {1073782784 /* 0x4000a000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_ucpd_4000a000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_reg_IDX_0 1073782784 +#define DT_N_S_soc_S_ucpd_4000a000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_ucpd_4000a000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_VAL_bits 33554432 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0, bits) +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0, bits) +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0) +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0) +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ucpd_4000a000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_LEN 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_interrupts {8 /* 0x8 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_ucpd_4000a000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_interrupts_IDX_0 8 +#define DT_N_S_soc_S_ucpd_4000a000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_ucpd_4000a000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_psc_ucpdclk 2 +#define DT_N_S_soc_S_ucpd_4000a000_P_psc_ucpdclk_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_psc_ucpdclk_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_psc_ucpdclk_IDX_0_ENUM_VAL_2_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_psc_ucpdclk_ENUM_VAL_2_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_psc_ucpdclk_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_ifrgap 17 +#define DT_N_S_soc_S_ucpd_4000a000_P_ifrgap_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_transwin 8 +#define DT_N_S_soc_S_ucpd_4000a000_P_transwin_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_hbitclkdiv 14 +#define DT_N_S_soc_S_ucpd_4000a000_P_hbitclkdiv_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_dead_battery 0 +#define DT_N_S_soc_S_ucpd_4000a000_P_dead_battery_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_status "disabled" +#define DT_N_S_soc_S_ucpd_4000a000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_ucpd_4000a000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_ucpd_4000a000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_ucpd_4000a000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_ucpd_4000a000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ucpd_4000a000, status, 0) +#define DT_N_S_soc_S_ucpd_4000a000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a000, status, 0) +#define DT_N_S_soc_S_ucpd_4000a000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ucpd_4000a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ucpd_4000a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_P_status_LEN 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_status_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible {"st,stm32-ucpd"} +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_IDX_0 "st,stm32-ucpd" +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-ucpd +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_IDX_0_STRING_TOKEN st_stm32_ucpd +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_UCPD +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ucpd_4000a000, compatible, 0) +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a000, compatible, 0) +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ucpd_4000a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ucpd_4000a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_LEN 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ucpd_4000a000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_wakeup_source 0 +#define DT_N_S_soc_S_ucpd_4000a000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ucpd_4000a000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ucpd@4000a400 + * + * Node identifier: DT_N_S_soc_S_ucpd_4000a400 + * + * Binding (compatible = st,stm32-ucpd): + * $ZEPHYR_BASE\dts\bindings\tcpc\st,stm32-ucpd.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ucpd_4000a400_PATH "/soc/ucpd@4000a400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ucpd_4000a400_FULL_NAME "ucpd@4000a400" +#define DT_N_S_soc_S_ucpd_4000a400_FULL_NAME_UNQUOTED ucpd@4000a400 +#define DT_N_S_soc_S_ucpd_4000a400_FULL_NAME_TOKEN ucpd_4000a400 +#define DT_N_S_soc_S_ucpd_4000a400_FULL_NAME_UPPER_TOKEN UCPD_4000A400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ucpd_4000a400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ucpd_4000a400_CHILD_IDX 34 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ucpd_4000a400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_NODELABEL(fn) fn(ucpd2) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_NODELABEL_VARGS(fn, ...) fn(ucpd2, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ucpd_4000a400_CHILD_NUM 0 +#define DT_N_S_soc_S_ucpd_4000a400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_ucpd_4000a400_HASH IR1tcFY6o89wQ_X4KubFxh_Vt2IRxDpZs2jQCmqk9js + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ucpd_4000a400_ORD 66 +#define DT_N_S_soc_S_ucpd_4000a400_ORD_STR_SORTABLE 00066 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ucpd_4000a400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ucpd_4000a400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ucpd_4000a400_EXISTS 1 +#define DT_N_INST_1_st_stm32_ucpd DT_N_S_soc_S_ucpd_4000a400 +#define DT_N_NODELABEL_ucpd2 DT_N_S_soc_S_ucpd_4000a400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ucpd_4000a400_REG_NUM 1 +#define DT_N_S_soc_S_ucpd_4000a400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_REG_IDX_0_VAL_ADDRESS 1073783808 /* 0x4000a400 */ +#define DT_N_S_soc_S_ucpd_4000a400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_ucpd_4000a400_RANGES_NUM 0 +#define DT_N_S_soc_S_ucpd_4000a400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_NUM 1 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_VAL_irq 8 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_ucpd_4000a400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_ucpd_4000a400_COMPAT_MATCHES_st_stm32_ucpd 1 +#define DT_N_S_soc_S_ucpd_4000a400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_ucpd_4000a400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_COMPAT_MODEL_IDX_0 "stm32-ucpd" +#define DT_N_S_soc_S_ucpd_4000a400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ucpd_4000a400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ucpd_4000a400_P_reg {1073783808 /* 0x4000a400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_ucpd_4000a400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_reg_IDX_0 1073783808 +#define DT_N_S_soc_S_ucpd_4000a400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_ucpd_4000a400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_VAL_bits 67108864 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0, bits) +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0, bits) +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0) +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0) +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ucpd_4000a400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_LEN 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_interrupts {8 /* 0x8 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_ucpd_4000a400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_interrupts_IDX_0 8 +#define DT_N_S_soc_S_ucpd_4000a400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_ucpd_4000a400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_psc_ucpdclk 2 +#define DT_N_S_soc_S_ucpd_4000a400_P_psc_ucpdclk_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_psc_ucpdclk_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_psc_ucpdclk_IDX_0_ENUM_VAL_2_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_psc_ucpdclk_ENUM_VAL_2_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_psc_ucpdclk_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_ifrgap 17 +#define DT_N_S_soc_S_ucpd_4000a400_P_ifrgap_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_transwin 8 +#define DT_N_S_soc_S_ucpd_4000a400_P_transwin_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_hbitclkdiv 14 +#define DT_N_S_soc_S_ucpd_4000a400_P_hbitclkdiv_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_dead_battery 0 +#define DT_N_S_soc_S_ucpd_4000a400_P_dead_battery_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_status "disabled" +#define DT_N_S_soc_S_ucpd_4000a400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_ucpd_4000a400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_ucpd_4000a400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_ucpd_4000a400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_ucpd_4000a400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ucpd_4000a400, status, 0) +#define DT_N_S_soc_S_ucpd_4000a400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a400, status, 0) +#define DT_N_S_soc_S_ucpd_4000a400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ucpd_4000a400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ucpd_4000a400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_P_status_LEN 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_status_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible {"st,stm32-ucpd"} +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_IDX_0 "st,stm32-ucpd" +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-ucpd +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_IDX_0_STRING_TOKEN st_stm32_ucpd +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_UCPD +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ucpd_4000a400, compatible, 0) +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ucpd_4000a400, compatible, 0) +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ucpd_4000a400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ucpd_4000a400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_LEN 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ucpd_4000a400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_wakeup_source 0 +#define DT_N_S_soc_S_ucpd_4000a400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ucpd_4000a400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ucpd_4000a400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /usbphy + * + * Node identifier: DT_N_S_usbphy + * + * Binding (compatible = usb-nop-xceiv): + * $ZEPHYR_BASE\dts\bindings\phy\usb-nop-xceiv.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_usbphy_PATH "/usbphy" + +/* Node's name with unit-address: */ +#define DT_N_S_usbphy_FULL_NAME "usbphy" +#define DT_N_S_usbphy_FULL_NAME_UNQUOTED usbphy +#define DT_N_S_usbphy_FULL_NAME_TOKEN usbphy +#define DT_N_S_usbphy_FULL_NAME_UPPER_TOKEN USBPHY + +/* Node parent (/) identifier: */ +#define DT_N_S_usbphy_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_usbphy_CHILD_IDX 12 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_usbphy_NODELABEL_NUM 1 +#define DT_N_S_usbphy_FOREACH_NODELABEL(fn) fn(usb_fs_phy) +#define DT_N_S_usbphy_FOREACH_NODELABEL_VARGS(fn, ...) fn(usb_fs_phy, __VA_ARGS__) +#define DT_N_S_usbphy_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_usbphy_CHILD_NUM 0 +#define DT_N_S_usbphy_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_usbphy_FOREACH_CHILD(fn) +#define DT_N_S_usbphy_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_usbphy_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_usbphy_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_usbphy_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_usbphy_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_usbphy_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_usbphy_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_usbphy_HASH E_X5Gkg3DeUJ3IGdQ884eo5YhX8B_NNNcL9cTxe39SI + +/* Node's dependency ordinal: */ +#define DT_N_S_usbphy_ORD 67 +#define DT_N_S_usbphy_ORD_STR_SORTABLE 00067 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_usbphy_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_usbphy_SUPPORTS_ORDS \ + 70, /* /soc/usb@40005c00 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_usbphy_EXISTS 1 +#define DT_N_INST_0_usb_nop_xceiv DT_N_S_usbphy +#define DT_N_NODELABEL_usb_fs_phy DT_N_S_usbphy + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_usbphy_REG_NUM 0 +#define DT_N_S_usbphy_RANGES_NUM 0 +#define DT_N_S_usbphy_FOREACH_RANGE(fn) +#define DT_N_S_usbphy_IRQ_NUM 0 +#define DT_N_S_usbphy_IRQ_LEVEL 0 +#define DT_N_S_usbphy_COMPAT_MATCHES_usb_nop_xceiv 1 +#define DT_N_S_usbphy_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_usbphy_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_usbphy_P_compatible {"usb-nop-xceiv"} +#define DT_N_S_usbphy_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_usbphy_P_compatible_IDX_0 "usb-nop-xceiv" +#define DT_N_S_usbphy_P_compatible_IDX_0_STRING_UNQUOTED usb-nop-xceiv +#define DT_N_S_usbphy_P_compatible_IDX_0_STRING_TOKEN usb_nop_xceiv +#define DT_N_S_usbphy_P_compatible_IDX_0_STRING_UPPER_TOKEN USB_NOP_XCEIV +#define DT_N_S_usbphy_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_usbphy, compatible, 0) +#define DT_N_S_usbphy_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_usbphy, compatible, 0) +#define DT_N_S_usbphy_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_usbphy, compatible, 0, __VA_ARGS__) +#define DT_N_S_usbphy_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_usbphy, compatible, 0, __VA_ARGS__) +#define DT_N_S_usbphy_P_compatible_LEN 1 +#define DT_N_S_usbphy_P_compatible_EXISTS 1 +#define DT_N_S_usbphy_P_zephyr_deferred_init 0 +#define DT_N_S_usbphy_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_usbphy_P_wakeup_source 0 +#define DT_N_S_usbphy_P_wakeup_source_EXISTS 1 +#define DT_N_S_usbphy_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_usbphy_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/usb_dm_pa11 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_PATH "/soc/pin-controller@50000000/usb_dm_pa11" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FULL_NAME "usb_dm_pa11" +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FULL_NAME_UNQUOTED usb_dm_pa11 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FULL_NAME_TOKEN usb_dm_pa11 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FULL_NAME_UPPER_TOKEN USB_DM_PA11 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_NODELABEL(fn) fn(usb_dm_pa11) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_NODELABEL_VARGS(fn, ...) fn(usb_dm_pa11, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_HASH yxjOU6Gw1CyjZb6gUgI8XH2UmNiIfSCLtTFnJ3OAqHY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_ORD 68 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_ORD_STR_SORTABLE 00068 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_REQUIRES_ORDS \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_SUPPORTS_ORDS \ + 70, /* /soc/usb@40005c00 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_EXISTS 1 +#define DT_N_NODELABEL_usb_dm_pa11 DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_REG_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_pinmux 368 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_pinmux_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_STRING_UNQUOTED low-speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_STRING_TOKEN low_speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_STRING_UPPER_TOKEN LOW_SPEED +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_IDX_0 "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_IDX_0_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_slew_rate_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_bias_disable 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_bias_disable_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_bias_pull_up 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_bias_pull_up_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_bias_pull_down 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_bias_pull_down_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_drive_push_pull 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_drive_push_pull_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_drive_open_drain 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_drive_open_drain_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_output_low 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_output_low_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_output_high 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11_P_output_high_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/usb_dp_pa12 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_PATH "/soc/pin-controller@50000000/usb_dp_pa12" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FULL_NAME "usb_dp_pa12" +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FULL_NAME_UNQUOTED usb_dp_pa12 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FULL_NAME_TOKEN usb_dp_pa12 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FULL_NAME_UPPER_TOKEN USB_DP_PA12 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_CHILD_IDX 11 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_NODELABEL(fn) fn(usb_dp_pa12) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_NODELABEL_VARGS(fn, ...) fn(usb_dp_pa12, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_HASH DKpn_FI6JDlwttE3stWfYfeqM_yBa3MTSsvpLBc0CuU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_ORD 69 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_ORD_STR_SORTABLE 00069 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_REQUIRES_ORDS \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_SUPPORTS_ORDS \ + 70, /* /soc/usb@40005c00 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_EXISTS 1 +#define DT_N_NODELABEL_usb_dp_pa12 DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_REG_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_pinmux 400 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_pinmux_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_STRING_UNQUOTED low-speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_STRING_TOKEN low_speed +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_STRING_UPPER_TOKEN LOW_SPEED +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_IDX_0 "low-speed" +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_IDX_0_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_ENUM_VAL_low_speed_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, slew_rate, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, slew_rate, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_slew_rate_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_bias_disable 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_bias_disable_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_bias_pull_up 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_bias_pull_up_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_bias_pull_down 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_bias_pull_down_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_drive_push_pull 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_drive_push_pull_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_drive_open_drain 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_drive_open_drain_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_output_low 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_output_low_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_output_high 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12_P_output_high_EXISTS 1 + +/* + * Devicetree node: /soc/usb@40005c00 + * + * Node identifier: DT_N_S_soc_S_usb_40005c00 + * + * Binding (compatible = st,stm32-usb): + * $ZEPHYR_BASE\dts\bindings\usb\st,stm32-usb.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_usb_40005c00_PATH "/soc/usb@40005c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_usb_40005c00_FULL_NAME "usb@40005c00" +#define DT_N_S_soc_S_usb_40005c00_FULL_NAME_UNQUOTED usb@40005c00 +#define DT_N_S_soc_S_usb_40005c00_FULL_NAME_TOKEN usb_40005c00 +#define DT_N_S_soc_S_usb_40005c00_FULL_NAME_UPPER_TOKEN USB_40005C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_usb_40005c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_usb_40005c00_CHILD_IDX 44 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_usb_40005c00_NODELABEL_NUM 2 +#define DT_N_S_soc_S_usb_40005c00_FOREACH_NODELABEL(fn) fn(usb) fn(zephyr_udc0) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(usb, __VA_ARGS__) fn(zephyr_udc0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_usb_40005c00_CHILD_NUM 0 +#define DT_N_S_soc_S_usb_40005c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_usb_40005c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_usb_40005c00_HASH 80xV1Zo9Nb21_13c9S9_bF8QGZR2Fp7zcRZfGeZahl0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_usb_40005c00_ORD 70 +#define DT_N_S_soc_S_usb_40005c00_ORD_STR_SORTABLE 00070 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_usb_40005c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 67, /* /usbphy */ \ + 68, /* /soc/pin-controller@50000000/usb_dm_pa11 */ \ + 69, /* /soc/pin-controller@50000000/usb_dp_pa12 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_usb_40005c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_usb_40005c00_EXISTS 1 +#define DT_N_INST_0_st_stm32_usb DT_N_S_soc_S_usb_40005c00 +#define DT_N_NODELABEL_usb DT_N_S_soc_S_usb_40005c00 +#define DT_N_NODELABEL_zephyr_udc0 DT_N_S_soc_S_usb_40005c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_usb_40005c00_REG_NUM 1 +#define DT_N_S_soc_S_usb_40005c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_REG_IDX_0_VAL_ADDRESS 1073765376 /* 0x40005c00 */ +#define DT_N_S_soc_S_usb_40005c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_usb_40005c00_RANGES_NUM 0 +#define DT_N_S_soc_S_usb_40005c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_usb_40005c00_IRQ_NUM 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_VAL_irq 8 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_usb_40005c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_NAME_usb_VAL_irq DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_usb_40005c00_IRQ_NAME_usb_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_NAME_usb_VAL_priority DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_usb_40005c00_IRQ_NAME_usb_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_IRQ_NAME_usb_CONTROLLER DT_N_S_soc_S_usb_40005c00_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_usb_40005c00_COMPAT_MATCHES_st_stm32_usb 1 +#define DT_N_S_soc_S_usb_40005c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_usb_40005c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_COMPAT_MODEL_IDX_0 "stm32-usb" +#define DT_N_S_soc_S_usb_40005c00_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_NUM 1 +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_NAME_default_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11 +#define DT_N_S_soc_S_usb_40005c00_PINCTRL_NAME_default_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12 + +/* Generic property macros: */ +#define DT_N_S_soc_S_usb_40005c00_P_reg {1073765376 /* 0x40005c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_usb_40005c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_reg_IDX_0 1073765376 +#define DT_N_S_soc_S_usb_40005c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_usb_40005c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_interrupts {8 /* 0x8 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_usb_40005c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_interrupts_IDX_0 8 +#define DT_N_S_soc_S_usb_40005c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_usb_40005c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_ram_size 2048 +#define DT_N_S_soc_S_usb_40005c00_P_ram_size_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_phys DT_N_S_usbphy +#define DT_N_S_soc_S_usb_40005c00_P_phys_IDX_0 DT_N_S_usbphy +#define DT_N_S_soc_S_usb_40005c00_P_phys_IDX_0_PH DT_N_S_usbphy +#define DT_N_S_soc_S_usb_40005c00_P_phys_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_phys_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, phys, 0) +#define DT_N_S_soc_S_usb_40005c00_P_phys_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, phys, 0) +#define DT_N_S_soc_S_usb_40005c00_P_phys_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, phys, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_phys_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, phys, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_phys_LEN 1 +#define DT_N_S_soc_S_usb_40005c00_P_phys_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_VAL_bits 8192 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_usb_40005c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 0, bits) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 0, bits) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_VAL_bus 5 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_VAL_bits 2883672 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_usb_40005c00, clocks, 1, bus) \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 1, bits) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 1, bits) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, clocks, 0) \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 1) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 1) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_40005c00, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_clocks_LEN 2 +#define DT_N_S_soc_S_usb_40005c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_num_bidir_endpoints 8 +#define DT_N_S_soc_S_usb_40005c00_P_num_bidir_endpoints_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed "full-speed" +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_STRING_UNQUOTED full-speed +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_STRING_TOKEN full_speed +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_STRING_UPPER_TOKEN FULL_SPEED +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_IDX_0 "full-speed" +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_IDX_0_ENUM_VAL_full_speed_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_ENUM_VAL_full_speed_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, maximum_speed, 0) +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, maximum_speed, 0) +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, maximum_speed, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, maximum_speed, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_LEN 1 +#define DT_N_S_soc_S_usb_40005c00_P_maximum_speed_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_status "okay" +#define DT_N_S_soc_S_usb_40005c00_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_usb_40005c00_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_usb_40005c00_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_usb_40005c00_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_usb_40005c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_usb_40005c00_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, status, 0) +#define DT_N_S_soc_S_usb_40005c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, status, 0) +#define DT_N_S_soc_S_usb_40005c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_status_LEN 1 +#define DT_N_S_soc_S_usb_40005c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_compatible {"st,stm32-usb"} +#define DT_N_S_soc_S_usb_40005c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_compatible_IDX_0 "st,stm32-usb" +#define DT_N_S_soc_S_usb_40005c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-usb +#define DT_N_S_soc_S_usb_40005c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_usb +#define DT_N_S_soc_S_usb_40005c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_USB +#define DT_N_S_soc_S_usb_40005c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, compatible, 0) +#define DT_N_S_soc_S_usb_40005c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, compatible, 0) +#define DT_N_S_soc_S_usb_40005c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_compatible_LEN 1 +#define DT_N_S_soc_S_usb_40005c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names {"usb"} +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_IDX_0 "usb" +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_IDX_0_STRING_UNQUOTED usb +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_IDX_0_STRING_TOKEN usb +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN USB +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, interrupt_names, 0) +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, interrupt_names, 0) +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_usb_40005c00_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_usb_40005c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_wakeup_source 0 +#define DT_N_S_soc_S_usb_40005c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_usb_40005c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_IDX_0 DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_IDX_1 DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 0) \ + fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 1) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 1) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 1, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_40005c00, pinctrl_0, 1, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_LEN 2 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_names, 0) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_names, 0) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_40005c00, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_usb_40005c00_P_pinctrl_names_EXISTS 1 + +/* + * Devicetree node: /soc/watchdog@40002c00 + * + * Node identifier: DT_N_S_soc_S_watchdog_40002c00 + * + * Binding (compatible = st,stm32-window-watchdog): + * $ZEPHYR_BASE\dts\bindings\watchdog\st,stm32-window-watchdog.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_watchdog_40002c00_PATH "/soc/watchdog@40002c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_watchdog_40002c00_FULL_NAME "watchdog@40002c00" +#define DT_N_S_soc_S_watchdog_40002c00_FULL_NAME_UNQUOTED watchdog@40002c00 +#define DT_N_S_soc_S_watchdog_40002c00_FULL_NAME_TOKEN watchdog_40002c00 +#define DT_N_S_soc_S_watchdog_40002c00_FULL_NAME_UPPER_TOKEN WATCHDOG_40002C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_watchdog_40002c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_watchdog_40002c00_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_watchdog_40002c00_NODELABEL_NUM 1 +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_NODELABEL(fn) fn(wwdg) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(wwdg, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_watchdog_40002c00_CHILD_NUM 0 +#define DT_N_S_soc_S_watchdog_40002c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_watchdog_40002c00_HASH NKEpaR6mtDKOWUZ_R2tC3uFejChIy267XTRT9LC__CA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_watchdog_40002c00_ORD 71 +#define DT_N_S_soc_S_watchdog_40002c00_ORD_STR_SORTABLE 00071 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_watchdog_40002c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_watchdog_40002c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_watchdog_40002c00_EXISTS 1 +#define DT_N_INST_0_st_stm32_window_watchdog DT_N_S_soc_S_watchdog_40002c00 +#define DT_N_NODELABEL_wwdg DT_N_S_soc_S_watchdog_40002c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_watchdog_40002c00_REG_NUM 1 +#define DT_N_S_soc_S_watchdog_40002c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_REG_IDX_0_VAL_ADDRESS 1073753088 /* 0x40002c00 */ +#define DT_N_S_soc_S_watchdog_40002c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_watchdog_40002c00_RANGES_NUM 0 +#define DT_N_S_soc_S_watchdog_40002c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_NUM 1 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_VAL_irq 0 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_VAL_priority 2 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_watchdog_40002c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_watchdog_40002c00_COMPAT_MATCHES_st_stm32_window_watchdog 1 +#define DT_N_S_soc_S_watchdog_40002c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_watchdog_40002c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_COMPAT_MODEL_IDX_0 "stm32-window-watchdog" +#define DT_N_S_soc_S_watchdog_40002c00_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_watchdog_40002c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_watchdog_40002c00_P_reg {1073753088 /* 0x40002c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_watchdog_40002c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_reg_IDX_0 1073753088 +#define DT_N_S_soc_S_watchdog_40002c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_watchdog_40002c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_VAL_bits 2048 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0, bits) +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0, bits) +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0) +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0) +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40002c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_LEN 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_status "disabled" +#define DT_N_S_soc_S_watchdog_40002c00_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_watchdog_40002c00_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_watchdog_40002c00_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_watchdog_40002c00_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_watchdog_40002c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40002c00, status, 0) +#define DT_N_S_soc_S_watchdog_40002c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40002c00, status, 0) +#define DT_N_S_soc_S_watchdog_40002c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40002c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40002c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_P_status_LEN 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible {"st,stm32-window-watchdog"} +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_IDX_0 "st,stm32-window-watchdog" +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-window-watchdog +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_window_watchdog +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_WINDOW_WATCHDOG +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40002c00, compatible, 0) +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40002c00, compatible, 0) +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40002c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40002c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_LEN 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_interrupts {0 /* 0x0 */, 2 /* 0x2 */} +#define DT_N_S_soc_S_watchdog_40002c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_interrupts_IDX_0 0 +#define DT_N_S_soc_S_watchdog_40002c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_interrupts_IDX_1 2 +#define DT_N_S_soc_S_watchdog_40002c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_watchdog_40002c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_wakeup_source 0 +#define DT_N_S_soc_S_watchdog_40002c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40002c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_watchdog_40002c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/watchdog@40003000 + * + * Node identifier: DT_N_S_soc_S_watchdog_40003000 + * + * Binding (compatible = st,stm32-watchdog): + * $ZEPHYR_BASE\dts\bindings\watchdog\st,stm32-watchdog.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_watchdog_40003000_PATH "/soc/watchdog@40003000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_watchdog_40003000_FULL_NAME "watchdog@40003000" +#define DT_N_S_soc_S_watchdog_40003000_FULL_NAME_UNQUOTED watchdog@40003000 +#define DT_N_S_soc_S_watchdog_40003000_FULL_NAME_TOKEN watchdog_40003000 +#define DT_N_S_soc_S_watchdog_40003000_FULL_NAME_UPPER_TOKEN WATCHDOG_40003000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_watchdog_40003000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_watchdog_40003000_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_watchdog_40003000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_NODELABEL(fn) fn(iwdg) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_NODELABEL_VARGS(fn, ...) fn(iwdg, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_watchdog_40003000_CHILD_NUM 0 +#define DT_N_S_soc_S_watchdog_40003000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_watchdog_40003000_HASH ZgrqJ_c2LlWOgbyPiYriITNa7e_ieqQvmB0duI6_QGU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_watchdog_40003000_ORD 72 +#define DT_N_S_soc_S_watchdog_40003000_ORD_STR_SORTABLE 00072 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_watchdog_40003000_REQUIRES_ORDS \ + 3, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_watchdog_40003000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_watchdog_40003000_EXISTS 1 +#define DT_N_ALIAS_watchdog0 DT_N_S_soc_S_watchdog_40003000 +#define DT_N_INST_0_st_stm32_watchdog DT_N_S_soc_S_watchdog_40003000 +#define DT_N_NODELABEL_iwdg DT_N_S_soc_S_watchdog_40003000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_watchdog_40003000_REG_NUM 1 +#define DT_N_S_soc_S_watchdog_40003000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_REG_IDX_0_VAL_ADDRESS 1073754112 /* 0x40003000 */ +#define DT_N_S_soc_S_watchdog_40003000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_watchdog_40003000_RANGES_NUM 0 +#define DT_N_S_soc_S_watchdog_40003000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_watchdog_40003000_IRQ_NUM 0 +#define DT_N_S_soc_S_watchdog_40003000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_watchdog_40003000_COMPAT_MATCHES_st_stm32_watchdog 1 +#define DT_N_S_soc_S_watchdog_40003000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_watchdog_40003000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_COMPAT_MODEL_IDX_0 "stm32-watchdog" +#define DT_N_S_soc_S_watchdog_40003000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_watchdog_40003000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_watchdog_40003000_P_reg {1073754112 /* 0x40003000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_watchdog_40003000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_reg_IDX_0 1073754112 +#define DT_N_S_soc_S_watchdog_40003000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_watchdog_40003000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_status "okay" +#define DT_N_S_soc_S_watchdog_40003000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_watchdog_40003000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_watchdog_40003000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_watchdog_40003000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_watchdog_40003000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_watchdog_40003000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40003000, status, 0) +#define DT_N_S_soc_S_watchdog_40003000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40003000, status, 0) +#define DT_N_S_soc_S_watchdog_40003000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40003000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40003000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40003000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40003000_P_status_LEN 1 +#define DT_N_S_soc_S_watchdog_40003000_P_status_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_compatible {"st,stm32-watchdog"} +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_IDX_0 "st,stm32-watchdog" +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-watchdog +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_IDX_0_STRING_TOKEN st_stm32_watchdog +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_WATCHDOG +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_40003000, compatible, 0) +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_40003000, compatible, 0) +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_40003000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_40003000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_LEN 1 +#define DT_N_S_soc_S_watchdog_40003000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_watchdog_40003000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_wakeup_source 0 +#define DT_N_S_soc_S_watchdog_40003000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_watchdog_40003000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_watchdog_40003000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@40022000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_40022000 + * + * Binding (compatible = st,stm32-flash-controller): + * $ZEPHYR_BASE\dts\bindings\flash_controller\st,stm32-flash-controller.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_40022000_PATH "/soc/flash-controller@40022000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_40022000_FULL_NAME "flash-controller@40022000" +#define DT_N_S_soc_S_flash_controller_40022000_FULL_NAME_UNQUOTED flash-controller@40022000 +#define DT_N_S_soc_S_flash_controller_40022000_FULL_NAME_TOKEN flash_controller_40022000 +#define DT_N_S_soc_S_flash_controller_40022000_FULL_NAME_UPPER_TOKEN FLASH_CONTROLLER_40022000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_40022000_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_40022000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_NODELABEL(fn) fn(flash) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_NODELABEL_VARGS(fn, ...) fn(flash, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_40022000_CHILD_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_40022000_HASH zbmvNSGM4VOJM0v0g9IYHqSKWvouTrb8IP0EW85xJrs + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_40022000_ORD 73 +#define DT_N_S_soc_S_flash_controller_40022000_ORD_STR_SORTABLE 00073 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_40022000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_40022000_SUPPORTS_ORDS \ + 74, /* /soc/flash-controller@40022000/flash@8000000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_40022000_EXISTS 1 +#define DT_N_INST_0_st_stm32_flash_controller DT_N_S_soc_S_flash_controller_40022000 +#define DT_N_INST_0_st_stm32g0_flash_controller DT_N_S_soc_S_flash_controller_40022000 +#define DT_N_NODELABEL_flash DT_N_S_soc_S_flash_controller_40022000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_40022000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_REG_IDX_0_VAL_ADDRESS 1073881088 /* 0x40022000 */ +#define DT_N_S_soc_S_flash_controller_40022000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_flash_controller_40022000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_VAL_irq 3 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_flash_controller_40022000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_MATCHES_st_stm32_flash_controller 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_MODEL_IDX_0 "stm32-flash-controller" +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_MATCHES_st_stm32g0_flash_controller 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_VENDOR_IDX_1 "STMicroelectronics" +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_COMPAT_MODEL_IDX_1 "stm32g0-flash-controller" +#define DT_N_S_soc_S_flash_controller_40022000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_40022000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_40022000_P_st_rdp1_enable_byte 85 +#define DT_N_S_soc_S_flash_controller_40022000_P_st_rdp1_enable_byte_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_reg {1073881088 /* 0x40022000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_flash_controller_40022000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_reg_IDX_0 1073881088 +#define DT_N_S_soc_S_flash_controller_40022000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_flash_controller_40022000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible {"st,stm32-flash-controller", "st,stm32g0-flash-controller"} +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_0 "st,stm32-flash-controller" +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-flash-controller +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_0_STRING_TOKEN st_stm32_flash_controller +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_FLASH_CONTROLLER +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_1 "st,stm32g0-flash-controller" +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_1_STRING_UNQUOTED st,stm32g0-flash-controller +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_1_STRING_TOKEN st_stm32g0_flash_controller +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_IDX_1_STRING_UPPER_TOKEN ST_STM32G0_FLASH_CONTROLLER +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 0) \ + fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 1) +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 1) +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_flash_controller_40022000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_LEN 2 +#define DT_N_S_soc_S_flash_controller_40022000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_interrupts {3 /* 0x3 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_flash_controller_40022000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_interrupts_IDX_0 3 +#define DT_N_S_soc_S_flash_controller_40022000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_flash_controller_40022000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_VAL_bus 56 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_VAL_bits 256 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0, bits) +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0, bits) +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0) +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0) +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_LEN 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_40022000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_40022000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_40022000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@40022000/flash@8000000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000 + * + * Binding (compatible = st,stm32-nv-flash): + * $ZEPHYR_BASE\dts\bindings\mtd\st,stm32-nv-flash.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_PATH "/soc/flash-controller@40022000/flash@8000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FULL_NAME "flash@8000000" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FULL_NAME_UNQUOTED flash@8000000 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FULL_NAME_TOKEN flash_8000000 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FULL_NAME_UPPER_TOKEN FLASH_8000000 + +/* Node parent (/soc/flash-controller@40022000) identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_PARENT DT_N_S_soc_S_flash_controller_40022000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_NODELABEL(fn) fn(flash0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(flash0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_CHILD_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_HASH jS_k3V146QRc4ZjeAWhuWFk9WTzfrFWauJLjP4fPHoc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_ORD 74 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_ORD_STR_SORTABLE 00074 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_REQUIRES_ORDS \ + 73, /* /soc/flash-controller@40022000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_SUPPORTS_ORDS \ + 75, /* /soc/flash-controller@40022000/flash@8000000/partitions */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_EXISTS 1 +#define DT_N_INST_0_st_stm32_nv_flash DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000 +#define DT_N_INST_0_soc_nv_flash DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000 +#define DT_N_NODELABEL_flash0 DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_REG_IDX_0_VAL_ADDRESS 134217728 /* 0x8000000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_REG_IDX_0_VAL_SIZE 524288 /* 0x80000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_COMPAT_MATCHES_st_stm32_nv_flash 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_COMPAT_MODEL_IDX_0 "stm32-nv-flash" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_COMPAT_MATCHES_soc_nv_flash 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_max_erase_time 40 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_max_erase_time_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_erase_block_size 2048 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_erase_block_size_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_write_block_size 8 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_write_block_size_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible {"st,stm32-nv-flash", "soc-nv-flash"} +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_0 "st,stm32-nv-flash" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-nv-flash +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_0_STRING_TOKEN st_stm32_nv_flash +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_NV_FLASH +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_1 "soc-nv-flash" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_1_STRING_UNQUOTED soc-nv-flash +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_1_STRING_TOKEN soc_nv_flash +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_IDX_1_STRING_UPPER_TOKEN SOC_NV_FLASH +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 0) \ + fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 1) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 1) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_LEN 2 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_reg {134217728 /* 0x8000000 */, 524288 /* 0x80000 */} +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_reg_IDX_0 134217728 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_reg_IDX_1 524288 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@40022000/flash@8000000/partitions + * + * Node identifier: DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions + * + * Binding (compatible = fixed-partitions): + * $ZEPHYR_BASE\dts\bindings\mtd\fixed-partitions.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_PATH "/soc/flash-controller@40022000/flash@8000000/partitions" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FULL_NAME "partitions" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FULL_NAME_UNQUOTED partitions +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FULL_NAME_TOKEN partitions +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FULL_NAME_UPPER_TOKEN PARTITIONS + +/* Node parent (/soc/flash-controller@40022000/flash@8000000) identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_PARENT DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_NODELABEL_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_CHILD_NUM 3 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_CHILD_NUM_STATUS_OKAY 3 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_HASH r8CF6c7oNqk__u_6kUfBaNdcHX6X_OrDziksYhz5Oa8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_ORD 75 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_ORD_STR_SORTABLE 00075 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_REQUIRES_ORDS \ + 74, /* /soc/flash-controller@40022000/flash@8000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_SUPPORTS_ORDS \ + 76, /* /soc/flash-controller@40022000/flash@8000000/partitions/partition@0 */ \ + 77, /* /soc/flash-controller@40022000/flash@8000000/partitions/partition@4000 */ \ + 78, /* /soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_EXISTS 1 +#define DT_N_INST_0_fixed_partitions DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_REG_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_COMPAT_MATCHES_fixed_partitions 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /soc/flash-controller@40022000/flash@8000000/partitions/partition@0 + * + * Node identifier: DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_PATH "/soc/flash-controller@40022000/flash@8000000/partitions/partition@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FULL_NAME "partition@0" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FULL_NAME_UNQUOTED partition@0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FULL_NAME_TOKEN partition_0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FULL_NAME_UPPER_TOKEN PARTITION_0 + +/* Node parent (/soc/flash-controller@40022000/flash@8000000/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_PARENT DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_NODELABEL(fn) fn(boot_partition) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(boot_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_HASH 6Sz_ccJ7CngkhSQocJdPkgtWcUey_vlut6fL5MN_ryM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_ORD 76 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_ORD_STR_SORTABLE 00076 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_REQUIRES_ORDS \ + 75, /* /soc/flash-controller@40022000/flash@8000000/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_EXISTS 1 +#define DT_N_NODELABEL_boot_partition DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_REG_IDX_0_VAL_SIZE 16384 /* 0x4000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_PARTITION_ID 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label "mcuboot" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_STRING_UNQUOTED mcuboot +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_STRING_TOKEN mcuboot +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_STRING_UPPER_TOKEN MCUBOOT +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_IDX_0 "mcuboot" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, label, 0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, label, 0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_read_only 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_reg {0 /* 0x0 */, 16384 /* 0x4000 */} +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_reg_IDX_1 16384 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@40022000/flash@8000000/partitions/partition@4000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_PATH "/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FULL_NAME "partition@4000" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FULL_NAME_UNQUOTED partition@4000 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FULL_NAME_TOKEN partition_4000 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FULL_NAME_UPPER_TOKEN PARTITION_4000 + +/* Node parent (/soc/flash-controller@40022000/flash@8000000/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_PARENT DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_NODELABEL(fn) fn(slot0_partition) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot0_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_HASH 0JjRAQNtGx5AfWcQkxkrT7XWXwtSbawQJ0tOUyJKFrY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_ORD 77 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_ORD_STR_SORTABLE 00077 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_REQUIRES_ORDS \ + 75, /* /soc/flash-controller@40022000/flash@8000000/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_EXISTS 1 +#define DT_N_NODELABEL_slot0_partition DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_REG_IDX_0_VAL_ADDRESS 16384 /* 0x4000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_REG_IDX_0_VAL_SIZE 98304 /* 0x18000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_PARTITION_ID 1 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label "image-0" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_STRING_UNQUOTED image-0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_STRING_TOKEN image_0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_STRING_UPPER_TOKEN IMAGE_0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_IDX_0 "image-0" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, label, 0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, label, 0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_reg {16384 /* 0x4000 */, 98304 /* 0x18000 */} +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_reg_IDX_0 16384 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_reg_IDX_1 98304 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_PATH "/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FULL_NAME "partition@1c000" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FULL_NAME_UNQUOTED partition@1c000 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FULL_NAME_TOKEN partition_1c000 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FULL_NAME_UPPER_TOKEN PARTITION_1C000 + +/* Node parent (/soc/flash-controller@40022000/flash@8000000/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_PARENT DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_NODELABEL(fn) fn(slot1_partition) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot1_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_HASH JRa9X6CnUZb6eywHP4lKSlNz2ryde6lUcXy6JBFAIcE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_ORD 78 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_ORD_STR_SORTABLE 00078 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_REQUIRES_ORDS \ + 75, /* /soc/flash-controller@40022000/flash@8000000/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_EXISTS 1 +#define DT_N_NODELABEL_slot1_partition DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_REG_IDX_0_VAL_ADDRESS 114688 /* 0x1c000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_REG_IDX_0_VAL_SIZE 16384 /* 0x4000 */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_PARTITION_ID 2 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label "image-1" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_STRING_UNQUOTED image-1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_STRING_TOKEN image_1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_STRING_UPPER_TOKEN IMAGE_1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_IDX_0 "image-1" +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, label, 0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, label, 0) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_reg {114688 /* 0x1c000 */, 16384 /* 0x4000 */} +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_reg_IDX_0 114688 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_reg_IDX_1 16384 +#define DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/gpio@50000c00 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00 + * + * Binding (compatible = st,stm32-gpio): + * $ZEPHYR_BASE\dts\bindings\gpio\st,stm32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_PATH "/soc/pin-controller@50000000/gpio@50000c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FULL_NAME "gpio@50000c00" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FULL_NAME_UNQUOTED gpio@50000c00 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FULL_NAME_TOKEN gpio_50000c00 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FULL_NAME_UPPER_TOKEN GPIO_50000C00 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_NODELABEL(fn) fn(gpiod) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpiod, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_HASH D3iRCn_6Yeg5Ne8nYWGLzCkUIMgpRH12K2b2dIydi4M + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_ORD 79 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_ORD_STR_SORTABLE 00079 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_EXISTS 1 +#define DT_N_INST_3_st_stm32_gpio DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00 +#define DT_N_NODELABEL_gpiod DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_REG_IDX_0_VAL_ADDRESS 1342180352 /* 0x50000c00 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_COMPAT_MATCHES_st_stm32_gpio 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_COMPAT_MODEL_IDX_0 "stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_reg {1342180352 /* 0x50000c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_reg_IDX_0 1342180352 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_VAL_bus 52 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_VAL_bits 8 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_ngpios 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_gpio_controller 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible {"st,stm32-gpio"} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_IDX_0 "st,stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_GPIO +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/gpio@50001400 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400 + * + * Binding (compatible = st,stm32-gpio): + * $ZEPHYR_BASE\dts\bindings\gpio\st,stm32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_PATH "/soc/pin-controller@50000000/gpio@50001400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FULL_NAME "gpio@50001400" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FULL_NAME_UNQUOTED gpio@50001400 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FULL_NAME_TOKEN gpio_50001400 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FULL_NAME_UPPER_TOKEN GPIO_50001400 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_NODELABEL(fn) fn(gpiof) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpiof, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_HASH qRYF9XhLshv_FAF5bjBpNo3E90yxBq4AebHDbM5qxsU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_ORD 80 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_ORD_STR_SORTABLE 00080 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_EXISTS 1 +#define DT_N_INST_4_st_stm32_gpio DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400 +#define DT_N_NODELABEL_gpiof DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_REG_IDX_0_VAL_ADDRESS 1342182400 /* 0x50001400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_COMPAT_MATCHES_st_stm32_gpio 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_COMPAT_MODEL_IDX_0 "stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_reg {1342182400 /* 0x50001400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_reg_IDX_0 1342182400 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_VAL_bus 52 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_VAL_bits 32 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_ngpios 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_gpio_controller 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible {"st,stm32-gpio"} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_IDX_0 "st,stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_IDX_0_STRING_TOKEN st_stm32_gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_GPIO +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/gpio@50000800 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800 + * + * Binding (compatible = st,stm32-gpio): + * $ZEPHYR_BASE\dts\bindings\gpio\st,stm32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_PATH "/soc/pin-controller@50000000/gpio@50000800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FULL_NAME "gpio@50000800" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FULL_NAME_UNQUOTED gpio@50000800 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FULL_NAME_TOKEN gpio_50000800 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FULL_NAME_UPPER_TOKEN GPIO_50000800 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_NODELABEL(fn) fn(gpioc) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpioc, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_HASH 1qFa9dE_ZBgW1Wz0LTrQVaMYOsZ6gmOlEgn7tKEWKn4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_ORD 81 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_ORD_STR_SORTABLE 00081 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_SUPPORTS_ORDS \ + 83, /* /soc/power@40007000 */ \ + 85, /* /soc/power@40007000/wkup-pin@2 */ \ + 88, /* /soc/power@40007000/wkup-pin@5 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_EXISTS 1 +#define DT_N_INST_2_st_stm32_gpio DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800 +#define DT_N_NODELABEL_gpioc DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_REG_IDX_0_VAL_ADDRESS 1342179328 /* 0x50000800 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_COMPAT_MATCHES_st_stm32_gpio 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_COMPAT_MODEL_IDX_0 "stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_reg {1342179328 /* 0x50000800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_reg_IDX_0 1342179328 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_VAL_bus 52 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_VAL_bits 4 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_ngpios 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_gpio_controller 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible {"st,stm32-gpio"} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_IDX_0 "st,stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_IDX_0_STRING_TOKEN st_stm32_gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_GPIO +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pin-controller@50000000/gpio@50001000 + * + * Node identifier: DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000 + * + * Binding (compatible = st,stm32-gpio): + * $ZEPHYR_BASE\dts\bindings\gpio\st,stm32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_PATH "/soc/pin-controller@50000000/gpio@50001000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FULL_NAME "gpio@50001000" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FULL_NAME_UNQUOTED gpio@50001000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FULL_NAME_TOKEN gpio_50001000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FULL_NAME_UPPER_TOKEN GPIO_50001000 + +/* Node parent (/soc/pin-controller@50000000) identifier: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_PARENT DT_N_S_soc_S_pin_controller_50000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_NODELABEL(fn) fn(gpioe) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpioe, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_CHILD_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_HASH KDStvgnnoXgnrZEAJ1Gk1opMGV3dw4LZU_3H_CIw6ok + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_ORD 82 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_ORD_STR_SORTABLE 00082 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_REQUIRES_ORDS \ + 8, /* /soc/rcc@40021000 */ \ + 29, /* /soc/pin-controller@50000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_SUPPORTS_ORDS \ + 83, /* /soc/power@40007000 */ \ + 86, /* /soc/power@40007000/wkup-pin@3 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_EXISTS 1 +#define DT_N_INST_5_st_stm32_gpio DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000 +#define DT_N_NODELABEL_gpioe DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_REG_NUM 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_REG_IDX_0_VAL_ADDRESS 1342181376 /* 0x50001000 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_RANGES_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_IRQ_NUM 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_COMPAT_MATCHES_st_stm32_gpio 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_COMPAT_MODEL_IDX_0 "stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_reg {1342181376 /* 0x50001000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_reg_IDX_0 1342181376 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_VAL_bus 52 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_VAL_bits 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0, bits) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_ngpios 16 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_gpio_controller 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible {"st,stm32-gpio"} +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_IDX_0 "st,stm32-gpio" +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_IDX_0_STRING_TOKEN st_stm32_gpio +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_GPIO +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, compatible, 0) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_wakeup_source 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000 + * + * Node identifier: DT_N_S_soc_S_power_40007000 + * + * Binding (compatible = st,stm32-pwr): + * $ZEPHYR_BASE\dts\bindings\power\st,stm32-pwr.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_PATH "/soc/power@40007000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_FULL_NAME "power@40007000" +#define DT_N_S_soc_S_power_40007000_FULL_NAME_UNQUOTED power@40007000 +#define DT_N_S_soc_S_power_40007000_FULL_NAME_TOKEN power_40007000 +#define DT_N_S_soc_S_power_40007000_FULL_NAME_UPPER_TOKEN POWER_40007000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_power_40007000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_CHILD_IDX 24 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_power_40007000_FOREACH_NODELABEL(fn) fn(pwr) +#define DT_N_S_soc_S_power_40007000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pwr, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_CHILD_NUM 6 +#define DT_N_S_soc_S_power_40007000_CHILD_NUM_STATUS_OKAY 6 +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_HASH 570OR4iIJIvFR6wJmcAFc0Aar1vQlapn14oifaA4Z2E + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_ORD 83 +#define DT_N_S_soc_S_power_40007000_ORD_STR_SORTABLE 00083 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ \ + 81, /* /soc/pin-controller@50000000/gpio@50000800 */ \ + 82, /* /soc/pin-controller@50000000/gpio@50001000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_SUPPORTS_ORDS \ + 84, /* /soc/power@40007000/wkup-pin@1 */ \ + 85, /* /soc/power@40007000/wkup-pin@2 */ \ + 86, /* /soc/power@40007000/wkup-pin@3 */ \ + 87, /* /soc/power@40007000/wkup-pin@4 */ \ + 88, /* /soc/power@40007000/wkup-pin@5 */ \ + 89, /* /soc/power@40007000/wkup-pin@6 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_EXISTS 1 +#define DT_N_INST_0_st_stm32_pwr DT_N_S_soc_S_power_40007000 +#define DT_N_NODELABEL_pwr DT_N_S_soc_S_power_40007000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_REG_IDX_0_VAL_ADDRESS 1073770496 /* 0x40007000 */ +#define DT_N_S_soc_S_power_40007000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_power_40007000_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_COMPAT_MATCHES_st_stm32_pwr 1 +#define DT_N_S_soc_S_power_40007000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_power_40007000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_COMPAT_MODEL_IDX_0 "stm32-pwr" +#define DT_N_S_soc_S_power_40007000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_P_reg {1073770496 /* 0x40007000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_power_40007000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_reg_IDX_0 1073770496 +#define DT_N_S_soc_S_power_40007000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_power_40007000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_wkup_pins_nb 6 +#define DT_N_S_soc_S_power_40007000_P_wkup_pins_nb_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_wkup_pins_pol 1 +#define DT_N_S_soc_S_power_40007000_P_wkup_pins_pol_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_wkup_pins_pupd 1 +#define DT_N_S_soc_S_power_40007000_P_wkup_pins_pupd_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_status "disabled" +#define DT_N_S_soc_S_power_40007000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_power_40007000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_power_40007000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_power_40007000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_power_40007000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_power_40007000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000, status, 0) +#define DT_N_S_soc_S_power_40007000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000, status, 0) +#define DT_N_S_soc_S_power_40007000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_P_status_LEN 1 +#define DT_N_S_soc_S_power_40007000_P_status_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_compatible {"st,stm32-pwr"} +#define DT_N_S_soc_S_power_40007000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_compatible_IDX_0 "st,stm32-pwr" +#define DT_N_S_soc_S_power_40007000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwr +#define DT_N_S_soc_S_power_40007000_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwr +#define DT_N_S_soc_S_power_40007000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWR +#define DT_N_S_soc_S_power_40007000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000, compatible, 0) +#define DT_N_S_soc_S_power_40007000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000, compatible, 0) +#define DT_N_S_soc_S_power_40007000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_P_compatible_LEN 1 +#define DT_N_S_soc_S_power_40007000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_power_40007000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_wakeup_source 0 +#define DT_N_S_soc_S_power_40007000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_power_40007000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000/wkup-pin@1 + * + * Node identifier: DT_N_S_soc_S_power_40007000_S_wkup_pin_1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_PATH "/soc/power@40007000/wkup-pin@1" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FULL_NAME "wkup-pin@1" +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FULL_NAME_UNQUOTED wkup-pin@1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FULL_NAME_TOKEN wkup_pin_1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FULL_NAME_UPPER_TOKEN WKUP_PIN_1 + +/* Node parent (/soc/power@40007000) identifier: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_PARENT DT_N_S_soc_S_power_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_NODELABEL_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_HASH NW2b2C8qGf2fTPa1HWCTW_8p2y4bR5Gg_e7mWjPz53Y + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_ORD 84 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_ORD_STR_SORTABLE 00084 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_REQUIRES_ORDS \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 83, /* /soc/power@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_REG_IDX_0_VAL_ADDRESS 1 /* 0x1 */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_reg {1 /* 0x1 */} +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_reg_IDX_0 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_VAL_pin 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_LEN 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_1_P_wkup_gpios_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000/wkup-pin@2 + * + * Node identifier: DT_N_S_soc_S_power_40007000_S_wkup_pin_2 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_PATH "/soc/power@40007000/wkup-pin@2" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FULL_NAME "wkup-pin@2" +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FULL_NAME_UNQUOTED wkup-pin@2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FULL_NAME_TOKEN wkup_pin_2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FULL_NAME_UPPER_TOKEN WKUP_PIN_2 + +/* Node parent (/soc/power@40007000) identifier: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_PARENT DT_N_S_soc_S_power_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_NODELABEL_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_HASH asNVM0_1hd69cshoSr75LmC_8C07RKzuAG_b6Z_Ff_4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_ORD 85 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_ORD_STR_SORTABLE 00085 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_REQUIRES_ORDS \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 81, /* /soc/pin-controller@50000000/gpio@50000800 */ \ + 83, /* /soc/power@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_REG_IDX_0_VAL_ADDRESS 2 /* 0x2 */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_reg {2 /* 0x2 */} +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_reg_IDX_0 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_VAL_pin 4 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_VAL_pin 13 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, wkup_gpios, 1, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_LEN 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_2_P_wkup_gpios_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000/wkup-pin@3 + * + * Node identifier: DT_N_S_soc_S_power_40007000_S_wkup_pin_3 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_PATH "/soc/power@40007000/wkup-pin@3" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FULL_NAME "wkup-pin@3" +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FULL_NAME_UNQUOTED wkup-pin@3 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FULL_NAME_TOKEN wkup_pin_3 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FULL_NAME_UPPER_TOKEN WKUP_PIN_3 + +/* Node parent (/soc/power@40007000) identifier: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_PARENT DT_N_S_soc_S_power_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_NODELABEL_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_HASH NhScRIjJXQJ24r2IeWsPkpm22FgX8jzrFBUIGDTjUok + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_ORD 86 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_ORD_STR_SORTABLE 00086 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_REQUIRES_ORDS \ + 82, /* /soc/pin-controller@50000000/gpio@50001000 */ \ + 83, /* /soc/power@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_REG_IDX_0_VAL_ADDRESS 3 /* 0x3 */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_reg {3 /* 0x3 */} +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_reg_IDX_0 3 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_VAL_pin 6 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_LEN 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_3_P_wkup_gpios_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000/wkup-pin@4 + * + * Node identifier: DT_N_S_soc_S_power_40007000_S_wkup_pin_4 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_PATH "/soc/power@40007000/wkup-pin@4" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FULL_NAME "wkup-pin@4" +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FULL_NAME_UNQUOTED wkup-pin@4 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FULL_NAME_TOKEN wkup_pin_4 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FULL_NAME_UPPER_TOKEN WKUP_PIN_4 + +/* Node parent (/soc/power@40007000) identifier: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_PARENT DT_N_S_soc_S_power_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_NODELABEL_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_HASH UqQ36AC2b80Rf1IkbsxTipsFKRyOpEjb_ob6NFwOp_g + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_ORD 87 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_ORD_STR_SORTABLE 00087 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_REQUIRES_ORDS \ + 30, /* /soc/pin-controller@50000000/gpio@50000000 */ \ + 83, /* /soc/power@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_REG_IDX_0_VAL_ADDRESS 4 /* 0x4 */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_reg {4 /* 0x4 */} +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_reg_IDX_0 4 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_VAL_pin 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_LEN 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_4_P_wkup_gpios_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000/wkup-pin@5 + * + * Node identifier: DT_N_S_soc_S_power_40007000_S_wkup_pin_5 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_PATH "/soc/power@40007000/wkup-pin@5" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FULL_NAME "wkup-pin@5" +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FULL_NAME_UNQUOTED wkup-pin@5 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FULL_NAME_TOKEN wkup_pin_5 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FULL_NAME_UPPER_TOKEN WKUP_PIN_5 + +/* Node parent (/soc/power@40007000) identifier: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_PARENT DT_N_S_soc_S_power_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_NODELABEL_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_HASH C7OqJCKbcwWjo6s6Wxlf2Yrf1v5DpWLrrhgWvDM2OC4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_ORD 88 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_ORD_STR_SORTABLE 00088 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_REQUIRES_ORDS \ + 81, /* /soc/pin-controller@50000000/gpio@50000800 */ \ + 83, /* /soc/power@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_REG_IDX_0_VAL_ADDRESS 5 /* 0x5 */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_reg {5 /* 0x5 */} +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_reg_IDX_0 5 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_VAL_pin 5 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_LEN 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_5_P_wkup_gpios_EXISTS 1 + +/* + * Devicetree node: /soc/power@40007000/wkup-pin@6 + * + * Node identifier: DT_N_S_soc_S_power_40007000_S_wkup_pin_6 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_PATH "/soc/power@40007000/wkup-pin@6" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FULL_NAME "wkup-pin@6" +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FULL_NAME_UNQUOTED wkup-pin@6 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FULL_NAME_TOKEN wkup_pin_6 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FULL_NAME_UPPER_TOKEN WKUP_PIN_6 + +/* Node parent (/soc/power@40007000) identifier: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_PARENT DT_N_S_soc_S_power_40007000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_NODELABEL_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_CHILD_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_HASH 5K5j8qzAD57tENr7ZXAFm4pXA0ubm1cWHSZj8EJrrc8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_ORD 89 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_ORD_STR_SORTABLE 00089 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_REQUIRES_ORDS \ + 31, /* /soc/pin-controller@50000000/gpio@50000400 */ \ + 83, /* /soc/power@40007000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_REG_NUM 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_REG_IDX_0_VAL_ADDRESS 6 /* 0x6 */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_RANGES_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_IRQ_NUM 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_IRQ_LEVEL 0 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_reg {6 /* 0x6 */} +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_reg_IDX_0 6 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_reg_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_PH DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_VAL_pin 5 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0, pin) \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0, flags) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, wkup_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_LEN 1 +#define DT_N_S_soc_S_power_40007000_S_wkup_pin_6_P_wkup_gpios_EXISTS 1 + +/* + * Devicetree node: /soc/rtc@40002800 + * + * Node identifier: DT_N_S_soc_S_rtc_40002800 + * + * Binding (compatible = st,stm32-rtc): + * $ZEPHYR_BASE\dts\bindings\rtc\st,stm32-rtc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rtc_40002800_PATH "/soc/rtc@40002800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rtc_40002800_FULL_NAME "rtc@40002800" +#define DT_N_S_soc_S_rtc_40002800_FULL_NAME_UNQUOTED rtc@40002800 +#define DT_N_S_soc_S_rtc_40002800_FULL_NAME_TOKEN rtc_40002800 +#define DT_N_S_soc_S_rtc_40002800_FULL_NAME_UPPER_TOKEN RTC_40002800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_rtc_40002800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rtc_40002800_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rtc_40002800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rtc_40002800_FOREACH_NODELABEL(fn) fn(rtc) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rtc_40002800_CHILD_NUM 1 +#define DT_N_S_soc_S_rtc_40002800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40002800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_rtc_40002800_HASH gMDUpS7Ndbl4XKI6XlHTk7n7PIqWK98QhTUf_xffseI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rtc_40002800_ORD 90 +#define DT_N_S_soc_S_rtc_40002800_ORD_STR_SORTABLE 00090 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rtc_40002800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rtc_40002800_SUPPORTS_ORDS \ + 91, /* /soc/rtc@40002800/backup_regs */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rtc_40002800_EXISTS 1 +#define DT_N_INST_0_st_stm32_rtc DT_N_S_soc_S_rtc_40002800 +#define DT_N_NODELABEL_rtc DT_N_S_soc_S_rtc_40002800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rtc_40002800_REG_NUM 1 +#define DT_N_S_soc_S_rtc_40002800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_REG_IDX_0_VAL_ADDRESS 1073752064 /* 0x40002800 */ +#define DT_N_S_soc_S_rtc_40002800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_rtc_40002800_RANGES_NUM 0 +#define DT_N_S_soc_S_rtc_40002800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rtc_40002800_IRQ_NUM 1 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_VAL_irq 2 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_rtc_40002800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_rtc_40002800_COMPAT_MATCHES_st_stm32_rtc 1 +#define DT_N_S_soc_S_rtc_40002800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_rtc_40002800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_COMPAT_MODEL_IDX_0 "stm32-rtc" +#define DT_N_S_soc_S_rtc_40002800_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rtc_40002800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rtc_40002800_P_reg {1073752064 /* 0x40002800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_rtc_40002800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_reg_IDX_0 1073752064 +#define DT_N_S_soc_S_rtc_40002800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_rtc_40002800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_alarms_count 2 +#define DT_N_S_soc_S_rtc_40002800_P_alarms_count_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_alrm_exti_line 19 +#define DT_N_S_soc_S_rtc_40002800_P_alrm_exti_line_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_interrupts {2 /* 0x2 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_rtc_40002800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_interrupts_IDX_0 2 +#define DT_N_S_soc_S_rtc_40002800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_rtc_40002800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_prescaler 32768 +#define DT_N_S_soc_S_rtc_40002800_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_status "okay" +#define DT_N_S_soc_S_rtc_40002800_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_rtc_40002800_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_rtc_40002800_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_rtc_40002800_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_rtc_40002800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_rtc_40002800_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40002800, status, 0) +#define DT_N_S_soc_S_rtc_40002800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800, status, 0) +#define DT_N_S_soc_S_rtc_40002800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40002800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40002800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_P_status_LEN 1 +#define DT_N_S_soc_S_rtc_40002800_P_status_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_compatible {"st,stm32-rtc"} +#define DT_N_S_soc_S_rtc_40002800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_compatible_IDX_0 "st,stm32-rtc" +#define DT_N_S_soc_S_rtc_40002800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-rtc +#define DT_N_S_soc_S_rtc_40002800_P_compatible_IDX_0_STRING_TOKEN st_stm32_rtc +#define DT_N_S_soc_S_rtc_40002800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_RTC +#define DT_N_S_soc_S_rtc_40002800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40002800, compatible, 0) +#define DT_N_S_soc_S_rtc_40002800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800, compatible, 0) +#define DT_N_S_soc_S_rtc_40002800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40002800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40002800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_P_compatible_LEN 1 +#define DT_N_S_soc_S_rtc_40002800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_VAL_bits 1024 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_rtc_40002800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 0, bits) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 0, bits) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_VAL_bus 3 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_VAL_bits 36175964 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_rtc_40002800, clocks, 1, bus) \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 1, bits) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 1, bits) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40002800, clocks, 0) \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 1) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 1) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40002800, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40002800, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_rtc_40002800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_P_clocks_LEN 2 +#define DT_N_S_soc_S_rtc_40002800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rtc_40002800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_wakeup_source 0 +#define DT_N_S_soc_S_rtc_40002800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rtc_40002800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/rtc@40002800/backup_regs + * + * Node identifier: DT_N_S_soc_S_rtc_40002800_S_backup_regs + * + * Binding (compatible = st,stm32-bbram): + * $ZEPHYR_BASE\dts\bindings\memory-controllers\st,stm32-bbram.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_PATH "/soc/rtc@40002800/backup_regs" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FULL_NAME "backup_regs" +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FULL_NAME_UNQUOTED backup_regs +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FULL_NAME_TOKEN backup_regs +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FULL_NAME_UPPER_TOKEN BACKUP_REGS + +/* Node parent (/soc/rtc@40002800) identifier: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_PARENT DT_N_S_soc_S_rtc_40002800 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_NODELABEL(fn) fn(bbram) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_NODELABEL_VARGS(fn, ...) fn(bbram, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_rtc_40002800) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_CHILD_NUM 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_HASH 87KLygauUkNGUe3q_y8ziT69orcsnQqP1AwsJG8Gz24 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_ORD 91 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_ORD_STR_SORTABLE 00091 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_REQUIRES_ORDS \ + 90, /* /soc/rtc@40002800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_EXISTS 1 +#define DT_N_INST_0_st_stm32_bbram DT_N_S_soc_S_rtc_40002800_S_backup_regs +#define DT_N_NODELABEL_bbram DT_N_S_soc_S_rtc_40002800_S_backup_regs + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_REG_NUM 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_RANGES_NUM 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_IRQ_NUM 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_IRQ_LEVEL 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_COMPAT_MATCHES_st_stm32_bbram 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_COMPAT_MODEL_IDX_0 "stm32-bbram" +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_st_backup_regs 5 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_st_backup_regs_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status "disabled" +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, status, 0) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, status, 0) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_LEN 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_status_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible {"st,stm32-bbram"} +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_IDX_0 "st,stm32-bbram" +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-bbram +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_IDX_0_STRING_TOKEN st_stm32_bbram +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_BBRAM +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, compatible, 0) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, compatible, 0) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_LEN 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_wakeup_source 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rtc_40002800_S_backup_regs_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000000 + * + * Node identifier: DT_N_S_soc_S_timers_40000000 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000000_PATH "/soc/timers@40000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000000_FULL_NAME "timers@40000000" +#define DT_N_S_soc_S_timers_40000000_FULL_NAME_UNQUOTED timers@40000000 +#define DT_N_S_soc_S_timers_40000000_FULL_NAME_TOKEN timers_40000000 +#define DT_N_S_soc_S_timers_40000000_FULL_NAME_UPPER_TOKEN TIMERS_40000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000000_CHILD_IDX 26 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40000000_FOREACH_NODELABEL(fn) fn(timers2) +#define DT_N_S_soc_S_timers_40000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers2, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000000_CHILD_NUM 2 +#define DT_N_S_soc_S_timers_40000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40000000_S_pwm) fn(DT_N_S_soc_S_timers_40000000_S_qdec) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000000_S_qdec) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000000_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000000_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000000_HASH EG81bdVGBcHLEHOWL0pmGPFAUziNY8yKUHEsHXKaWCc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000000_ORD 92 +#define DT_N_S_soc_S_timers_40000000_ORD_STR_SORTABLE 00092 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000000_SUPPORTS_ORDS \ + 93, /* /soc/timers@40000000/pwm */ \ + 94, /* /soc/timers@40000000/qdec */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000000_EXISTS 1 +#define DT_N_INST_5_st_stm32_timers DT_N_S_soc_S_timers_40000000 +#define DT_N_NODELABEL_timers2 DT_N_S_soc_S_timers_40000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000000_REG_NUM 1 +#define DT_N_S_soc_S_timers_40000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_REG_IDX_0_VAL_ADDRESS 1073741824 /* 0x40000000 */ +#define DT_N_S_soc_S_timers_40000000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40000000_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000000_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_VAL_irq 15 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40000000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40000000_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40000000_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40000000_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40000000_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40000000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000000_P_reg {1073741824 /* 0x40000000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_reg_IDX_0 1073741824 +#define DT_N_S_soc_S_timers_40000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_VAL_bits 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000000, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40000000_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40000000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 1) +#define DT_N_S_soc_S_timers_40000000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 1) +#define DT_N_S_soc_S_timers_40000000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40000000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_VAL_id 1408 +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000000, resets, 0, id) +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, resets, 0, id) +#define DT_N_S_soc_S_timers_40000000_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40000000_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000, resets, 0) +#define DT_N_S_soc_S_timers_40000000_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, resets, 0) +#define DT_N_S_soc_S_timers_40000000_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40000000_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40000000_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40000000_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_status "disabled" +#define DT_N_S_soc_S_timers_40000000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000, status, 0) +#define DT_N_S_soc_S_timers_40000000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, status, 0) +#define DT_N_S_soc_S_timers_40000000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40000000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40000000_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000, compatible, 0) +#define DT_N_S_soc_S_timers_40000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, compatible, 0) +#define DT_N_S_soc_S_timers_40000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_interrupts {15 /* 0xf */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40000000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_interrupts_IDX_0 15 +#define DT_N_S_soc_S_timers_40000000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40000000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40000000_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000000/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40000000_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_PATH "/soc/timers@40000000/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40000000_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40000000_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40000000_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40000000) identifier: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_PARENT DT_N_S_soc_S_timers_40000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_HASH EPAdjmCelZ_p_2x7j2JfW0691g5_Ul9BLhqJG9tnJMk + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_ORD 93 +#define DT_N_S_soc_S_timers_40000000_S_pwm_ORD_STR_SORTABLE 00093 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_REQUIRES_ORDS \ + 92, /* /soc/timers@40000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_EXISTS 1 +#define DT_N_INST_5_st_stm32_pwm DT_N_S_soc_S_timers_40000000_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000000_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000000_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40000000_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000000_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000000/qdec + * + * Node identifier: DT_N_S_soc_S_timers_40000000_S_qdec + * + * Binding (compatible = st,stm32-qdec): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-qdec.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_PATH "/soc/timers@40000000/qdec" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_FULL_NAME "qdec" +#define DT_N_S_soc_S_timers_40000000_S_qdec_FULL_NAME_UNQUOTED qdec +#define DT_N_S_soc_S_timers_40000000_S_qdec_FULL_NAME_TOKEN qdec +#define DT_N_S_soc_S_timers_40000000_S_qdec_FULL_NAME_UPPER_TOKEN QDEC + +/* Node parent (/soc/timers@40000000) identifier: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_PARENT DT_N_S_soc_S_timers_40000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_HASH xeDccz_QkMBo6l8_wMCsnsC88OsLpoM_UNpiSWf6rWM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_ORD 94 +#define DT_N_S_soc_S_timers_40000000_S_qdec_ORD_STR_SORTABLE 00094 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_REQUIRES_ORDS \ + 92, /* /soc/timers@40000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_EXISTS 1 +#define DT_N_INST_2_st_stm32_qdec DT_N_S_soc_S_timers_40000000_S_qdec + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000000_S_qdec_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_COMPAT_MATCHES_st_stm32_qdec 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000000_S_qdec_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_COMPAT_MODEL_IDX_0 "stm32-qdec" +#define DT_N_S_soc_S_timers_40000000_S_qdec_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_encoder_mode 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_encoder_mode_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_encoder_mode_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_encoder_mode_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_encoder_mode_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_encoder_mode_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_polarity_inverted 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_polarity_inverted_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_filter_level 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_filter_level_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_filter_level_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_filter_level_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_filter_level_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_st_input_filter_level_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status "disabled" +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible {"st,stm32-qdec"} +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_IDX_0 "st,stm32-qdec" +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-qdec +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_IDX_0_STRING_TOKEN st_stm32_qdec +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_QDEC +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000000_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000000_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000000_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000000_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000000_S_qdec_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000400 + * + * Node identifier: DT_N_S_soc_S_timers_40000400 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000400_PATH "/soc/timers@40000400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000400_FULL_NAME "timers@40000400" +#define DT_N_S_soc_S_timers_40000400_FULL_NAME_UNQUOTED timers@40000400 +#define DT_N_S_soc_S_timers_40000400_FULL_NAME_TOKEN timers_40000400 +#define DT_N_S_soc_S_timers_40000400_FULL_NAME_UPPER_TOKEN TIMERS_40000400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40000400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000400_CHILD_IDX 13 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40000400_FOREACH_NODELABEL(fn) fn(timers3) +#define DT_N_S_soc_S_timers_40000400_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers3, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000400_CHILD_NUM 3 +#define DT_N_S_soc_S_timers_40000400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40000400_S_pwm) fn(DT_N_S_soc_S_timers_40000400_S_counter) fn(DT_N_S_soc_S_timers_40000400_S_qdec) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000400_S_counter) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000400_S_qdec) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000400_S_counter, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000400_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000400_HASH baeUapzy1gNL2E23NOiz9371NQp1G8KhvyeXIcEPqLk + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000400_ORD 95 +#define DT_N_S_soc_S_timers_40000400_ORD_STR_SORTABLE 00095 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000400_SUPPORTS_ORDS \ + 96, /* /soc/timers@40000400/counter */ \ + 97, /* /soc/timers@40000400/pwm */ \ + 98, /* /soc/timers@40000400/qdec */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000400_EXISTS 1 +#define DT_N_INST_1_st_stm32_timers DT_N_S_soc_S_timers_40000400 +#define DT_N_NODELABEL_timers3 DT_N_S_soc_S_timers_40000400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000400_REG_NUM 1 +#define DT_N_S_soc_S_timers_40000400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_REG_IDX_0_VAL_ADDRESS 1073742848 /* 0x40000400 */ +#define DT_N_S_soc_S_timers_40000400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40000400_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000400_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_VAL_irq 16 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40000400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40000400_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40000400_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40000400_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40000400_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40000400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40000400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000400_P_reg {1073742848 /* 0x40000400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40000400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_reg_IDX_0 1073742848 +#define DT_N_S_soc_S_timers_40000400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40000400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_VAL_bits 2 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000400, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40000400_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40000400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 1) +#define DT_N_S_soc_S_timers_40000400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 1) +#define DT_N_S_soc_S_timers_40000400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000400, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40000400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_VAL_id 1409 +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000400, resets, 0, id) +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, resets, 0, id) +#define DT_N_S_soc_S_timers_40000400_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40000400_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400, resets, 0) +#define DT_N_S_soc_S_timers_40000400_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, resets, 0) +#define DT_N_S_soc_S_timers_40000400_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40000400_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40000400_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40000400_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_status "disabled" +#define DT_N_S_soc_S_timers_40000400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400, status, 0) +#define DT_N_S_soc_S_timers_40000400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, status, 0) +#define DT_N_S_soc_S_timers_40000400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000400_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40000400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40000400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40000400_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40000400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40000400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_interrupts {16 /* 0x10 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40000400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_interrupts_IDX_0 16 +#define DT_N_S_soc_S_timers_40000400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40000400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40000400_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000400/counter + * + * Node identifier: DT_N_S_soc_S_timers_40000400_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_PATH "/soc/timers@40000400/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40000400_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40000400_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40000400_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40000400) identifier: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_PARENT DT_N_S_soc_S_timers_40000400 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000400) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000400_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_HASH JNkHbJAdpxqum04dZjR7ujFGNxo62pj2eB31ikv0Phc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_ORD 96 +#define DT_N_S_soc_S_timers_40000400_S_counter_ORD_STR_SORTABLE 00096 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_REQUIRES_ORDS \ + 95, /* /soc/timers@40000400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_EXISTS 1 +#define DT_N_INST_1_st_stm32_counter DT_N_S_soc_S_timers_40000400_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000400_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000400_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40000400_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000400_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000400/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40000400_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_PATH "/soc/timers@40000400/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40000400_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40000400_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40000400_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40000400) identifier: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_PARENT DT_N_S_soc_S_timers_40000400 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000400) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_HASH 3XEqw4Q0MqUTTpvQ0Yrht2rVkAAPsKyjdgccEVU8gEE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_ORD 97 +#define DT_N_S_soc_S_timers_40000400_S_pwm_ORD_STR_SORTABLE 00097 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_REQUIRES_ORDS \ + 95, /* /soc/timers@40000400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_EXISTS 1 +#define DT_N_INST_1_st_stm32_pwm DT_N_S_soc_S_timers_40000400_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000400_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000400_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40000400_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000400_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000400/qdec + * + * Node identifier: DT_N_S_soc_S_timers_40000400_S_qdec + * + * Binding (compatible = st,stm32-qdec): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-qdec.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_PATH "/soc/timers@40000400/qdec" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_FULL_NAME "qdec" +#define DT_N_S_soc_S_timers_40000400_S_qdec_FULL_NAME_UNQUOTED qdec +#define DT_N_S_soc_S_timers_40000400_S_qdec_FULL_NAME_TOKEN qdec +#define DT_N_S_soc_S_timers_40000400_S_qdec_FULL_NAME_UPPER_TOKEN QDEC + +/* Node parent (/soc/timers@40000400) identifier: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_PARENT DT_N_S_soc_S_timers_40000400 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000400) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_HASH XoYaEyYM5OKvrXAYNQJb_KuMBHYcObyudHjfcpXT8_Q + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_ORD 98 +#define DT_N_S_soc_S_timers_40000400_S_qdec_ORD_STR_SORTABLE 00098 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_REQUIRES_ORDS \ + 95, /* /soc/timers@40000400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_EXISTS 1 +#define DT_N_INST_1_st_stm32_qdec DT_N_S_soc_S_timers_40000400_S_qdec + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000400_S_qdec_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_COMPAT_MATCHES_st_stm32_qdec 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000400_S_qdec_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_COMPAT_MODEL_IDX_0 "stm32-qdec" +#define DT_N_S_soc_S_timers_40000400_S_qdec_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_encoder_mode 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_encoder_mode_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_encoder_mode_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_encoder_mode_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_encoder_mode_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_encoder_mode_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_polarity_inverted 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_polarity_inverted_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_filter_level 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_filter_level_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_filter_level_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_filter_level_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_filter_level_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_st_input_filter_level_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status "disabled" +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible {"st,stm32-qdec"} +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_IDX_0 "st,stm32-qdec" +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-qdec +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_IDX_0_STRING_TOKEN st_stm32_qdec +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_QDEC +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000400_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000400_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000400_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000400_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000400_S_qdec_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000800 + * + * Node identifier: DT_N_S_soc_S_timers_40000800 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000800_PATH "/soc/timers@40000800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000800_FULL_NAME "timers@40000800" +#define DT_N_S_soc_S_timers_40000800_FULL_NAME_UNQUOTED timers@40000800 +#define DT_N_S_soc_S_timers_40000800_FULL_NAME_TOKEN timers_40000800 +#define DT_N_S_soc_S_timers_40000800_FULL_NAME_UPPER_TOKEN TIMERS_40000800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40000800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000800_CHILD_IDX 40 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40000800_FOREACH_NODELABEL(fn) fn(timers4) +#define DT_N_S_soc_S_timers_40000800_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers4, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000800_CHILD_NUM 2 +#define DT_N_S_soc_S_timers_40000800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40000800_S_pwm) fn(DT_N_S_soc_S_timers_40000800_S_qdec) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000800_S_qdec) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000800_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40000800_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000800_HASH VTBFi6bYiewunKr1vKL59kMmaq2wTI7eroMWbGtK2dw + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000800_ORD 99 +#define DT_N_S_soc_S_timers_40000800_ORD_STR_SORTABLE 00099 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000800_SUPPORTS_ORDS \ + 100, /* /soc/timers@40000800/pwm */ \ + 101, /* /soc/timers@40000800/qdec */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000800_EXISTS 1 +#define DT_N_INST_9_st_stm32_timers DT_N_S_soc_S_timers_40000800 +#define DT_N_NODELABEL_timers4 DT_N_S_soc_S_timers_40000800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000800_REG_NUM 1 +#define DT_N_S_soc_S_timers_40000800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_REG_IDX_0_VAL_ADDRESS 1073743872 /* 0x40000800 */ +#define DT_N_S_soc_S_timers_40000800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40000800_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000800_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_VAL_irq 16 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40000800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40000800_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40000800_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40000800_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40000800_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40000800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40000800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000800_P_reg {1073743872 /* 0x40000800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40000800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_reg_IDX_0 1073743872 +#define DT_N_S_soc_S_timers_40000800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40000800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_VAL_bits 4 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000800, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40000800_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40000800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 1) +#define DT_N_S_soc_S_timers_40000800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 1) +#define DT_N_S_soc_S_timers_40000800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40000800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40000800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_VAL_id 1410 +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40000800, resets, 0, id) +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, resets, 0, id) +#define DT_N_S_soc_S_timers_40000800_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40000800_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800, resets, 0) +#define DT_N_S_soc_S_timers_40000800_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, resets, 0) +#define DT_N_S_soc_S_timers_40000800_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40000800_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40000800_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40000800_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_status "disabled" +#define DT_N_S_soc_S_timers_40000800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800, status, 0) +#define DT_N_S_soc_S_timers_40000800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, status, 0) +#define DT_N_S_soc_S_timers_40000800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000800_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40000800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40000800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40000800_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40000800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40000800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800, compatible, 0) +#define DT_N_S_soc_S_timers_40000800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, compatible, 0) +#define DT_N_S_soc_S_timers_40000800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_interrupts {16 /* 0x10 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40000800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_interrupts_IDX_0 16 +#define DT_N_S_soc_S_timers_40000800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40000800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40000800_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000800/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40000800_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_PATH "/soc/timers@40000800/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40000800_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40000800_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40000800_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40000800) identifier: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_PARENT DT_N_S_soc_S_timers_40000800 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000800) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_HASH rmmRd1gBchFTmlpcPkj2kPN2S9h0o7_bVDPViAglyik + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_ORD 100 +#define DT_N_S_soc_S_timers_40000800_S_pwm_ORD_STR_SORTABLE 00100 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_REQUIRES_ORDS \ + 99, /* /soc/timers@40000800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_EXISTS 1 +#define DT_N_INST_7_st_stm32_pwm DT_N_S_soc_S_timers_40000800_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000800_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000800_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40000800_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000800_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40000800/qdec + * + * Node identifier: DT_N_S_soc_S_timers_40000800_S_qdec + * + * Binding (compatible = st,stm32-qdec): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-qdec.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_PATH "/soc/timers@40000800/qdec" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_FULL_NAME "qdec" +#define DT_N_S_soc_S_timers_40000800_S_qdec_FULL_NAME_UNQUOTED qdec +#define DT_N_S_soc_S_timers_40000800_S_qdec_FULL_NAME_TOKEN qdec +#define DT_N_S_soc_S_timers_40000800_S_qdec_FULL_NAME_UPPER_TOKEN QDEC + +/* Node parent (/soc/timers@40000800) identifier: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_PARENT DT_N_S_soc_S_timers_40000800 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40000800) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_HASH NyJhopD0plir_yCl3bvK19fzvR7T8hmdf4SgsPGbBRs + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_ORD 101 +#define DT_N_S_soc_S_timers_40000800_S_qdec_ORD_STR_SORTABLE 00101 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_REQUIRES_ORDS \ + 99, /* /soc/timers@40000800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_EXISTS 1 +#define DT_N_INST_3_st_stm32_qdec DT_N_S_soc_S_timers_40000800_S_qdec + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_REG_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40000800_S_qdec_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_COMPAT_MATCHES_st_stm32_qdec 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40000800_S_qdec_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_COMPAT_MODEL_IDX_0 "stm32-qdec" +#define DT_N_S_soc_S_timers_40000800_S_qdec_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_encoder_mode 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_encoder_mode_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_encoder_mode_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_encoder_mode_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_encoder_mode_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_encoder_mode_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_polarity_inverted 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_polarity_inverted_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_filter_level 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_filter_level_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_filter_level_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_filter_level_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_filter_level_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_st_input_filter_level_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status "disabled" +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible {"st,stm32-qdec"} +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_IDX_0 "st,stm32-qdec" +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-qdec +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_IDX_0_STRING_TOKEN st_stm32_qdec +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_QDEC +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40000800_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40000800_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40000800_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40000800_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40000800_S_qdec_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40001000 + * + * Node identifier: DT_N_S_soc_S_timers_40001000 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40001000_PATH "/soc/timers@40001000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40001000_FULL_NAME "timers@40001000" +#define DT_N_S_soc_S_timers_40001000_FULL_NAME_UNQUOTED timers@40001000 +#define DT_N_S_soc_S_timers_40001000_FULL_NAME_TOKEN timers_40001000 +#define DT_N_S_soc_S_timers_40001000_FULL_NAME_UPPER_TOKEN TIMERS_40001000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40001000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40001000_CHILD_IDX 27 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40001000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40001000_FOREACH_NODELABEL(fn) fn(timers6) +#define DT_N_S_soc_S_timers_40001000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers6, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40001000_CHILD_NUM 1 +#define DT_N_S_soc_S_timers_40001000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40001000_S_counter) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000_S_counter) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40001000_HASH Nsz_iy2H8UvqHZMouFTv3bvFrOuL3LyjaTTN24v0eBQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40001000_ORD 102 +#define DT_N_S_soc_S_timers_40001000_ORD_STR_SORTABLE 00102 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40001000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40001000_SUPPORTS_ORDS \ + 103, /* /soc/timers@40001000/counter */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40001000_EXISTS 1 +#define DT_N_INST_6_st_stm32_timers DT_N_S_soc_S_timers_40001000 +#define DT_N_NODELABEL_timers6 DT_N_S_soc_S_timers_40001000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40001000_REG_NUM 1 +#define DT_N_S_soc_S_timers_40001000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_REG_IDX_0_VAL_ADDRESS 1073745920 /* 0x40001000 */ +#define DT_N_S_soc_S_timers_40001000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40001000_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40001000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40001000_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_VAL_irq 17 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40001000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40001000_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40001000_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40001000_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40001000_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40001000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40001000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40001000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40001000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40001000_P_reg {1073745920 /* 0x40001000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40001000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_reg_IDX_0 1073745920 +#define DT_N_S_soc_S_timers_40001000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40001000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_VAL_bits 16 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40001000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40001000, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40001000_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40001000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 1) +#define DT_N_S_soc_S_timers_40001000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 1) +#define DT_N_S_soc_S_timers_40001000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40001000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_VAL_id 1412 +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40001000, resets, 0, id) +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, resets, 0, id) +#define DT_N_S_soc_S_timers_40001000_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40001000_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000, resets, 0) +#define DT_N_S_soc_S_timers_40001000_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, resets, 0) +#define DT_N_S_soc_S_timers_40001000_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40001000_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40001000_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_status "disabled" +#define DT_N_S_soc_S_timers_40001000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40001000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40001000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40001000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40001000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40001000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000, status, 0) +#define DT_N_S_soc_S_timers_40001000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, status, 0) +#define DT_N_S_soc_S_timers_40001000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40001000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40001000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40001000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40001000_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40001000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40001000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000, compatible, 0) +#define DT_N_S_soc_S_timers_40001000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, compatible, 0) +#define DT_N_S_soc_S_timers_40001000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40001000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_interrupts {17 /* 0x11 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40001000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_interrupts_IDX_0 17 +#define DT_N_S_soc_S_timers_40001000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40001000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40001000_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40001000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40001000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40001000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40001000/counter + * + * Node identifier: DT_N_S_soc_S_timers_40001000_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_PATH "/soc/timers@40001000/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40001000_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40001000_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40001000_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40001000) identifier: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_PARENT DT_N_S_soc_S_timers_40001000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40001000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40001000_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_HASH kRqNwCO_GFQ9B_IU80aWEsZniZ2xLsueygEKHK_oRqE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_ORD 103 +#define DT_N_S_soc_S_timers_40001000_S_counter_ORD_STR_SORTABLE 00103 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_REQUIRES_ORDS \ + 102, /* /soc/timers@40001000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_EXISTS 1 +#define DT_N_INST_5_st_stm32_counter DT_N_S_soc_S_timers_40001000_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40001000_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40001000_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40001000_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001000_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001000_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40001000_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40001400 + * + * Node identifier: DT_N_S_soc_S_timers_40001400 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40001400_PATH "/soc/timers@40001400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40001400_FULL_NAME "timers@40001400" +#define DT_N_S_soc_S_timers_40001400_FULL_NAME_UNQUOTED timers@40001400 +#define DT_N_S_soc_S_timers_40001400_FULL_NAME_TOKEN timers_40001400 +#define DT_N_S_soc_S_timers_40001400_FULL_NAME_UPPER_TOKEN TIMERS_40001400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40001400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40001400_CHILD_IDX 28 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40001400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40001400_FOREACH_NODELABEL(fn) fn(timers7) +#define DT_N_S_soc_S_timers_40001400_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers7, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40001400_CHILD_NUM 1 +#define DT_N_S_soc_S_timers_40001400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40001400_S_counter) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400_S_counter) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40001400_HASH NWGZgzDJgqZSuO0DPWROIlkjRWjN3_VzkmbGsEAbECw + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40001400_ORD 104 +#define DT_N_S_soc_S_timers_40001400_ORD_STR_SORTABLE 00104 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40001400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40001400_SUPPORTS_ORDS \ + 105, /* /soc/timers@40001400/counter */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40001400_EXISTS 1 +#define DT_N_INST_7_st_stm32_timers DT_N_S_soc_S_timers_40001400 +#define DT_N_NODELABEL_timers7 DT_N_S_soc_S_timers_40001400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40001400_REG_NUM 1 +#define DT_N_S_soc_S_timers_40001400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_REG_IDX_0_VAL_ADDRESS 1073746944 /* 0x40001400 */ +#define DT_N_S_soc_S_timers_40001400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40001400_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40001400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40001400_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_VAL_irq 18 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40001400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40001400_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40001400_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40001400_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40001400_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40001400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40001400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40001400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40001400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40001400_P_reg {1073746944 /* 0x40001400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40001400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_reg_IDX_0 1073746944 +#define DT_N_S_soc_S_timers_40001400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40001400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_VAL_bus 60 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_VAL_bits 32 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40001400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40001400, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40001400_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40001400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 1) +#define DT_N_S_soc_S_timers_40001400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 1) +#define DT_N_S_soc_S_timers_40001400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40001400, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40001400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_VAL_id 1413 +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40001400, resets, 0, id) +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, resets, 0, id) +#define DT_N_S_soc_S_timers_40001400_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40001400_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400, resets, 0) +#define DT_N_S_soc_S_timers_40001400_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, resets, 0) +#define DT_N_S_soc_S_timers_40001400_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40001400_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40001400_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40001400_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_status "disabled" +#define DT_N_S_soc_S_timers_40001400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40001400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40001400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40001400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40001400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40001400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400, status, 0) +#define DT_N_S_soc_S_timers_40001400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, status, 0) +#define DT_N_S_soc_S_timers_40001400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40001400_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40001400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40001400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40001400_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40001400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40001400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400, compatible, 0) +#define DT_N_S_soc_S_timers_40001400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, compatible, 0) +#define DT_N_S_soc_S_timers_40001400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40001400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_interrupts {18 /* 0x12 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40001400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_interrupts_IDX_0 18 +#define DT_N_S_soc_S_timers_40001400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40001400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40001400_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40001400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40001400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40001400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40001400/counter + * + * Node identifier: DT_N_S_soc_S_timers_40001400_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_PATH "/soc/timers@40001400/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40001400_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40001400_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40001400_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40001400) identifier: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_PARENT DT_N_S_soc_S_timers_40001400 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40001400) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40001400_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_HASH yUMrsaqgcXElOUnLnHc7vIdLGcToiUBEnmAPHwvJ0BA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_ORD 105 +#define DT_N_S_soc_S_timers_40001400_S_counter_ORD_STR_SORTABLE 00105 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_REQUIRES_ORDS \ + 104, /* /soc/timers@40001400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_EXISTS 1 +#define DT_N_INST_6_st_stm32_counter DT_N_S_soc_S_timers_40001400_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40001400_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40001400_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40001400_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40001400_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40001400_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40001400_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40001400_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40001400_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40002000 + * + * Node identifier: DT_N_S_soc_S_timers_40002000 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40002000_PATH "/soc/timers@40002000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40002000_FULL_NAME "timers@40002000" +#define DT_N_S_soc_S_timers_40002000_FULL_NAME_UNQUOTED timers@40002000 +#define DT_N_S_soc_S_timers_40002000_FULL_NAME_TOKEN timers_40002000 +#define DT_N_S_soc_S_timers_40002000_FULL_NAME_UPPER_TOKEN TIMERS_40002000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40002000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40002000_CHILD_IDX 14 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40002000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40002000_FOREACH_NODELABEL(fn) fn(timers14) +#define DT_N_S_soc_S_timers_40002000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers14, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40002000_CHILD_NUM 2 +#define DT_N_S_soc_S_timers_40002000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40002000_S_pwm) fn(DT_N_S_soc_S_timers_40002000_S_counter) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40002000_S_counter) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40002000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40002000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40002000_HASH Bwr917V_KDoq_2_yT2ELAebGrj8EfjUgvAAGsUjSK2c + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40002000_ORD 106 +#define DT_N_S_soc_S_timers_40002000_ORD_STR_SORTABLE 00106 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40002000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40002000_SUPPORTS_ORDS \ + 107, /* /soc/timers@40002000/counter */ \ + 108, /* /soc/timers@40002000/pwm */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40002000_EXISTS 1 +#define DT_N_INST_2_st_stm32_timers DT_N_S_soc_S_timers_40002000 +#define DT_N_NODELABEL_timers14 DT_N_S_soc_S_timers_40002000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40002000_REG_NUM 1 +#define DT_N_S_soc_S_timers_40002000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_REG_IDX_0_VAL_ADDRESS 1073750016 /* 0x40002000 */ +#define DT_N_S_soc_S_timers_40002000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40002000_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40002000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40002000_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_VAL_irq 19 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40002000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40002000_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40002000_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40002000_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40002000_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40002000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40002000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40002000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40002000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40002000_P_reg {1073750016 /* 0x40002000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40002000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_reg_IDX_0 1073750016 +#define DT_N_S_soc_S_timers_40002000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40002000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_VAL_bits 32768 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40002000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40002000, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40002000_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40002000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 1) +#define DT_N_S_soc_S_timers_40002000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 1) +#define DT_N_S_soc_S_timers_40002000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40002000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40002000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_VAL_id 1551 +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40002000, resets, 0, id) +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, resets, 0, id) +#define DT_N_S_soc_S_timers_40002000_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40002000_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000, resets, 0) +#define DT_N_S_soc_S_timers_40002000_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, resets, 0) +#define DT_N_S_soc_S_timers_40002000_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40002000_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40002000_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40002000_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_status "disabled" +#define DT_N_S_soc_S_timers_40002000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40002000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40002000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40002000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40002000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40002000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000, status, 0) +#define DT_N_S_soc_S_timers_40002000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, status, 0) +#define DT_N_S_soc_S_timers_40002000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40002000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40002000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40002000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40002000_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40002000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40002000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000, compatible, 0) +#define DT_N_S_soc_S_timers_40002000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, compatible, 0) +#define DT_N_S_soc_S_timers_40002000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40002000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_interrupts {19 /* 0x13 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40002000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_interrupts_IDX_0 19 +#define DT_N_S_soc_S_timers_40002000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40002000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40002000_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40002000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40002000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40002000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40002000/counter + * + * Node identifier: DT_N_S_soc_S_timers_40002000_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_PATH "/soc/timers@40002000/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40002000_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40002000_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40002000_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40002000) identifier: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_PARENT DT_N_S_soc_S_timers_40002000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40002000_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_HASH zJvOaxLLjATz51CJNhv5ls0CmMiTKSdYQecKTBIOLLU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_ORD 107 +#define DT_N_S_soc_S_timers_40002000_S_counter_ORD_STR_SORTABLE 00107 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_REQUIRES_ORDS \ + 106, /* /soc/timers@40002000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_EXISTS 1 +#define DT_N_INST_2_st_stm32_counter DT_N_S_soc_S_timers_40002000_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40002000_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40002000_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40002000_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40002000_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40002000/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40002000_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_PATH "/soc/timers@40002000/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40002000_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40002000_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40002000_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40002000) identifier: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_PARENT DT_N_S_soc_S_timers_40002000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_HASH c6um8v5jI9Kwk4onLqCxe9XQjuDnMLyybl6AyMLjikc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_ORD 108 +#define DT_N_S_soc_S_timers_40002000_S_pwm_ORD_STR_SORTABLE 00108 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_REQUIRES_ORDS \ + 106, /* /soc/timers@40002000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_EXISTS 1 +#define DT_N_INST_2_st_stm32_pwm DT_N_S_soc_S_timers_40002000_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40002000_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40002000_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40002000_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40002000_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40002000_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40002000_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40002000_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40002000_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40012c00 + * + * Node identifier: DT_N_S_soc_S_timers_40012c00 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40012c00_PATH "/soc/timers@40012c00" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40012c00_FULL_NAME "timers@40012c00" +#define DT_N_S_soc_S_timers_40012c00_FULL_NAME_UNQUOTED timers@40012c00 +#define DT_N_S_soc_S_timers_40012c00_FULL_NAME_TOKEN timers_40012c00 +#define DT_N_S_soc_S_timers_40012c00_FULL_NAME_UPPER_TOKEN TIMERS_40012C00 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40012c00_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40012c00_CHILD_IDX 12 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40012c00_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40012c00_FOREACH_NODELABEL(fn) fn(timers1) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40012c00_CHILD_NUM 3 +#define DT_N_S_soc_S_timers_40012c00_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40012c00_S_pwm) fn(DT_N_S_soc_S_timers_40012c00_S_counter) fn(DT_N_S_soc_S_timers_40012c00_S_qdec) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40012c00_S_counter) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40012c00_S_qdec) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40012c00_S_counter, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40012c00_S_qdec, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40012c00_HASH 3LegaBe_XYAmus4r7JdPqj5bScAsVFzbsAzhohL9Bqc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40012c00_ORD 109 +#define DT_N_S_soc_S_timers_40012c00_ORD_STR_SORTABLE 00109 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40012c00_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40012c00_SUPPORTS_ORDS \ + 110, /* /soc/timers@40012c00/counter */ \ + 111, /* /soc/timers@40012c00/pwm */ \ + 112, /* /soc/timers@40012c00/qdec */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40012c00_EXISTS 1 +#define DT_N_INST_0_st_stm32_timers DT_N_S_soc_S_timers_40012c00 +#define DT_N_NODELABEL_timers1 DT_N_S_soc_S_timers_40012c00 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40012c00_REG_NUM 1 +#define DT_N_S_soc_S_timers_40012c00_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_REG_IDX_0_VAL_ADDRESS 1073818624 /* 0x40012c00 */ +#define DT_N_S_soc_S_timers_40012c00_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40012c00_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40012c00_IRQ_NUM 2 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_VAL_irq 13 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_VAL_irq 14 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40012c00_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_brk_up_trg_com_VAL_irq DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_brk_up_trg_com_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_brk_up_trg_com_VAL_priority DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_brk_up_trg_com_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_brk_up_trg_com_CONTROLLER DT_N_S_soc_S_timers_40012c00_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_cc_VAL_irq DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_VAL_irq +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_cc_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_cc_VAL_priority DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_VAL_priority +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_cc_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_IRQ_NAME_cc_CONTROLLER DT_N_S_soc_S_timers_40012c00_IRQ_IDX_1_CONTROLLER +#define DT_N_S_soc_S_timers_40012c00_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40012c00_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40012c00_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40012c00_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40012c00_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40012c00_P_reg {1073818624 /* 0x40012c00 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40012c00_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_reg_IDX_0 1073818624 +#define DT_N_S_soc_S_timers_40012c00_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40012c00_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_VAL_bits 2048 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40012c00, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_VAL_bits 1441876 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40012c00, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 1) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 1) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40012c00, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40012c00_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_VAL_id 1547 +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40012c00, resets, 0, id) +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, resets, 0, id) +#define DT_N_S_soc_S_timers_40012c00_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40012c00_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00, resets, 0) +#define DT_N_S_soc_S_timers_40012c00_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, resets, 0) +#define DT_N_S_soc_S_timers_40012c00_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40012c00_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40012c00_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_status "disabled" +#define DT_N_S_soc_S_timers_40012c00_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40012c00_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40012c00_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40012c00_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40012c00_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40012c00_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00, status, 0) +#define DT_N_S_soc_S_timers_40012c00_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, status, 0) +#define DT_N_S_soc_S_timers_40012c00_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40012c00_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40012c00_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40012c00_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40012c00_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40012c00_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts {13 /* 0xd */, 0 /* 0x0 */, 14 /* 0xe */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_0 13 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_2 14 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_IDX_3 0 +#define DT_N_S_soc_S_timers_40012c00_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names {"brk_up_trg_com", "cc"} +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_0 "brk_up_trg_com" +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_0_STRING_UNQUOTED brk_up_trg_com +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_0_STRING_TOKEN brk_up_trg_com +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN BRK_UP_TRG_COM +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_1 "cc" +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_1_STRING_UNQUOTED cc +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_1_STRING_TOKEN cc +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_IDX_1_STRING_UPPER_TOKEN CC +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 0) \ + fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 1) +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 1) +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40012c00, interrupt_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_LEN 2 +#define DT_N_S_soc_S_timers_40012c00_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40012c00_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40012c00_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40012c00_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40012c00/counter + * + * Node identifier: DT_N_S_soc_S_timers_40012c00_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_PATH "/soc/timers@40012c00/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40012c00_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40012c00_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40012c00_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40012c00) identifier: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_PARENT DT_N_S_soc_S_timers_40012c00 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40012c00) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_HASH kIF7VDJJsNJuGIIuZ11LPstYbZBQN94NsUPmNZqCzHg + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_ORD 110 +#define DT_N_S_soc_S_timers_40012c00_S_counter_ORD_STR_SORTABLE 00110 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_REQUIRES_ORDS \ + 109, /* /soc/timers@40012c00 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_EXISTS 1 +#define DT_N_INST_0_st_stm32_counter DT_N_S_soc_S_timers_40012c00_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40012c00_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40012c00_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40012c00_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40012c00_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40012c00/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40012c00_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_PATH "/soc/timers@40012c00/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40012c00) identifier: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_PARENT DT_N_S_soc_S_timers_40012c00 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40012c00) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_HASH g97nbdWpfWs0szJYsIofhjyur31j3pJteaFY2J9NhwY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_ORD 111 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_ORD_STR_SORTABLE 00111 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_REQUIRES_ORDS \ + 109, /* /soc/timers@40012c00 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_EXISTS 1 +#define DT_N_INST_0_st_stm32_pwm DT_N_S_soc_S_timers_40012c00_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40012c00_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40012c00_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40012c00_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40012c00/qdec + * + * Node identifier: DT_N_S_soc_S_timers_40012c00_S_qdec + * + * Binding (compatible = st,stm32-qdec): + * $ZEPHYR_BASE\dts\bindings\sensor\st,stm32-qdec.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_PATH "/soc/timers@40012c00/qdec" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FULL_NAME "qdec" +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FULL_NAME_UNQUOTED qdec +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FULL_NAME_TOKEN qdec +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FULL_NAME_UPPER_TOKEN QDEC + +/* Node parent (/soc/timers@40012c00) identifier: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_PARENT DT_N_S_soc_S_timers_40012c00 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40012c00) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_HASH qMdLUemeDTQeykyd3YiCtvWbzpMdNSnqnGUKo4PFw_0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_ORD 112 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_ORD_STR_SORTABLE 00112 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_REQUIRES_ORDS \ + 109, /* /soc/timers@40012c00 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_EXISTS 1 +#define DT_N_INST_0_st_stm32_qdec DT_N_S_soc_S_timers_40012c00_S_qdec + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_REG_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_COMPAT_MATCHES_st_stm32_qdec 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40012c00_S_qdec_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_COMPAT_MODEL_IDX_0 "stm32-qdec" +#define DT_N_S_soc_S_timers_40012c00_S_qdec_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_encoder_mode 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_encoder_mode_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_encoder_mode_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_encoder_mode_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_encoder_mode_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_encoder_mode_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_polarity_inverted 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_polarity_inverted_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_filter_level 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_filter_level_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_filter_level_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_filter_level_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_filter_level_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_st_input_filter_level_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status "disabled" +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, status, 0) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible {"st,stm32-qdec"} +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_IDX_0 "st,stm32-qdec" +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-qdec +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_IDX_0_STRING_TOKEN st_stm32_qdec +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_QDEC +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, compatible, 0) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40012c00_S_qdec_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014000 + * + * Node identifier: DT_N_S_soc_S_timers_40014000 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014000_PATH "/soc/timers@40014000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014000_FULL_NAME "timers@40014000" +#define DT_N_S_soc_S_timers_40014000_FULL_NAME_UNQUOTED timers@40014000 +#define DT_N_S_soc_S_timers_40014000_FULL_NAME_TOKEN timers_40014000 +#define DT_N_S_soc_S_timers_40014000_FULL_NAME_UPPER_TOKEN TIMERS_40014000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40014000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014000_CHILD_IDX 29 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40014000_FOREACH_NODELABEL(fn) fn(timers15) +#define DT_N_S_soc_S_timers_40014000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers15, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014000_CHILD_NUM 2 +#define DT_N_S_soc_S_timers_40014000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40014000_S_pwm) fn(DT_N_S_soc_S_timers_40014000_S_counter) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014000_S_counter) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014000_HASH lq5p3vgPpp0Pc1e97jH3shzpysrGZocBMMy1grfenUs + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014000_ORD 113 +#define DT_N_S_soc_S_timers_40014000_ORD_STR_SORTABLE 00113 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014000_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014000_SUPPORTS_ORDS \ + 114, /* /soc/timers@40014000/counter */ \ + 115, /* /soc/timers@40014000/pwm */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014000_EXISTS 1 +#define DT_N_INST_8_st_stm32_timers DT_N_S_soc_S_timers_40014000 +#define DT_N_NODELABEL_timers15 DT_N_S_soc_S_timers_40014000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014000_REG_NUM 1 +#define DT_N_S_soc_S_timers_40014000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_REG_IDX_0_VAL_ADDRESS 1073823744 /* 0x40014000 */ +#define DT_N_S_soc_S_timers_40014000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40014000_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014000_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_VAL_irq 20 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40014000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40014000_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40014000_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40014000_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40014000_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40014000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40014000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014000_P_reg {1073823744 /* 0x40014000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40014000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_reg_IDX_0 1073823744 +#define DT_N_S_soc_S_timers_40014000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40014000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_VAL_bits 65536 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014000, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_VAL_bits 1572948 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014000, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40014000_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40014000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 1) +#define DT_N_S_soc_S_timers_40014000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 1) +#define DT_N_S_soc_S_timers_40014000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014000, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40014000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_VAL_id 1552 +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014000, resets, 0, id) +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, resets, 0, id) +#define DT_N_S_soc_S_timers_40014000_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40014000_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000, resets, 0) +#define DT_N_S_soc_S_timers_40014000_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, resets, 0) +#define DT_N_S_soc_S_timers_40014000_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40014000_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40014000_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40014000_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_status "disabled" +#define DT_N_S_soc_S_timers_40014000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000, status, 0) +#define DT_N_S_soc_S_timers_40014000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, status, 0) +#define DT_N_S_soc_S_timers_40014000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014000_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40014000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40014000_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40014000_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40014000_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40014000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000, compatible, 0) +#define DT_N_S_soc_S_timers_40014000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, compatible, 0) +#define DT_N_S_soc_S_timers_40014000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_interrupts {20 /* 0x14 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40014000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_interrupts_IDX_0 20 +#define DT_N_S_soc_S_timers_40014000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40014000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40014000_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014000/counter + * + * Node identifier: DT_N_S_soc_S_timers_40014000_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_PATH "/soc/timers@40014000/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40014000_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40014000_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40014000_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40014000) identifier: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_PARENT DT_N_S_soc_S_timers_40014000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40014000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014000_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_HASH HTxmpxrEMdGrjqKzwYEQ3Db8lHf9V4eSc5b5awosPW0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_ORD 114 +#define DT_N_S_soc_S_timers_40014000_S_counter_ORD_STR_SORTABLE 00114 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_REQUIRES_ORDS \ + 113, /* /soc/timers@40014000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_EXISTS 1 +#define DT_N_INST_7_st_stm32_counter DT_N_S_soc_S_timers_40014000_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014000_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014000_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40014000_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014000_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014000/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40014000_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_PATH "/soc/timers@40014000/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40014000_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40014000_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40014000_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40014000) identifier: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_PARENT DT_N_S_soc_S_timers_40014000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40014000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_HASH kSLo0yu1rvkKjWd1KPNaOZTkLqT1fXRh8ItGZQcov88 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_ORD 115 +#define DT_N_S_soc_S_timers_40014000_S_pwm_ORD_STR_SORTABLE 00115 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_REQUIRES_ORDS \ + 113, /* /soc/timers@40014000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_EXISTS 1 +#define DT_N_INST_6_st_stm32_pwm DT_N_S_soc_S_timers_40014000_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014000_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014000_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40014000_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014000_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014000_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014000_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014000_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014000_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014400 + * + * Node identifier: DT_N_S_soc_S_timers_40014400 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014400_PATH "/soc/timers@40014400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014400_FULL_NAME "timers@40014400" +#define DT_N_S_soc_S_timers_40014400_FULL_NAME_UNQUOTED timers@40014400 +#define DT_N_S_soc_S_timers_40014400_FULL_NAME_TOKEN timers_40014400 +#define DT_N_S_soc_S_timers_40014400_FULL_NAME_UPPER_TOKEN TIMERS_40014400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40014400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014400_CHILD_IDX 15 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40014400_FOREACH_NODELABEL(fn) fn(timers16) +#define DT_N_S_soc_S_timers_40014400_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers16, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014400_CHILD_NUM 2 +#define DT_N_S_soc_S_timers_40014400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40014400_S_pwm) fn(DT_N_S_soc_S_timers_40014400_S_counter) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014400_S_counter) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014400_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014400_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014400_HASH LhbzUUvofdpe9RJBdWKw1tw8MqV4XObGHJe29iNM0Lc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014400_ORD 116 +#define DT_N_S_soc_S_timers_40014400_ORD_STR_SORTABLE 00116 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014400_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014400_SUPPORTS_ORDS \ + 117, /* /soc/timers@40014400/counter */ \ + 118, /* /soc/timers@40014400/pwm */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014400_EXISTS 1 +#define DT_N_INST_3_st_stm32_timers DT_N_S_soc_S_timers_40014400 +#define DT_N_NODELABEL_timers16 DT_N_S_soc_S_timers_40014400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014400_REG_NUM 1 +#define DT_N_S_soc_S_timers_40014400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_REG_IDX_0_VAL_ADDRESS 1073824768 /* 0x40014400 */ +#define DT_N_S_soc_S_timers_40014400_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40014400_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014400_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_VAL_irq 21 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40014400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40014400_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40014400_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40014400_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40014400_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40014400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40014400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014400_P_reg {1073824768 /* 0x40014400 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40014400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_reg_IDX_0 1073824768 +#define DT_N_S_soc_S_timers_40014400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40014400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_VAL_bits 131072 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014400, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014400, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40014400_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40014400_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 1) +#define DT_N_S_soc_S_timers_40014400_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 1) +#define DT_N_S_soc_S_timers_40014400_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014400, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40014400_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_VAL_id 1553 +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014400, resets, 0, id) +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, resets, 0, id) +#define DT_N_S_soc_S_timers_40014400_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40014400_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400, resets, 0) +#define DT_N_S_soc_S_timers_40014400_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, resets, 0) +#define DT_N_S_soc_S_timers_40014400_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40014400_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40014400_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40014400_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_status "disabled" +#define DT_N_S_soc_S_timers_40014400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400, status, 0) +#define DT_N_S_soc_S_timers_40014400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, status, 0) +#define DT_N_S_soc_S_timers_40014400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014400_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40014400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40014400_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40014400_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40014400_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40014400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400, compatible, 0) +#define DT_N_S_soc_S_timers_40014400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, compatible, 0) +#define DT_N_S_soc_S_timers_40014400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_interrupts {21 /* 0x15 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40014400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_interrupts_IDX_0 21 +#define DT_N_S_soc_S_timers_40014400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40014400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40014400_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014400/counter + * + * Node identifier: DT_N_S_soc_S_timers_40014400_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_PATH "/soc/timers@40014400/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40014400_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40014400_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40014400_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40014400) identifier: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_PARENT DT_N_S_soc_S_timers_40014400 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40014400) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014400_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_HASH p37X7wit0iPn8X9v8y4Gj2t07AN6oeaaeHeLb6OojSE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_ORD 117 +#define DT_N_S_soc_S_timers_40014400_S_counter_ORD_STR_SORTABLE 00117 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_REQUIRES_ORDS \ + 116, /* /soc/timers@40014400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_EXISTS 1 +#define DT_N_INST_3_st_stm32_counter DT_N_S_soc_S_timers_40014400_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014400_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014400_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40014400_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014400_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014400/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40014400_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_PATH "/soc/timers@40014400/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40014400_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40014400_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40014400_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40014400) identifier: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_PARENT DT_N_S_soc_S_timers_40014400 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40014400) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_HASH qSncIfFrKmBeFCfySGntGi5dvRM62NXtfq0Z60Th_Tw + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_ORD 118 +#define DT_N_S_soc_S_timers_40014400_S_pwm_ORD_STR_SORTABLE 00118 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_REQUIRES_ORDS \ + 116, /* /soc/timers@40014400 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_EXISTS 1 +#define DT_N_INST_3_st_stm32_pwm DT_N_S_soc_S_timers_40014400_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014400_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014400_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40014400_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014400_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014400_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014400_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014400_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014400_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014800 + * + * Node identifier: DT_N_S_soc_S_timers_40014800 + * + * Binding (compatible = st,stm32-timers): + * $ZEPHYR_BASE\dts\bindings\timer\st,stm32-timers.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014800_PATH "/soc/timers@40014800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014800_FULL_NAME "timers@40014800" +#define DT_N_S_soc_S_timers_40014800_FULL_NAME_UNQUOTED timers@40014800 +#define DT_N_S_soc_S_timers_40014800_FULL_NAME_TOKEN timers_40014800 +#define DT_N_S_soc_S_timers_40014800_FULL_NAME_UPPER_TOKEN TIMERS_40014800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_timers_40014800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014800_CHILD_IDX 16 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_timers_40014800_FOREACH_NODELABEL(fn) fn(timers17) +#define DT_N_S_soc_S_timers_40014800_FOREACH_NODELABEL_VARGS(fn, ...) fn(timers17, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014800_CHILD_NUM 2 +#define DT_N_S_soc_S_timers_40014800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_timers_40014800_S_pwm) fn(DT_N_S_soc_S_timers_40014800_S_counter) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800_S_pwm) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014800_S_counter) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014800_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800_S_pwm, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_timers_40014800_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014800_HASH HFfK32JNDgTzZmhucfswXs63t4LSBAvBFi__WAnpexw + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014800_ORD 119 +#define DT_N_S_soc_S_timers_40014800_ORD_STR_SORTABLE 00119 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014800_REQUIRES_ORDS \ + 3, /* /soc */ \ + 4, /* /soc/interrupt-controller@e000e100 */ \ + 8, /* /soc/rcc@40021000 */ \ + 49, /* /soc/rcc@40021000/reset-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014800_SUPPORTS_ORDS \ + 120, /* /soc/timers@40014800/counter */ \ + 121, /* /soc/timers@40014800/pwm */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014800_EXISTS 1 +#define DT_N_INST_4_st_stm32_timers DT_N_S_soc_S_timers_40014800 +#define DT_N_NODELABEL_timers17 DT_N_S_soc_S_timers_40014800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014800_REG_NUM 1 +#define DT_N_S_soc_S_timers_40014800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_REG_IDX_0_VAL_ADDRESS 1073825792 /* 0x40014800 */ +#define DT_N_S_soc_S_timers_40014800_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_timers_40014800_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014800_IRQ_NUM 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_VAL_irq 22 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_e000e100 +#define DT_N_S_soc_S_timers_40014800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_NAME_global_VAL_irq DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_VAL_irq +#define DT_N_S_soc_S_timers_40014800_IRQ_NAME_global_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_NAME_global_VAL_priority DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_VAL_priority +#define DT_N_S_soc_S_timers_40014800_IRQ_NAME_global_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_IRQ_NAME_global_CONTROLLER DT_N_S_soc_S_timers_40014800_IRQ_IDX_0_CONTROLLER +#define DT_N_S_soc_S_timers_40014800_COMPAT_MATCHES_st_stm32_timers 1 +#define DT_N_S_soc_S_timers_40014800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_COMPAT_MODEL_IDX_0 "stm32-timers" +#define DT_N_S_soc_S_timers_40014800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014800_P_reg {1073825792 /* 0x40014800 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_timers_40014800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_reg_IDX_0 1073825792 +#define DT_N_S_soc_S_timers_40014800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_timers_40014800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_VAL_bus 64 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_VAL_bits 262144 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014800, clocks, 0, bus) \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, clocks, 0, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 0, bits) +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_PH DT_N_S_soc_S_rcc_40021000 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_VAL_bus 9 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_VAL_bus_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_VAL_bits 255 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_VAL_bits_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014800, clocks, 1, bus) \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, clocks, 1, bus) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 1, bits) +#define DT_N_S_soc_S_timers_40014800_P_clocks_IDX_1_NUM_CELLS 2 +#define DT_N_S_soc_S_timers_40014800_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800, clocks, 0) \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 1) +#define DT_N_S_soc_S_timers_40014800_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, clocks, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 1) +#define DT_N_S_soc_S_timers_40014800_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800, clocks, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800, clocks, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_timers_40014800, clocks, 1, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_clocks_LEN 2 +#define DT_N_S_soc_S_timers_40014800_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_PH DT_N_S_soc_S_rcc_40021000_S_reset_controller +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_VAL_id 1554 +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_VAL_id_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_timers_40014800, resets, 0, id) +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, resets, 0, id) +#define DT_N_S_soc_S_timers_40014800_P_resets_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_timers_40014800_P_resets_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800, resets, 0) +#define DT_N_S_soc_S_timers_40014800_P_resets_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, resets, 0) +#define DT_N_S_soc_S_timers_40014800_P_resets_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_resets_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800, resets, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_resets_LEN 1 +#define DT_N_S_soc_S_timers_40014800_P_resets_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_st_prescaler 0 +#define DT_N_S_soc_S_timers_40014800_P_st_prescaler_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_st_countermode 0 +#define DT_N_S_soc_S_timers_40014800_P_st_countermode_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_status "disabled" +#define DT_N_S_soc_S_timers_40014800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800, status, 0) +#define DT_N_S_soc_S_timers_40014800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, status, 0) +#define DT_N_S_soc_S_timers_40014800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014800_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_compatible {"st,stm32-timers"} +#define DT_N_S_soc_S_timers_40014800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_compatible_IDX_0 "st,stm32-timers" +#define DT_N_S_soc_S_timers_40014800_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-timers +#define DT_N_S_soc_S_timers_40014800_P_compatible_IDX_0_STRING_TOKEN st_stm32_timers +#define DT_N_S_soc_S_timers_40014800_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_TIMERS +#define DT_N_S_soc_S_timers_40014800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800, compatible, 0) +#define DT_N_S_soc_S_timers_40014800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, compatible, 0) +#define DT_N_S_soc_S_timers_40014800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_interrupts {22 /* 0x16 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_timers_40014800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_interrupts_IDX_0 22 +#define DT_N_S_soc_S_timers_40014800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_timers_40014800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names {"global"} +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_IDX_0 "global" +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_IDX_0_STRING_UNQUOTED global +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_IDX_0_STRING_TOKEN global +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_IDX_0_STRING_UPPER_TOKEN GLOBAL +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800, interrupt_names, 0) +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800, interrupt_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_LEN 1 +#define DT_N_S_soc_S_timers_40014800_P_interrupt_names_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014800/counter + * + * Node identifier: DT_N_S_soc_S_timers_40014800_S_counter + * + * Binding (compatible = st,stm32-counter): + * $ZEPHYR_BASE\dts\bindings\counter\st,stm32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_PATH "/soc/timers@40014800/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_timers_40014800_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_timers_40014800_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_timers_40014800_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/timers@40014800) identifier: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_PARENT DT_N_S_soc_S_timers_40014800 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40014800) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014800_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_HASH S6y2pTOmJHjQSdFjECAm7CIldgBp6UkB1xRx45LXe9E + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_ORD 120 +#define DT_N_S_soc_S_timers_40014800_S_counter_ORD_STR_SORTABLE 00120 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_REQUIRES_ORDS \ + 119, /* /soc/timers@40014800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_EXISTS 1 +#define DT_N_INST_4_st_stm32_counter DT_N_S_soc_S_timers_40014800_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014800_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_COMPAT_MATCHES_st_stm32_counter 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014800_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_COMPAT_MODEL_IDX_0 "stm32-counter" +#define DT_N_S_soc_S_timers_40014800_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status "disabled" +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800_S_counter, status, 0) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible {"st,stm32-counter"} +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_IDX_0 "st,stm32-counter" +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-counter +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_IDX_0_STRING_TOKEN st_stm32_counter +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_COUNTER +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800_S_counter, compatible, 0) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014800_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/timers@40014800/pwm + * + * Node identifier: DT_N_S_soc_S_timers_40014800_S_pwm + * + * Binding (compatible = st,stm32-pwm): + * $ZEPHYR_BASE\dts\bindings\pwm\st,stm32-pwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_PATH "/soc/timers@40014800/pwm" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_FULL_NAME "pwm" +#define DT_N_S_soc_S_timers_40014800_S_pwm_FULL_NAME_UNQUOTED pwm +#define DT_N_S_soc_S_timers_40014800_S_pwm_FULL_NAME_TOKEN pwm +#define DT_N_S_soc_S_timers_40014800_S_pwm_FULL_NAME_UPPER_TOKEN PWM + +/* Node parent (/soc/timers@40014800) identifier: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_PARENT DT_N_S_soc_S_timers_40014800 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_NODELABEL_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_timers_40014800) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_CHILD_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_HASH pP_vpmBmH6Uc99dxi1iL0vcGxl00Y6rTzAdbQLvVodY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_ORD 121 +#define DT_N_S_soc_S_timers_40014800_S_pwm_ORD_STR_SORTABLE 00121 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_REQUIRES_ORDS \ + 119, /* /soc/timers@40014800 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_EXISTS 1 +#define DT_N_INST_4_st_stm32_pwm DT_N_S_soc_S_timers_40014800_S_pwm + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_REG_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_RANGES_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_timers_40014800_S_pwm_IRQ_NUM 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_IRQ_LEVEL 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_COMPAT_MATCHES_st_stm32_pwm 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_COMPAT_VENDOR_IDX_0 "STMicroelectronics" +#define DT_N_S_soc_S_timers_40014800_S_pwm_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_COMPAT_MODEL_IDX_0 "stm32-pwm" +#define DT_N_S_soc_S_timers_40014800_S_pwm_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_four_channel_capture_support 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_four_channel_capture_support_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status "disabled" +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800_S_pwm, status, 0) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800_S_pwm, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_LEN 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_status_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible {"st,stm32-pwm"} +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_IDX_0 "st,stm32-pwm" +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_IDX_0_STRING_UNQUOTED st,stm32-pwm +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_IDX_0_STRING_TOKEN st_stm32_pwm +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_IDX_0_STRING_UPPER_TOKEN ST_STM32_PWM +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_timers_40014800_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_timers_40014800_S_pwm, compatible, 0) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_timers_40014800_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_timers_40014800_S_pwm, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_LEN 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_wakeup_source 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_timers_40014800_S_pwm_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Chosen nodes + */ +#define DT_CHOSEN_zephyr_flash_controller DT_N_S_soc_S_flash_controller_40022000 +#define DT_CHOSEN_zephyr_flash_controller_EXISTS 1 +#define DT_CHOSEN_zephyr_console DT_N_S_soc_S_serial_40013800 +#define DT_CHOSEN_zephyr_console_EXISTS 1 +#define DT_CHOSEN_zephyr_shell_uart DT_N_S_soc_S_serial_40013800 +#define DT_CHOSEN_zephyr_shell_uart_EXISTS 1 +#define DT_CHOSEN_zephyr_uart_mcumgr DT_N_S_soc_S_serial_40013800 +#define DT_CHOSEN_zephyr_uart_mcumgr_EXISTS 1 +#define DT_CHOSEN_zephyr_sram DT_N_S_memory_20000000 +#define DT_CHOSEN_zephyr_sram_EXISTS 1 +#define DT_CHOSEN_zephyr_flash DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000 +#define DT_CHOSEN_zephyr_flash_EXISTS 1 +#define DT_CHOSEN_zephyr_code_partition DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000 +#define DT_CHOSEN_zephyr_code_partition_EXISTS 1 +#define DT_CHOSEN_zephyr_canbus DT_N_S_soc_S_can_40006800 +#define DT_CHOSEN_zephyr_canbus_EXISTS 1 + +/* Macros for iterating over all nodes and enabled nodes */ +#define DT_FOREACH_HELPER(fn) fn(DT_N) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_timer_e000e010) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000) fn(DT_N_S_soc_S_rcc_40021000) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) fn(DT_N_S_soc_S_interrupt_controller_40021800) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12) fn(DT_N_S_soc_S_rtc_40002800) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs) fn(DT_N_S_soc_S_watchdog_40003000) fn(DT_N_S_soc_S_watchdog_40002c00) fn(DT_N_S_soc_S_serial_40013800) fn(DT_N_S_soc_S_serial_40004400) fn(DT_N_S_soc_S_timers_40007c00) fn(DT_N_S_soc_S_timers_40012c00) fn(DT_N_S_soc_S_timers_40012c00_S_pwm) fn(DT_N_S_soc_S_timers_40012c00_S_counter) fn(DT_N_S_soc_S_timers_40012c00_S_qdec) fn(DT_N_S_soc_S_timers_40000400) fn(DT_N_S_soc_S_timers_40000400_S_pwm) fn(DT_N_S_soc_S_timers_40000400_S_counter) fn(DT_N_S_soc_S_timers_40000400_S_qdec) fn(DT_N_S_soc_S_timers_40002000) fn(DT_N_S_soc_S_timers_40002000_S_pwm) fn(DT_N_S_soc_S_timers_40002000_S_counter) fn(DT_N_S_soc_S_timers_40014400) fn(DT_N_S_soc_S_timers_40014400_S_pwm) fn(DT_N_S_soc_S_timers_40014400_S_counter) fn(DT_N_S_soc_S_timers_40014800) fn(DT_N_S_soc_S_timers_40014800_S_pwm) fn(DT_N_S_soc_S_timers_40014800_S_counter) fn(DT_N_S_soc_S_i2c_40005400) fn(DT_N_S_soc_S_i2c_40005800) fn(DT_N_S_soc_S_spi_40013000) fn(DT_N_S_soc_S_spi_40003800) fn(DT_N_S_soc_S_adc_40012400) fn(DT_N_S_soc_S_dma_40020000) fn(DT_N_S_soc_S_dmamux_40020800) fn(DT_N_S_soc_S_power_40007000) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3) fn(DT_N_S_soc_S_serial_40008000) fn(DT_N_S_soc_S_timers_40000000) fn(DT_N_S_soc_S_timers_40000000_S_pwm) fn(DT_N_S_soc_S_timers_40000000_S_qdec) fn(DT_N_S_soc_S_timers_40001000) fn(DT_N_S_soc_S_timers_40001000_S_counter) fn(DT_N_S_soc_S_timers_40001400) fn(DT_N_S_soc_S_timers_40001400_S_counter) fn(DT_N_S_soc_S_timers_40014000) fn(DT_N_S_soc_S_timers_40014000_S_pwm) fn(DT_N_S_soc_S_timers_40014000_S_counter) fn(DT_N_S_soc_S_dac_40007400) fn(DT_N_S_soc_S_serial_40004800) fn(DT_N_S_soc_S_serial_40004c00) fn(DT_N_S_soc_S_ucpd_4000a000) fn(DT_N_S_soc_S_ucpd_4000a400) fn(DT_N_S_soc_S_can_40006400) fn(DT_N_S_soc_S_can_40006800) fn(DT_N_S_soc_S_serial_40005000) fn(DT_N_S_soc_S_serial_40013c00) fn(DT_N_S_soc_S_serial_40008400) fn(DT_N_S_soc_S_timers_40000800) fn(DT_N_S_soc_S_timers_40000800_S_pwm) fn(DT_N_S_soc_S_timers_40000800_S_qdec) fn(DT_N_S_soc_S_i2c_40008800) fn(DT_N_S_soc_S_spi_40003c00) fn(DT_N_S_soc_S_dma_40020400) fn(DT_N_S_soc_S_usb_40005c00) fn(DT_N_S_cpus) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus_S_power_states_S_state0) fn(DT_N_S_cpus_S_power_states_S_state1) fn(DT_N_S_memory_20000000) fn(DT_N_S_clocks) fn(DT_N_S_clocks_S_clk_hse) fn(DT_N_S_clocks_S_clk_hsi) fn(DT_N_S_clocks_S_clk_lse) fn(DT_N_S_clocks_S_clk_lsi) fn(DT_N_S_clocks_S_pll) fn(DT_N_S_clocks_S_clk_hsi48) fn(DT_N_S_mcos) fn(DT_N_S_mcos_S_mco1) fn(DT_N_S_mcos_S_mco2) fn(DT_N_S_dietemp) fn(DT_N_S_vref) fn(DT_N_S_vbat) fn(DT_N_S_smbus1) fn(DT_N_S_smbus2) fn(DT_N_S_usbphy) fn(DT_N_S_smbus3) fn(DT_N_S_leds) fn(DT_N_S_leds_S_led_0) fn(DT_N_S_gpio_keys) fn(DT_N_S_gpio_keys_S_pfet1) fn(DT_N_S_gpio_keys_S_pfet2) +#define DT_FOREACH_OKAY_HELPER(fn) fn(DT_N) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_soc_S_interrupt_controller_e000e100) fn(DT_N_S_soc_S_timer_e000e010) fn(DT_N_S_soc_S_flash_controller_40022000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000) fn(DT_N_S_soc_S_rcc_40021000) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) fn(DT_N_S_soc_S_interrupt_controller_40021800) fn(DT_N_S_soc_S_pin_controller_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12) fn(DT_N_S_soc_S_rtc_40002800) fn(DT_N_S_soc_S_watchdog_40003000) fn(DT_N_S_soc_S_serial_40013800) fn(DT_N_S_soc_S_timers_40007c00) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3) fn(DT_N_S_soc_S_can_40006800) fn(DT_N_S_soc_S_usb_40005c00) fn(DT_N_S_cpus) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus_S_power_states_S_state0) fn(DT_N_S_cpus_S_power_states_S_state1) fn(DT_N_S_memory_20000000) fn(DT_N_S_clocks) fn(DT_N_S_clocks_S_clk_hsi) fn(DT_N_S_clocks_S_clk_lsi) fn(DT_N_S_clocks_S_pll) fn(DT_N_S_clocks_S_clk_hsi48) fn(DT_N_S_mcos) fn(DT_N_S_dietemp) fn(DT_N_S_vref) fn(DT_N_S_vbat) fn(DT_N_S_usbphy) fn(DT_N_S_leds) fn(DT_N_S_leds_S_led_0) fn(DT_N_S_gpio_keys) fn(DT_N_S_gpio_keys_S_pfet1) fn(DT_N_S_gpio_keys_S_pfet2) +#define DT_FOREACH_VARGS_HELPER(fn, ...) fn(DT_N, __VA_ARGS__) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, __VA_ARGS__) fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40002800_S_backup_regs, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40002c00, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40004400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40012c00_S_qdec, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000400_S_qdec, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40002000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40002000_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40002000_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014400_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014400_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014800, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014800_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014800_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40005400, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40005800, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40013000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40003800, __VA_ARGS__) fn(DT_N_S_soc_S_adc_40012400, __VA_ARGS__) fn(DT_N_S_soc_S_dma_40020000, __VA_ARGS__) fn(DT_N_S_soc_S_dmamux_40020800, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40008000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000000_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000000_S_qdec, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40001000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40001000_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40001400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40001400_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014000, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014000_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40014000_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_dac_40007400, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40004800, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40004c00, __VA_ARGS__) fn(DT_N_S_soc_S_ucpd_4000a000, __VA_ARGS__) fn(DT_N_S_soc_S_ucpd_4000a400, __VA_ARGS__) fn(DT_N_S_soc_S_can_40006400, __VA_ARGS__) fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40005000, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40013c00, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40008400, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000800, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000800_S_pwm, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40000800_S_qdec, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_40008800, __VA_ARGS__) fn(DT_N_S_soc_S_spi_40003c00, __VA_ARGS__) fn(DT_N_S_soc_S_dma_40020400, __VA_ARGS__) fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) fn(DT_N_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_clocks, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hse, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_lse, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) fn(DT_N_S_clocks_S_pll, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) fn(DT_N_S_mcos, __VA_ARGS__) fn(DT_N_S_mcos_S_mco1, __VA_ARGS__) fn(DT_N_S_mcos_S_mco2, __VA_ARGS__) fn(DT_N_S_dietemp, __VA_ARGS__) fn(DT_N_S_vref, __VA_ARGS__) fn(DT_N_S_vbat, __VA_ARGS__) fn(DT_N_S_smbus1, __VA_ARGS__) fn(DT_N_S_smbus2, __VA_ARGS__) fn(DT_N_S_usbphy, __VA_ARGS__) fn(DT_N_S_smbus3, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) fn(DT_N_S_gpio_keys, __VA_ARGS__) fn(DT_N_S_gpio_keys_S_pfet1, __VA_ARGS__) fn(DT_N_S_gpio_keys_S_pfet2, __VA_ARGS__) +#define DT_FOREACH_OKAY_VARGS_HELPER(fn, ...) fn(DT_N, __VA_ARGS__) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000, __VA_ARGS__) fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_rx_pb0, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_fdcan2_tx_pb1, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_rx_pc5, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usart1_tx_pc4, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dm_pa11, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_usb_dp_pa12, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_1, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_2, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_4, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_5, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_6, __VA_ARGS__) fn(DT_N_S_soc_S_power_40007000_S_wkup_pin_3, __VA_ARGS__) fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) fn(DT_N_S_memory_20000000, __VA_ARGS__) fn(DT_N_S_clocks, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) fn(DT_N_S_clocks_S_pll, __VA_ARGS__) fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) fn(DT_N_S_mcos, __VA_ARGS__) fn(DT_N_S_dietemp, __VA_ARGS__) fn(DT_N_S_vref, __VA_ARGS__) fn(DT_N_S_vbat, __VA_ARGS__) fn(DT_N_S_usbphy, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) fn(DT_N_S_gpio_keys, __VA_ARGS__) fn(DT_N_S_gpio_keys_S_pfet1, __VA_ARGS__) fn(DT_N_S_gpio_keys_S_pfet2, __VA_ARGS__) +#define DT_COMPAT_fixed_partitions_LABEL_mcuboot DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_0 +#define DT_COMPAT_fixed_partitions_LABEL_mcuboot_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_0 DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_4000 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_1 DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions_S_partition_1c000 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_EXISTS 1 + +/* + * Macros for compatibles with status "okay" nodes + */ +#define DT_COMPAT_HAS_OKAY_st_stm32g0b1kb_ews 1 +#define DT_COMPAT_HAS_OKAY_st_stm32g0b1 1 +#define DT_COMPAT_HAS_OKAY_st_stm32g0 1 +#define DT_COMPAT_HAS_OKAY_simple_bus 1 +#define DT_COMPAT_HAS_OKAY_arm_v6m_nvic 1 +#define DT_COMPAT_HAS_OKAY_arm_armv6m_systick 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_flash_controller 1 +#define DT_COMPAT_HAS_OKAY_st_stm32g0_flash_controller 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_nv_flash 1 +#define DT_COMPAT_HAS_OKAY_soc_nv_flash 1 +#define DT_COMPAT_HAS_OKAY_fixed_partitions 1 +#define DT_COMPAT_HAS_OKAY_st_stm32f0_rcc 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_rcc_rctl 1 +#define DT_COMPAT_HAS_OKAY_st_stm32g0_exti 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_exti 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_pinctrl 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_gpio 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_rtc 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_watchdog 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_usart 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_uart 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_lptim 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_fdcan 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_usb 1 +#define DT_COMPAT_HAS_OKAY_arm_cortex_m0_ 1 +#define DT_COMPAT_HAS_OKAY_zephyr_power_state 1 +#define DT_COMPAT_HAS_OKAY_zephyr_memory_region 1 +#define DT_COMPAT_HAS_OKAY_mmio_sram 1 +#define DT_COMPAT_HAS_OKAY_st_stm32g0_hsi_clock 1 +#define DT_COMPAT_HAS_OKAY_fixed_clock 1 +#define DT_COMPAT_HAS_OKAY_st_stm32g0_pll_clock 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_hsi48_clock 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_temp_cal 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_vref 1 +#define DT_COMPAT_HAS_OKAY_st_stm32_vbat 1 +#define DT_COMPAT_HAS_OKAY_usb_nop_xceiv 1 +#define DT_COMPAT_HAS_OKAY_gpio_leds 1 +#define DT_COMPAT_HAS_OKAY_gpio_keys 1 + +/* + * Macros for status "okay" instances of each compatible + */ +#define DT_N_INST_st_stm32g0b1kb_ews_NUM_OKAY 1 +#define DT_N_INST_st_stm32g0b1_NUM_OKAY 1 +#define DT_N_INST_st_stm32g0_NUM_OKAY 1 +#define DT_N_INST_simple_bus_NUM_OKAY 1 +#define DT_N_INST_arm_v6m_nvic_NUM_OKAY 1 +#define DT_N_INST_arm_armv6m_systick_NUM_OKAY 1 +#define DT_N_INST_st_stm32_flash_controller_NUM_OKAY 1 +#define DT_N_INST_st_stm32g0_flash_controller_NUM_OKAY 1 +#define DT_N_INST_st_stm32_nv_flash_NUM_OKAY 1 +#define DT_N_INST_soc_nv_flash_NUM_OKAY 1 +#define DT_N_INST_fixed_partitions_NUM_OKAY 1 +#define DT_N_INST_st_stm32f0_rcc_NUM_OKAY 1 +#define DT_N_INST_st_stm32_rcc_rctl_NUM_OKAY 1 +#define DT_N_INST_st_stm32g0_exti_NUM_OKAY 1 +#define DT_N_INST_st_stm32_exti_NUM_OKAY 1 +#define DT_N_INST_st_stm32_pinctrl_NUM_OKAY 1 +#define DT_N_INST_st_stm32_gpio_NUM_OKAY 6 +#define DT_N_INST_st_stm32_rtc_NUM_OKAY 1 +#define DT_N_INST_st_stm32_watchdog_NUM_OKAY 1 +#define DT_N_INST_st_stm32_usart_NUM_OKAY 1 +#define DT_N_INST_st_stm32_uart_NUM_OKAY 1 +#define DT_N_INST_st_stm32_lptim_NUM_OKAY 1 +#define DT_N_INST_st_stm32_fdcan_NUM_OKAY 1 +#define DT_N_INST_st_stm32_usb_NUM_OKAY 1 +#define DT_N_INST_arm_cortex_m0__NUM_OKAY 1 +#define DT_N_INST_zephyr_power_state_NUM_OKAY 2 +#define DT_N_INST_zephyr_memory_region_NUM_OKAY 1 +#define DT_N_INST_mmio_sram_NUM_OKAY 1 +#define DT_N_INST_st_stm32g0_hsi_clock_NUM_OKAY 1 +#define DT_N_INST_fixed_clock_NUM_OKAY 1 +#define DT_N_INST_st_stm32g0_pll_clock_NUM_OKAY 1 +#define DT_N_INST_st_stm32_hsi48_clock_NUM_OKAY 1 +#define DT_N_INST_st_stm32_temp_cal_NUM_OKAY 1 +#define DT_N_INST_st_stm32_vref_NUM_OKAY 1 +#define DT_N_INST_st_stm32_vbat_NUM_OKAY 1 +#define DT_N_INST_usb_nop_xceiv_NUM_OKAY 1 +#define DT_N_INST_gpio_leds_NUM_OKAY 1 +#define DT_N_INST_gpio_keys_NUM_OKAY 1 +#define DT_FOREACH_OKAY_st_stm32g0b1kb_ews(fn) fn(DT_N) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0b1kb_ews(fn, ...) fn(DT_N, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0b1kb_ews(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0b1kb_ews(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32g0b1(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0b1(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0b1(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0b1(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32g0(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_simple_bus(fn) fn(DT_N_S_soc) +#define DT_FOREACH_OKAY_VARGS_simple_bus(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_simple_bus(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_simple_bus(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_arm_v6m_nvic(fn) fn(DT_N_S_soc_S_interrupt_controller_e000e100) +#define DT_FOREACH_OKAY_VARGS_arm_v6m_nvic(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_e000e100, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_v6m_nvic(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_v6m_nvic(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_arm_armv6m_systick(fn) fn(DT_N_S_soc_S_timer_e000e010) +#define DT_FOREACH_OKAY_VARGS_arm_armv6m_systick(fn, ...) fn(DT_N_S_soc_S_timer_e000e010, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_armv6m_systick(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_armv6m_systick(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_flash_controller(fn) fn(DT_N_S_soc_S_flash_controller_40022000) +#define DT_FOREACH_OKAY_VARGS_st_stm32_flash_controller(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_flash_controller(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_flash_controller(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32g0_flash_controller(fn) fn(DT_N_S_soc_S_flash_controller_40022000) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0_flash_controller(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0_flash_controller(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0_flash_controller(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_nv_flash(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) +#define DT_FOREACH_OKAY_VARGS_st_stm32_nv_flash(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_nv_flash(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_nv_flash(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_soc_nv_flash(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000) +#define DT_FOREACH_OKAY_VARGS_soc_nv_flash(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_soc_nv_flash(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_soc_nv_flash(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_fixed_partitions(fn) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions) +#define DT_FOREACH_OKAY_VARGS_fixed_partitions(fn, ...) fn(DT_N_S_soc_S_flash_controller_40022000_S_flash_8000000_S_partitions, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_fixed_partitions(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_fixed_partitions(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32f0_rcc(fn) fn(DT_N_S_soc_S_rcc_40021000) +#define DT_FOREACH_OKAY_VARGS_st_stm32f0_rcc(fn, ...) fn(DT_N_S_soc_S_rcc_40021000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32f0_rcc(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32f0_rcc(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_rcc_rctl(fn) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller) +#define DT_FOREACH_OKAY_VARGS_st_stm32_rcc_rctl(fn, ...) fn(DT_N_S_soc_S_rcc_40021000_S_reset_controller, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_rcc_rctl(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_rcc_rctl(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32g0_exti(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0_exti(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0_exti(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0_exti(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_exti(fn) fn(DT_N_S_soc_S_interrupt_controller_40021800) +#define DT_FOREACH_OKAY_VARGS_st_stm32_exti(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_40021800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_exti(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_exti(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_pinctrl(fn) fn(DT_N_S_soc_S_pin_controller_50000000) +#define DT_FOREACH_OKAY_VARGS_st_stm32_pinctrl(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_pinctrl(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_pinctrl(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_gpio(fn) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000) +#define DT_FOREACH_OKAY_VARGS_st_stm32_gpio(fn, ...) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000800, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50000c00, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001400, __VA_ARGS__) fn(DT_N_S_soc_S_pin_controller_50000000_S_gpio_50001000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_gpio(fn) fn(0) fn(1) fn(2) fn(3) fn(4) fn(5) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_gpio(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) fn(2, __VA_ARGS__) fn(3, __VA_ARGS__) fn(4, __VA_ARGS__) fn(5, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_rtc(fn) fn(DT_N_S_soc_S_rtc_40002800) +#define DT_FOREACH_OKAY_VARGS_st_stm32_rtc(fn, ...) fn(DT_N_S_soc_S_rtc_40002800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_rtc(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_rtc(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_watchdog(fn) fn(DT_N_S_soc_S_watchdog_40003000) +#define DT_FOREACH_OKAY_VARGS_st_stm32_watchdog(fn, ...) fn(DT_N_S_soc_S_watchdog_40003000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_watchdog(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_watchdog(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_usart(fn) fn(DT_N_S_soc_S_serial_40013800) +#define DT_FOREACH_OKAY_VARGS_st_stm32_usart(fn, ...) fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_usart(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_usart(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_uart(fn) fn(DT_N_S_soc_S_serial_40013800) +#define DT_FOREACH_OKAY_VARGS_st_stm32_uart(fn, ...) fn(DT_N_S_soc_S_serial_40013800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_uart(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_uart(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_lptim(fn) fn(DT_N_S_soc_S_timers_40007c00) +#define DT_FOREACH_OKAY_VARGS_st_stm32_lptim(fn, ...) fn(DT_N_S_soc_S_timers_40007c00, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_lptim(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_lptim(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_fdcan(fn) fn(DT_N_S_soc_S_can_40006800) +#define DT_FOREACH_OKAY_VARGS_st_stm32_fdcan(fn, ...) fn(DT_N_S_soc_S_can_40006800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_fdcan(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_fdcan(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_usb(fn) fn(DT_N_S_soc_S_usb_40005c00) +#define DT_FOREACH_OKAY_VARGS_st_stm32_usb(fn, ...) fn(DT_N_S_soc_S_usb_40005c00, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_usb(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_usb(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_arm_cortex_m0_(fn) fn(DT_N_S_cpus_S_cpu_0) +#define DT_FOREACH_OKAY_VARGS_arm_cortex_m0_(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_arm_cortex_m0_(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_arm_cortex_m0_(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_zephyr_power_state(fn) fn(DT_N_S_cpus_S_power_states_S_state0) fn(DT_N_S_cpus_S_power_states_S_state1) +#define DT_FOREACH_OKAY_VARGS_zephyr_power_state(fn, ...) fn(DT_N_S_cpus_S_power_states_S_state0, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_state1, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_zephyr_power_state(fn) fn(0) fn(1) +#define DT_FOREACH_OKAY_INST_VARGS_zephyr_power_state(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) +#define DT_FOREACH_OKAY_zephyr_memory_region(fn) fn(DT_N_S_memory_20000000) +#define DT_FOREACH_OKAY_VARGS_zephyr_memory_region(fn, ...) fn(DT_N_S_memory_20000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_zephyr_memory_region(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_zephyr_memory_region(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_mmio_sram(fn) fn(DT_N_S_memory_20000000) +#define DT_FOREACH_OKAY_VARGS_mmio_sram(fn, ...) fn(DT_N_S_memory_20000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_mmio_sram(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_mmio_sram(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32g0_hsi_clock(fn) fn(DT_N_S_clocks_S_clk_hsi) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0_hsi_clock(fn, ...) fn(DT_N_S_clocks_S_clk_hsi, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0_hsi_clock(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0_hsi_clock(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_fixed_clock(fn) fn(DT_N_S_clocks_S_clk_lsi) +#define DT_FOREACH_OKAY_VARGS_fixed_clock(fn, ...) fn(DT_N_S_clocks_S_clk_lsi, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_fixed_clock(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_fixed_clock(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32g0_pll_clock(fn) fn(DT_N_S_clocks_S_pll) +#define DT_FOREACH_OKAY_VARGS_st_stm32g0_pll_clock(fn, ...) fn(DT_N_S_clocks_S_pll, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32g0_pll_clock(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32g0_pll_clock(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_hsi48_clock(fn) fn(DT_N_S_clocks_S_clk_hsi48) +#define DT_FOREACH_OKAY_VARGS_st_stm32_hsi48_clock(fn, ...) fn(DT_N_S_clocks_S_clk_hsi48, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_hsi48_clock(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_hsi48_clock(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_temp_cal(fn) fn(DT_N_S_dietemp) +#define DT_FOREACH_OKAY_VARGS_st_stm32_temp_cal(fn, ...) fn(DT_N_S_dietemp, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_temp_cal(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_temp_cal(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_vref(fn) fn(DT_N_S_vref) +#define DT_FOREACH_OKAY_VARGS_st_stm32_vref(fn, ...) fn(DT_N_S_vref, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_vref(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_vref(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_st_stm32_vbat(fn) fn(DT_N_S_vbat) +#define DT_FOREACH_OKAY_VARGS_st_stm32_vbat(fn, ...) fn(DT_N_S_vbat, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_st_stm32_vbat(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_st_stm32_vbat(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_usb_nop_xceiv(fn) fn(DT_N_S_usbphy) +#define DT_FOREACH_OKAY_VARGS_usb_nop_xceiv(fn, ...) fn(DT_N_S_usbphy, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_usb_nop_xceiv(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_usb_nop_xceiv(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_gpio_leds(fn) fn(DT_N_S_leds) +#define DT_FOREACH_OKAY_VARGS_gpio_leds(fn, ...) fn(DT_N_S_leds, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_gpio_leds(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_gpio_leds(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_gpio_keys(fn) fn(DT_N_S_gpio_keys) +#define DT_FOREACH_OKAY_VARGS_gpio_keys(fn, ...) fn(DT_N_S_gpio_keys, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_gpio_keys(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_gpio_keys(fn, ...) fn(0, __VA_ARGS__) + +/* + * Bus information for status "okay" nodes of each compatible + */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/driver-validation.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/driver-validation.h new file mode 100644 index 0000000..3a77509 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/driver-validation.h @@ -0,0 +1,180 @@ +#ifndef DRIVER_VALIDATION_GEN_H +#define DRIVER_VALIDATION_GEN_H +#define K_SYSCALL_DRIVER_GEN(ptr, op, driver_lower_case, driver_upper_case) \ + (K_SYSCALL_OBJ(ptr, K_OBJ_DRIVER_##driver_upper_case) || \ + K_SYSCALL_DRIVER_OP(ptr, driver_lower_case##_driver_api, op)) + +#define K_SYSCALL_DRIVER_CAN(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, can, CAN) + +#define K_SYSCALL_DRIVER_GPIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, gpio, GPIO) + +#define K_SYSCALL_DRIVER_RESET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, reset, RESET) + +#define K_SYSCALL_DRIVER_SHARED_IRQ(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, shared_irq, SHARED_IRQ) + +#define K_SYSCALL_DRIVER_CRYPTO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, crypto, CRYPTO) + +#define K_SYSCALL_DRIVER_ADC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, adc, ADC) + +#define K_SYSCALL_DRIVER_AUXDISPLAY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, auxdisplay, AUXDISPLAY) + +#define K_SYSCALL_DRIVER_BBRAM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bbram, BBRAM) + +#define K_SYSCALL_DRIVER_BT_HCI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bt_hci, BT_HCI) + +#define K_SYSCALL_DRIVER_CELLULAR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, cellular, CELLULAR) + +#define K_SYSCALL_DRIVER_CHARGER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, charger, CHARGER) + +#define K_SYSCALL_DRIVER_CLOCK_CONTROL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, clock_control, CLOCK_CONTROL) + +#define K_SYSCALL_DRIVER_COMPARATOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, comparator, COMPARATOR) + +#define K_SYSCALL_DRIVER_COREDUMP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, coredump, COREDUMP) + +#define K_SYSCALL_DRIVER_COUNTER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, counter, COUNTER) + +#define K_SYSCALL_DRIVER_CRC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, crc, CRC) + +#define K_SYSCALL_DRIVER_DAC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dac, DAC) + +#define K_SYSCALL_DRIVER_DAI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dai, DAI) + +#define K_SYSCALL_DRIVER_DISPLAY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, display, DISPLAY) + +#define K_SYSCALL_DRIVER_DMA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dma, DMA) + +#define K_SYSCALL_DRIVER_EDAC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, edac, EDAC) + +#define K_SYSCALL_DRIVER_EEPROM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, eeprom, EEPROM) + +#define K_SYSCALL_DRIVER_EMUL_BBRAM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, emul_bbram, EMUL_BBRAM) + +#define K_SYSCALL_DRIVER_FUEL_GAUGE_EMUL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fuel_gauge_emul, FUEL_GAUGE_EMUL) + +#define K_SYSCALL_DRIVER_EMUL_SENSOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, emul_sensor, EMUL_SENSOR) + +#define K_SYSCALL_DRIVER_ENTROPY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, entropy, ENTROPY) + +#define K_SYSCALL_DRIVER_ESPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, espi, ESPI) + +#define K_SYSCALL_DRIVER_ESPI_SAF(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, espi_saf, ESPI_SAF) + +#define K_SYSCALL_DRIVER_FLASH(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, flash, FLASH) + +#define K_SYSCALL_DRIVER_FPGA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fpga, FPGA) + +#define K_SYSCALL_DRIVER_FUEL_GAUGE(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fuel_gauge, FUEL_GAUGE) + +#define K_SYSCALL_DRIVER_GNSS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, gnss, GNSS) + +#define K_SYSCALL_DRIVER_HAPTICS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, haptics, HAPTICS) + +#define K_SYSCALL_DRIVER_HWSPINLOCK(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, hwspinlock, HWSPINLOCK) + +#define K_SYSCALL_DRIVER_I2C(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2c, I2C) + +#define K_SYSCALL_DRIVER_I2C_TARGET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2c_target, I2C_TARGET) + +#define K_SYSCALL_DRIVER_I2S(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2s, I2S) + +#define K_SYSCALL_DRIVER_I3C(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i3c, I3C) + +#define K_SYSCALL_DRIVER_IPM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ipm, IPM) + +#define K_SYSCALL_DRIVER_LED(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, led, LED) + +#define K_SYSCALL_DRIVER_LED_STRIP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, led_strip, LED_STRIP) + +#define K_SYSCALL_DRIVER_LORA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, lora, LORA) + +#define K_SYSCALL_DRIVER_MBOX(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mbox, MBOX) + +#define K_SYSCALL_DRIVER_MDIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mdio, MDIO) + +#define K_SYSCALL_DRIVER_MIPI_DBI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mipi_dbi, MIPI_DBI) + +#define K_SYSCALL_DRIVER_MIPI_DSI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mipi_dsi, MIPI_DSI) + +#define K_SYSCALL_DRIVER_MSPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mspi, MSPI) + +#define K_SYSCALL_DRIVER_OPAMP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, opamp, OPAMP) + +#define K_SYSCALL_DRIVER_PECI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, peci, PECI) + +#define K_SYSCALL_DRIVER_PS2(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ps2, PS2) + +#define K_SYSCALL_DRIVER_PTP_CLOCK(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ptp_clock, PTP_CLOCK) + +#define K_SYSCALL_DRIVER_PWM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pwm, PWM) + +#define K_SYSCALL_DRIVER_REGULATOR_PARENT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, regulator_parent, REGULATOR_PARENT) + +#define K_SYSCALL_DRIVER_REGULATOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, regulator, REGULATOR) + +#define K_SYSCALL_DRIVER_RETAINED_MEM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, retained_mem, RETAINED_MEM) + +#define K_SYSCALL_DRIVER_RTC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, rtc, RTC) + +#define K_SYSCALL_DRIVER_SDHC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sdhc, SDHC) + +#define K_SYSCALL_DRIVER_SENSOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sensor, SENSOR) + +#define K_SYSCALL_DRIVER_SMBUS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, smbus, SMBUS) + +#define K_SYSCALL_DRIVER_SPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, spi, SPI) + +#define K_SYSCALL_DRIVER_STEPPER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, stepper, STEPPER) + +#define K_SYSCALL_DRIVER_SYSCON(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, syscon, SYSCON) + +#define K_SYSCALL_DRIVER_TEE(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tee, TEE) + +#define K_SYSCALL_DRIVER_VIDEO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, video, VIDEO) + +#define K_SYSCALL_DRIVER_VIRTIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, virtio, VIRTIO) + +#define K_SYSCALL_DRIVER_W1(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, w1, W1) + +#define K_SYSCALL_DRIVER_WDT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, wdt, WDT) + +#define K_SYSCALL_DRIVER_CAN_TRANSCEIVER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, can_transceiver, CAN_TRANSCEIVER) + +#define K_SYSCALL_DRIVER_NRF_CLOCK_CONTROL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, nrf_clock_control, NRF_CLOCK_CONTROL) + +#define K_SYSCALL_DRIVER_I3C_TARGET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i3c_target, I3C_TARGET) + +#define K_SYSCALL_DRIVER_ITS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, its, ITS) + +#define K_SYSCALL_DRIVER_VTD(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, vtd, VTD) + +#define K_SYSCALL_DRIVER_RENESAS_ELC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, renesas_elc, RENESAS_ELC) + +#define K_SYSCALL_DRIVER_TGPIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tgpio, TGPIO) + +#define K_SYSCALL_DRIVER_PCIE_CTRL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pcie_ctrl, PCIE_CTRL) + +#define K_SYSCALL_DRIVER_PCIE_EP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pcie_ep, PCIE_EP) + +#define K_SYSCALL_DRIVER_PSI5(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, psi5, PSI5) + +#define K_SYSCALL_DRIVER_SENT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sent, SENT) + +#define K_SYSCALL_DRIVER_SVC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, svc, SVC) + +#define K_SYSCALL_DRIVER_UART(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, uart, UART) + +#define K_SYSCALL_DRIVER_BC12_EMUL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bc12_emul, BC12_EMUL) + +#define K_SYSCALL_DRIVER_BC12(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bc12, BC12) + +#define K_SYSCALL_DRIVER_USBC_PPC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, usbc_ppc, USBC_PPC) + +#define K_SYSCALL_DRIVER_TCPC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tcpc, TCPC) + +#define K_SYSCALL_DRIVER_USBC_VBUS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, usbc_vbus, USBC_VBUS) + +#define K_SYSCALL_DRIVER_IVSHMEM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ivshmem, IVSHMEM) + +#define K_SYSCALL_DRIVER_ETHPHY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ethphy, ETHPHY) +#endif /* DRIVER_VALIDATION_GEN_H */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/kobj-types-enum.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/kobj-types-enum.h new file mode 100644 index 0000000..96c1162 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/kobj-types-enum.h @@ -0,0 +1,135 @@ +/* Core kernel objects */ +K_OBJ_MEM_SLAB, +K_OBJ_MSGQ, +K_OBJ_MUTEX, +K_OBJ_PIPE, +K_OBJ_QUEUE, +K_OBJ_POLL_SIGNAL, +K_OBJ_SEM, +K_OBJ_STACK, +K_OBJ_THREAD, +K_OBJ_TIMER, +K_OBJ_THREAD_STACK_ELEMENT, +K_OBJ_NET_SOCKET, +K_OBJ_NET_IF, +K_OBJ_SYS_MUTEX, +K_OBJ_FUTEX, +K_OBJ_CONDVAR, +#ifdef CONFIG_EVENTS +K_OBJ_EVENT, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_SUITE_NODE, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_SUITE_STATS, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_UNIT_TEST, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_TEST_RULE, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO_IODEV, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO_POOL, +#endif +#ifdef CONFIG_ADC_STREAM +K_OBJ_ADC_DECODER_API, +#endif +#ifdef CONFIG_SENSOR_ASYNC_API +K_OBJ_SENSOR_DECODER_API, +#endif +/* Driver subsystems */ +K_OBJ_DRIVER_CAN, +K_OBJ_DRIVER_GPIO, +K_OBJ_DRIVER_RESET, +K_OBJ_DRIVER_SHARED_IRQ, +K_OBJ_DRIVER_CRYPTO, +K_OBJ_DRIVER_ADC, +K_OBJ_DRIVER_AUXDISPLAY, +K_OBJ_DRIVER_BBRAM, +K_OBJ_DRIVER_BT_HCI, +K_OBJ_DRIVER_CELLULAR, +K_OBJ_DRIVER_CHARGER, +K_OBJ_DRIVER_CLOCK_CONTROL, +K_OBJ_DRIVER_COMPARATOR, +K_OBJ_DRIVER_COREDUMP, +K_OBJ_DRIVER_COUNTER, +K_OBJ_DRIVER_CRC, +K_OBJ_DRIVER_DAC, +K_OBJ_DRIVER_DAI, +K_OBJ_DRIVER_DISPLAY, +K_OBJ_DRIVER_DMA, +K_OBJ_DRIVER_EDAC, +K_OBJ_DRIVER_EEPROM, +K_OBJ_DRIVER_EMUL_BBRAM, +K_OBJ_DRIVER_FUEL_GAUGE_EMUL, +K_OBJ_DRIVER_EMUL_SENSOR, +K_OBJ_DRIVER_ENTROPY, +K_OBJ_DRIVER_ESPI, +K_OBJ_DRIVER_ESPI_SAF, +K_OBJ_DRIVER_FLASH, +K_OBJ_DRIVER_FPGA, +K_OBJ_DRIVER_FUEL_GAUGE, +K_OBJ_DRIVER_GNSS, +K_OBJ_DRIVER_HAPTICS, +K_OBJ_DRIVER_HWSPINLOCK, +K_OBJ_DRIVER_I2C, +K_OBJ_DRIVER_I2C_TARGET, +K_OBJ_DRIVER_I2S, +K_OBJ_DRIVER_I3C, +K_OBJ_DRIVER_IPM, +K_OBJ_DRIVER_LED, +K_OBJ_DRIVER_LED_STRIP, +K_OBJ_DRIVER_LORA, +K_OBJ_DRIVER_MBOX, +K_OBJ_DRIVER_MDIO, +K_OBJ_DRIVER_MIPI_DBI, +K_OBJ_DRIVER_MIPI_DSI, +K_OBJ_DRIVER_MSPI, +K_OBJ_DRIVER_OPAMP, +K_OBJ_DRIVER_PECI, +K_OBJ_DRIVER_PS2, +K_OBJ_DRIVER_PTP_CLOCK, +K_OBJ_DRIVER_PWM, +K_OBJ_DRIVER_REGULATOR_PARENT, +K_OBJ_DRIVER_REGULATOR, +K_OBJ_DRIVER_RETAINED_MEM, +K_OBJ_DRIVER_RTC, +K_OBJ_DRIVER_SDHC, +K_OBJ_DRIVER_SENSOR, +K_OBJ_DRIVER_SMBUS, +K_OBJ_DRIVER_SPI, +K_OBJ_DRIVER_STEPPER, +K_OBJ_DRIVER_SYSCON, +K_OBJ_DRIVER_TEE, +K_OBJ_DRIVER_VIDEO, +K_OBJ_DRIVER_VIRTIO, +K_OBJ_DRIVER_W1, +K_OBJ_DRIVER_WDT, +K_OBJ_DRIVER_CAN_TRANSCEIVER, +K_OBJ_DRIVER_NRF_CLOCK_CONTROL, +K_OBJ_DRIVER_I3C_TARGET, +K_OBJ_DRIVER_ITS, +K_OBJ_DRIVER_VTD, +K_OBJ_DRIVER_RENESAS_ELC, +K_OBJ_DRIVER_TGPIO, +K_OBJ_DRIVER_PCIE_CTRL, +K_OBJ_DRIVER_PCIE_EP, +K_OBJ_DRIVER_PSI5, +K_OBJ_DRIVER_SENT, +K_OBJ_DRIVER_SVC, +K_OBJ_DRIVER_UART, +K_OBJ_DRIVER_BC12_EMUL, +K_OBJ_DRIVER_BC12, +K_OBJ_DRIVER_USBC_PPC, +K_OBJ_DRIVER_TCPC, +K_OBJ_DRIVER_USBC_VBUS, +K_OBJ_DRIVER_IVSHMEM, +K_OBJ_DRIVER_ETHPHY, diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h new file mode 100644 index 0000000..e2b0141 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h @@ -0,0 +1,33 @@ +/* THIS FILE IS AUTO GENERATED. PLEASE DO NOT EDIT. + * + * This header file provides macros for the offsets of various structure + * members. These offset macros are primarily intended to be used in + * assembly code. + */ + +#ifndef __GEN_OFFSETS_H__ +#define __GEN_OFFSETS_H__ + +#define ___cpu_t_current_OFFSET 0x8 +#define ___cpu_t_nested_OFFSET 0x0 +#define ___cpu_t_irq_stack_OFFSET 0x4 +#define ___cpu_t_arch_OFFSET 0x11 +#define ___kernel_t_cpus_OFFSET 0x0 +#define ___kernel_t_ready_q_OFFSET 0x14 +#define ___ready_q_t_cache_OFFSET 0x0 +#define ___thread_base_t_user_options_OFFSET 0xc +#define ___thread_t_base_OFFSET 0x0 +#define ___thread_t_callee_saved_OFFSET 0x30 +#define ___thread_t_arch_OFFSET 0x68 +#define ___thread_t_tls_OFFSET 0x64 +#define __z_interrupt_stack_SIZEOF 0x800 +#define __z_interrupt_all_stacks_SIZEOF 0x800 +#define _PM_DEVICE_STRUCT_FLAGS_OFFSET 0x0 +#define ___thread_arch_t_basepri_OFFSET 0x0 +#define ___thread_arch_t_swap_return_value_OFFSET 0x4 +#define ___basic_sf_t_pc_OFFSET 0x18 +#define ___basic_sf_t_xpsr_OFFSET 0x1c +#define ___esf_t_SIZEOF 0x20 +#define ___callee_saved_t_SIZEOF 0x24 + +#endif /* __GEN_OFFSETS_H__ */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-size.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-size.h new file mode 100644 index 0000000..5ae6675 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-size.h @@ -0,0 +1,15 @@ +/* Non device/stack objects */ +case K_OBJ_MEM_SLAB: ret = sizeof(struct k_mem_slab); break; +case K_OBJ_MSGQ: ret = sizeof(struct k_msgq); break; +case K_OBJ_MUTEX: ret = sizeof(struct k_mutex); break; +case K_OBJ_PIPE: ret = sizeof(struct k_pipe); break; +case K_OBJ_QUEUE: ret = sizeof(struct k_queue); break; +case K_OBJ_POLL_SIGNAL: ret = sizeof(struct k_poll_signal); break; +case K_OBJ_SEM: ret = sizeof(struct k_sem); break; +case K_OBJ_STACK: ret = sizeof(struct k_stack); break; +case K_OBJ_THREAD: ret = sizeof(struct k_thread); break; +case K_OBJ_TIMER: ret = sizeof(struct k_timer); break; +case K_OBJ_CONDVAR: ret = sizeof(struct k_condvar); break; +#ifdef CONFIG_EVENTS +case K_OBJ_EVENT: ret = sizeof(struct k_event); break; +#endif diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-str.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-str.h new file mode 100644 index 0000000..3ff2fef --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/otype-to-str.h @@ -0,0 +1,135 @@ +/* Core kernel objects */ +case K_OBJ_MEM_SLAB: ret = "k_mem_slab"; break; +case K_OBJ_MSGQ: ret = "k_msgq"; break; +case K_OBJ_MUTEX: ret = "k_mutex"; break; +case K_OBJ_PIPE: ret = "k_pipe"; break; +case K_OBJ_QUEUE: ret = "k_queue"; break; +case K_OBJ_POLL_SIGNAL: ret = "k_poll_signal"; break; +case K_OBJ_SEM: ret = "k_sem"; break; +case K_OBJ_STACK: ret = "k_stack"; break; +case K_OBJ_THREAD: ret = "k_thread"; break; +case K_OBJ_TIMER: ret = "k_timer"; break; +case K_OBJ_THREAD_STACK_ELEMENT: ret = "z_thread_stack_element"; break; +case K_OBJ_NET_SOCKET: ret = "NET_SOCKET"; break; +case K_OBJ_NET_IF: ret = "net_if"; break; +case K_OBJ_SYS_MUTEX: ret = "sys_mutex"; break; +case K_OBJ_FUTEX: ret = "k_futex"; break; +case K_OBJ_CONDVAR: ret = "k_condvar"; break; +#ifdef CONFIG_EVENTS +case K_OBJ_EVENT: ret = "k_event"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_SUITE_NODE: ret = "ztest_suite_node"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_SUITE_STATS: ret = "ztest_suite_stats"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_UNIT_TEST: ret = "ztest_unit_test"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_TEST_RULE: ret = "ztest_test_rule"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO: ret = "rtio"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO_IODEV: ret = "rtio_iodev"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO_POOL: ret = "rtio_pool"; break; +#endif +#ifdef CONFIG_ADC_STREAM +case K_OBJ_ADC_DECODER_API: ret = "adc_decoder_api"; break; +#endif +#ifdef CONFIG_SENSOR_ASYNC_API +case K_OBJ_SENSOR_DECODER_API: ret = "sensor_decoder_api"; break; +#endif +/* Driver subsystems */ +case K_OBJ_DRIVER_CAN: ret = "can driver"; break; +case K_OBJ_DRIVER_GPIO: ret = "gpio driver"; break; +case K_OBJ_DRIVER_RESET: ret = "reset driver"; break; +case K_OBJ_DRIVER_SHARED_IRQ: ret = "shared_irq driver"; break; +case K_OBJ_DRIVER_CRYPTO: ret = "crypto driver"; break; +case K_OBJ_DRIVER_ADC: ret = "adc driver"; break; +case K_OBJ_DRIVER_AUXDISPLAY: ret = "auxdisplay driver"; break; +case K_OBJ_DRIVER_BBRAM: ret = "bbram driver"; break; +case K_OBJ_DRIVER_BT_HCI: ret = "bt_hci driver"; break; +case K_OBJ_DRIVER_CELLULAR: ret = "cellular driver"; break; +case K_OBJ_DRIVER_CHARGER: ret = "charger driver"; break; +case K_OBJ_DRIVER_CLOCK_CONTROL: ret = "clock_control driver"; break; +case K_OBJ_DRIVER_COMPARATOR: ret = "comparator driver"; break; +case K_OBJ_DRIVER_COREDUMP: ret = "coredump driver"; break; +case K_OBJ_DRIVER_COUNTER: ret = "counter driver"; break; +case K_OBJ_DRIVER_CRC: ret = "crc driver"; break; +case K_OBJ_DRIVER_DAC: ret = "dac driver"; break; +case K_OBJ_DRIVER_DAI: ret = "dai driver"; break; +case K_OBJ_DRIVER_DISPLAY: ret = "display driver"; break; +case K_OBJ_DRIVER_DMA: ret = "dma driver"; break; +case K_OBJ_DRIVER_EDAC: ret = "edac driver"; break; +case K_OBJ_DRIVER_EEPROM: ret = "eeprom driver"; break; +case K_OBJ_DRIVER_EMUL_BBRAM: ret = "emul_bbram driver"; break; +case K_OBJ_DRIVER_FUEL_GAUGE_EMUL: ret = "fuel_gauge_emul driver"; break; +case K_OBJ_DRIVER_EMUL_SENSOR: ret = "emul_sensor driver"; break; +case K_OBJ_DRIVER_ENTROPY: ret = "entropy driver"; break; +case K_OBJ_DRIVER_ESPI: ret = "espi driver"; break; +case K_OBJ_DRIVER_ESPI_SAF: ret = "espi_saf driver"; break; +case K_OBJ_DRIVER_FLASH: ret = "flash driver"; break; +case K_OBJ_DRIVER_FPGA: ret = "fpga driver"; break; +case K_OBJ_DRIVER_FUEL_GAUGE: ret = "fuel_gauge driver"; break; +case K_OBJ_DRIVER_GNSS: ret = "gnss driver"; break; +case K_OBJ_DRIVER_HAPTICS: ret = "haptics driver"; break; +case K_OBJ_DRIVER_HWSPINLOCK: ret = "hwspinlock driver"; break; +case K_OBJ_DRIVER_I2C: ret = "i2c driver"; break; +case K_OBJ_DRIVER_I2C_TARGET: ret = "i2c_target driver"; break; +case K_OBJ_DRIVER_I2S: ret = "i2s driver"; break; +case K_OBJ_DRIVER_I3C: ret = "i3c driver"; break; +case K_OBJ_DRIVER_IPM: ret = "ipm driver"; break; +case K_OBJ_DRIVER_LED: ret = "led driver"; break; +case K_OBJ_DRIVER_LED_STRIP: ret = "led_strip driver"; break; +case K_OBJ_DRIVER_LORA: ret = "lora driver"; break; +case K_OBJ_DRIVER_MBOX: ret = "mbox driver"; break; +case K_OBJ_DRIVER_MDIO: ret = "mdio driver"; break; +case K_OBJ_DRIVER_MIPI_DBI: ret = "mipi_dbi driver"; break; +case K_OBJ_DRIVER_MIPI_DSI: ret = "mipi_dsi driver"; break; +case K_OBJ_DRIVER_MSPI: ret = "mspi driver"; break; +case K_OBJ_DRIVER_OPAMP: ret = "opamp driver"; break; +case K_OBJ_DRIVER_PECI: ret = "peci driver"; break; +case K_OBJ_DRIVER_PS2: ret = "ps2 driver"; break; +case K_OBJ_DRIVER_PTP_CLOCK: ret = "ptp_clock driver"; break; +case K_OBJ_DRIVER_PWM: ret = "pwm driver"; break; +case K_OBJ_DRIVER_REGULATOR_PARENT: ret = "regulator_parent driver"; break; +case K_OBJ_DRIVER_REGULATOR: ret = "regulator driver"; break; +case K_OBJ_DRIVER_RETAINED_MEM: ret = "retained_mem driver"; break; +case K_OBJ_DRIVER_RTC: ret = "rtc driver"; break; +case K_OBJ_DRIVER_SDHC: ret = "sdhc driver"; break; +case K_OBJ_DRIVER_SENSOR: ret = "sensor driver"; break; +case K_OBJ_DRIVER_SMBUS: ret = "smbus driver"; break; +case K_OBJ_DRIVER_SPI: ret = "spi driver"; break; +case K_OBJ_DRIVER_STEPPER: ret = "stepper driver"; break; +case K_OBJ_DRIVER_SYSCON: ret = "syscon driver"; break; +case K_OBJ_DRIVER_TEE: ret = "tee driver"; break; +case K_OBJ_DRIVER_VIDEO: ret = "video driver"; break; +case K_OBJ_DRIVER_VIRTIO: ret = "virtio driver"; break; +case K_OBJ_DRIVER_W1: ret = "w1 driver"; break; +case K_OBJ_DRIVER_WDT: ret = "wdt driver"; break; +case K_OBJ_DRIVER_CAN_TRANSCEIVER: ret = "can_transceiver driver"; break; +case K_OBJ_DRIVER_NRF_CLOCK_CONTROL: ret = "nrf_clock_control driver"; break; +case K_OBJ_DRIVER_I3C_TARGET: ret = "i3c_target driver"; break; +case K_OBJ_DRIVER_ITS: ret = "its driver"; break; +case K_OBJ_DRIVER_VTD: ret = "vtd driver"; break; +case K_OBJ_DRIVER_RENESAS_ELC: ret = "renesas_elc driver"; break; +case K_OBJ_DRIVER_TGPIO: ret = "tgpio driver"; break; +case K_OBJ_DRIVER_PCIE_CTRL: ret = "pcie_ctrl driver"; break; +case K_OBJ_DRIVER_PCIE_EP: ret = "pcie_ep driver"; break; +case K_OBJ_DRIVER_PSI5: ret = "psi5 driver"; break; +case K_OBJ_DRIVER_SENT: ret = "sent driver"; break; +case K_OBJ_DRIVER_SVC: ret = "svc driver"; break; +case K_OBJ_DRIVER_UART: ret = "uart driver"; break; +case K_OBJ_DRIVER_BC12_EMUL: ret = "bc12_emul driver"; break; +case K_OBJ_DRIVER_BC12: ret = "bc12 driver"; break; +case K_OBJ_DRIVER_USBC_PPC: ret = "usbc_ppc driver"; break; +case K_OBJ_DRIVER_TCPC: ret = "tcpc driver"; break; +case K_OBJ_DRIVER_USBC_VBUS: ret = "usbc_vbus driver"; break; +case K_OBJ_DRIVER_IVSHMEM: ret = "ivshmem driver"; break; +case K_OBJ_DRIVER_ETHPHY: ret = "ethphy driver"; break; diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_dispatch.c b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_dispatch.c new file mode 100644 index 0000000..452481d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_dispatch.c @@ -0,0 +1,1032 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#include + +/* Weak handler functions that get replaced by the real ones unless a system + * call is not implemented due to kernel configuration. + */ + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_read_stdin(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_write_stdout(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_fputc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_fwrite(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_getrtoffset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_settime(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_nanosleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_sys_mutex_kernel_lock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_sys_mutex_kernel_unlock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_0(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_1(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_2(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_static_create(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_panic(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_process(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_buffered_cnt(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_filter_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_frontend_filter_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_core_clock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_bitrate_min(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_bitrate_max(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_timing_min(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_timing_max(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_calc_timing(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_timing_data_min(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_timing_data_max(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_calc_timing_data(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_set_timing_data(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_set_bitrate_data(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_set_timing(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_capabilities(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_transceiver(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_start(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_set_mode(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_mode(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_set_bitrate(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_send(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_add_rx_filter_msgq(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_remove_rx_filter(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_max_filters(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_get_state(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_recover(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_bit_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_bit0_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_bit1_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_stuff_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_crc_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_form_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_ack_errors(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_can_stats_get_rx_overruns(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_interrupt_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_get_direction(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_get_config(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_get_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_set_masked_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_set_bits_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_clear_bits_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_toggle_bits(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_get_pending_int(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_device_id(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_device_eui64(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_reset_cause(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_clear_reset_cause(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_hwinfo_get_supported_reset_cause(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_reset_status(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_reset_line_assert(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_reset_line_deassert(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_reset_line_toggle(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_err_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_in(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_in_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_out(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_out_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_config_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_tx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_tx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_rx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_rx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_err_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_err_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_is_pending(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_update(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx_abort(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_enable_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_line_ctrl_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_line_ctrl_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_drv_cmd(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_get_binding(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_is_ready(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_deinit(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_get_by_dt_nodelabel(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_alloc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_free(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_create(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_space_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_join(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_usleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_busy_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_yield(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_wakeup(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sched_current_thread_query(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_abort(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_timeout_expires_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_timeout_remaining_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_priority_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_priority_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_deadline_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_absolute_deadline_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_reschedule(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_suspend(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_resume(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_is_preempt_thread(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_custom_data_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_custom_data_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_name_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_name_copy(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_start(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_stop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_status_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_status_sync(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_expires_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_remaining_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_user_data_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_user_data_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_uptime_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_cancel_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_alloc_append(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_alloc_prepend(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_is_empty(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_peek_head(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_peek_tail(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_futex_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_futex_wake(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_post(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_set_masked(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_clear(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_all(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_safe(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_all_safe(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_push(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_pop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_lock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_unlock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_signal(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_broadcast(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_take(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_give(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_count_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_put(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_put_front(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_peek(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_peek_at(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_purge(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_num_free_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_get_attrs(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_num_used_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_write(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_read(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_close(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_raise(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_str_out(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_float_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_float_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_object_alloc_size(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_hw_cycles_per_sec_runtime_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_cas(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_ptr_cas(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_add(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_sub(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_ptr_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_or(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_xor(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_and(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_atomic_nand(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_release(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_access_grant(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_alloc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +const _k_syscall_handler_t _k_syscall_table[K_SYSCALL_LIMIT] = { + [K_SYSCALL_ZEPHYR_READ_STDIN] = z_mrsh_zephyr_read_stdin, + [K_SYSCALL_ZEPHYR_WRITE_STDOUT] = z_mrsh_zephyr_write_stdout, + [K_SYSCALL_ZEPHYR_FPUTC] = z_mrsh_zephyr_fputc, + [K_SYSCALL_ZEPHYR_FWRITE] = z_mrsh_zephyr_fwrite, + [K_SYSCALL_SYS_CLOCK_GETRTOFFSET] = z_mrsh_sys_clock_getrtoffset, + [K_SYSCALL_SYS_CLOCK_SETTIME] = z_mrsh_sys_clock_settime, + [K_SYSCALL_SYS_CLOCK_NANOSLEEP] = z_mrsh_sys_clock_nanosleep, + [K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK] = z_mrsh_z_sys_mutex_kernel_lock, + [K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK] = z_mrsh_z_sys_mutex_kernel_unlock, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0] = z_mrsh_z_log_msg_simple_create_0, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1] = z_mrsh_z_log_msg_simple_create_1, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2] = z_mrsh_z_log_msg_simple_create_2, + [K_SYSCALL_Z_LOG_MSG_STATIC_CREATE] = z_mrsh_z_log_msg_static_create, + [K_SYSCALL_LOG_PANIC] = z_mrsh_log_panic, + [K_SYSCALL_LOG_PROCESS] = z_mrsh_log_process, + [K_SYSCALL_LOG_BUFFERED_CNT] = z_mrsh_log_buffered_cnt, + [K_SYSCALL_LOG_FILTER_SET] = z_mrsh_log_filter_set, + [K_SYSCALL_LOG_FRONTEND_FILTER_SET] = z_mrsh_log_frontend_filter_set, + [K_SYSCALL_CAN_GET_CORE_CLOCK] = z_mrsh_can_get_core_clock, + [K_SYSCALL_CAN_GET_BITRATE_MIN] = z_mrsh_can_get_bitrate_min, + [K_SYSCALL_CAN_GET_BITRATE_MAX] = z_mrsh_can_get_bitrate_max, + [K_SYSCALL_CAN_GET_TIMING_MIN] = z_mrsh_can_get_timing_min, + [K_SYSCALL_CAN_GET_TIMING_MAX] = z_mrsh_can_get_timing_max, + [K_SYSCALL_CAN_CALC_TIMING] = z_mrsh_can_calc_timing, + [K_SYSCALL_CAN_GET_TIMING_DATA_MIN] = z_mrsh_can_get_timing_data_min, + [K_SYSCALL_CAN_GET_TIMING_DATA_MAX] = z_mrsh_can_get_timing_data_max, + [K_SYSCALL_CAN_CALC_TIMING_DATA] = z_mrsh_can_calc_timing_data, + [K_SYSCALL_CAN_SET_TIMING_DATA] = z_mrsh_can_set_timing_data, + [K_SYSCALL_CAN_SET_BITRATE_DATA] = z_mrsh_can_set_bitrate_data, + [K_SYSCALL_CAN_SET_TIMING] = z_mrsh_can_set_timing, + [K_SYSCALL_CAN_GET_CAPABILITIES] = z_mrsh_can_get_capabilities, + [K_SYSCALL_CAN_GET_TRANSCEIVER] = z_mrsh_can_get_transceiver, + [K_SYSCALL_CAN_START] = z_mrsh_can_start, + [K_SYSCALL_CAN_STOP] = z_mrsh_can_stop, + [K_SYSCALL_CAN_SET_MODE] = z_mrsh_can_set_mode, + [K_SYSCALL_CAN_GET_MODE] = z_mrsh_can_get_mode, + [K_SYSCALL_CAN_SET_BITRATE] = z_mrsh_can_set_bitrate, + [K_SYSCALL_CAN_SEND] = z_mrsh_can_send, + [K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ] = z_mrsh_can_add_rx_filter_msgq, + [K_SYSCALL_CAN_REMOVE_RX_FILTER] = z_mrsh_can_remove_rx_filter, + [K_SYSCALL_CAN_GET_MAX_FILTERS] = z_mrsh_can_get_max_filters, + [K_SYSCALL_CAN_GET_STATE] = z_mrsh_can_get_state, + [K_SYSCALL_CAN_RECOVER] = z_mrsh_can_recover, + [K_SYSCALL_CAN_STATS_GET_BIT_ERRORS] = z_mrsh_can_stats_get_bit_errors, + [K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS] = z_mrsh_can_stats_get_bit0_errors, + [K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS] = z_mrsh_can_stats_get_bit1_errors, + [K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS] = z_mrsh_can_stats_get_stuff_errors, + [K_SYSCALL_CAN_STATS_GET_CRC_ERRORS] = z_mrsh_can_stats_get_crc_errors, + [K_SYSCALL_CAN_STATS_GET_FORM_ERRORS] = z_mrsh_can_stats_get_form_errors, + [K_SYSCALL_CAN_STATS_GET_ACK_ERRORS] = z_mrsh_can_stats_get_ack_errors, + [K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS] = z_mrsh_can_stats_get_rx_overruns, + [K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE] = z_mrsh_gpio_pin_interrupt_configure, + [K_SYSCALL_GPIO_PIN_CONFIGURE] = z_mrsh_gpio_pin_configure, + [K_SYSCALL_GPIO_PORT_GET_DIRECTION] = z_mrsh_gpio_port_get_direction, + [K_SYSCALL_GPIO_PIN_GET_CONFIG] = z_mrsh_gpio_pin_get_config, + [K_SYSCALL_GPIO_PORT_GET_RAW] = z_mrsh_gpio_port_get_raw, + [K_SYSCALL_GPIO_PORT_SET_MASKED_RAW] = z_mrsh_gpio_port_set_masked_raw, + [K_SYSCALL_GPIO_PORT_SET_BITS_RAW] = z_mrsh_gpio_port_set_bits_raw, + [K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW] = z_mrsh_gpio_port_clear_bits_raw, + [K_SYSCALL_GPIO_PORT_TOGGLE_BITS] = z_mrsh_gpio_port_toggle_bits, + [K_SYSCALL_GPIO_GET_PENDING_INT] = z_mrsh_gpio_get_pending_int, + [K_SYSCALL_HWINFO_GET_DEVICE_ID] = z_mrsh_hwinfo_get_device_id, + [K_SYSCALL_HWINFO_GET_DEVICE_EUI64] = z_mrsh_hwinfo_get_device_eui64, + [K_SYSCALL_HWINFO_GET_RESET_CAUSE] = z_mrsh_hwinfo_get_reset_cause, + [K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE] = z_mrsh_hwinfo_clear_reset_cause, + [K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE] = z_mrsh_hwinfo_get_supported_reset_cause, + [K_SYSCALL_RESET_STATUS] = z_mrsh_reset_status, + [K_SYSCALL_RESET_LINE_ASSERT] = z_mrsh_reset_line_assert, + [K_SYSCALL_RESET_LINE_DEASSERT] = z_mrsh_reset_line_deassert, + [K_SYSCALL_RESET_LINE_TOGGLE] = z_mrsh_reset_line_toggle, + [K_SYSCALL_UART_ERR_CHECK] = z_mrsh_uart_err_check, + [K_SYSCALL_UART_POLL_IN] = z_mrsh_uart_poll_in, + [K_SYSCALL_UART_POLL_IN_U16] = z_mrsh_uart_poll_in_u16, + [K_SYSCALL_UART_POLL_OUT] = z_mrsh_uart_poll_out, + [K_SYSCALL_UART_POLL_OUT_U16] = z_mrsh_uart_poll_out_u16, + [K_SYSCALL_UART_CONFIGURE] = z_mrsh_uart_configure, + [K_SYSCALL_UART_CONFIG_GET] = z_mrsh_uart_config_get, + [K_SYSCALL_UART_IRQ_TX_ENABLE] = z_mrsh_uart_irq_tx_enable, + [K_SYSCALL_UART_IRQ_TX_DISABLE] = z_mrsh_uart_irq_tx_disable, + [K_SYSCALL_UART_IRQ_RX_ENABLE] = z_mrsh_uart_irq_rx_enable, + [K_SYSCALL_UART_IRQ_RX_DISABLE] = z_mrsh_uart_irq_rx_disable, + [K_SYSCALL_UART_IRQ_ERR_ENABLE] = z_mrsh_uart_irq_err_enable, + [K_SYSCALL_UART_IRQ_ERR_DISABLE] = z_mrsh_uart_irq_err_disable, + [K_SYSCALL_UART_IRQ_IS_PENDING] = z_mrsh_uart_irq_is_pending, + [K_SYSCALL_UART_IRQ_UPDATE] = z_mrsh_uart_irq_update, + [K_SYSCALL_UART_TX] = z_mrsh_uart_tx, + [K_SYSCALL_UART_TX_U16] = z_mrsh_uart_tx_u16, + [K_SYSCALL_UART_TX_ABORT] = z_mrsh_uart_tx_abort, + [K_SYSCALL_UART_RX_ENABLE] = z_mrsh_uart_rx_enable, + [K_SYSCALL_UART_RX_ENABLE_U16] = z_mrsh_uart_rx_enable_u16, + [K_SYSCALL_UART_RX_DISABLE] = z_mrsh_uart_rx_disable, + [K_SYSCALL_UART_LINE_CTRL_SET] = z_mrsh_uart_line_ctrl_set, + [K_SYSCALL_UART_LINE_CTRL_GET] = z_mrsh_uart_line_ctrl_get, + [K_SYSCALL_UART_DRV_CMD] = z_mrsh_uart_drv_cmd, + [K_SYSCALL_DEVICE_GET_BINDING] = z_mrsh_device_get_binding, + [K_SYSCALL_DEVICE_IS_READY] = z_mrsh_device_is_ready, + [K_SYSCALL_DEVICE_INIT] = z_mrsh_device_init, + [K_SYSCALL_DEVICE_DEINIT] = z_mrsh_device_deinit, + [K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL] = z_mrsh_device_get_by_dt_nodelabel, + [K_SYSCALL_K_THREAD_STACK_ALLOC] = z_mrsh_k_thread_stack_alloc, + [K_SYSCALL_K_THREAD_STACK_FREE] = z_mrsh_k_thread_stack_free, + [K_SYSCALL_K_THREAD_CREATE] = z_mrsh_k_thread_create, + [K_SYSCALL_K_THREAD_STACK_SPACE_GET] = z_mrsh_k_thread_stack_space_get, + [K_SYSCALL_K_THREAD_JOIN] = z_mrsh_k_thread_join, + [K_SYSCALL_K_SLEEP] = z_mrsh_k_sleep, + [K_SYSCALL_K_USLEEP] = z_mrsh_k_usleep, + [K_SYSCALL_K_BUSY_WAIT] = z_mrsh_k_busy_wait, + [K_SYSCALL_K_YIELD] = z_mrsh_k_yield, + [K_SYSCALL_K_WAKEUP] = z_mrsh_k_wakeup, + [K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY] = z_mrsh_k_sched_current_thread_query, + [K_SYSCALL_K_THREAD_ABORT] = z_mrsh_k_thread_abort, + [K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS] = z_mrsh_k_thread_timeout_expires_ticks, + [K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS] = z_mrsh_k_thread_timeout_remaining_ticks, + [K_SYSCALL_K_THREAD_PRIORITY_GET] = z_mrsh_k_thread_priority_get, + [K_SYSCALL_K_THREAD_PRIORITY_SET] = z_mrsh_k_thread_priority_set, + [K_SYSCALL_K_THREAD_DEADLINE_SET] = z_mrsh_k_thread_deadline_set, + [K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET] = z_mrsh_k_thread_absolute_deadline_set, + [K_SYSCALL_K_RESCHEDULE] = z_mrsh_k_reschedule, + [K_SYSCALL_K_THREAD_SUSPEND] = z_mrsh_k_thread_suspend, + [K_SYSCALL_K_THREAD_RESUME] = z_mrsh_k_thread_resume, + [K_SYSCALL_K_IS_PREEMPT_THREAD] = z_mrsh_k_is_preempt_thread, + [K_SYSCALL_K_THREAD_CUSTOM_DATA_SET] = z_mrsh_k_thread_custom_data_set, + [K_SYSCALL_K_THREAD_CUSTOM_DATA_GET] = z_mrsh_k_thread_custom_data_get, + [K_SYSCALL_K_THREAD_NAME_SET] = z_mrsh_k_thread_name_set, + [K_SYSCALL_K_THREAD_NAME_COPY] = z_mrsh_k_thread_name_copy, + [K_SYSCALL_K_TIMER_START] = z_mrsh_k_timer_start, + [K_SYSCALL_K_TIMER_STOP] = z_mrsh_k_timer_stop, + [K_SYSCALL_K_TIMER_STATUS_GET] = z_mrsh_k_timer_status_get, + [K_SYSCALL_K_TIMER_STATUS_SYNC] = z_mrsh_k_timer_status_sync, + [K_SYSCALL_K_TIMER_EXPIRES_TICKS] = z_mrsh_k_timer_expires_ticks, + [K_SYSCALL_K_TIMER_REMAINING_TICKS] = z_mrsh_k_timer_remaining_ticks, + [K_SYSCALL_K_TIMER_USER_DATA_SET] = z_mrsh_k_timer_user_data_set, + [K_SYSCALL_K_TIMER_USER_DATA_GET] = z_mrsh_k_timer_user_data_get, + [K_SYSCALL_K_UPTIME_TICKS] = z_mrsh_k_uptime_ticks, + [K_SYSCALL_K_QUEUE_INIT] = z_mrsh_k_queue_init, + [K_SYSCALL_K_QUEUE_CANCEL_WAIT] = z_mrsh_k_queue_cancel_wait, + [K_SYSCALL_K_QUEUE_ALLOC_APPEND] = z_mrsh_k_queue_alloc_append, + [K_SYSCALL_K_QUEUE_ALLOC_PREPEND] = z_mrsh_k_queue_alloc_prepend, + [K_SYSCALL_K_QUEUE_GET] = z_mrsh_k_queue_get, + [K_SYSCALL_K_QUEUE_IS_EMPTY] = z_mrsh_k_queue_is_empty, + [K_SYSCALL_K_QUEUE_PEEK_HEAD] = z_mrsh_k_queue_peek_head, + [K_SYSCALL_K_QUEUE_PEEK_TAIL] = z_mrsh_k_queue_peek_tail, + [K_SYSCALL_K_FUTEX_WAIT] = z_mrsh_k_futex_wait, + [K_SYSCALL_K_FUTEX_WAKE] = z_mrsh_k_futex_wake, + [K_SYSCALL_K_EVENT_INIT] = z_mrsh_k_event_init, + [K_SYSCALL_K_EVENT_POST] = z_mrsh_k_event_post, + [K_SYSCALL_K_EVENT_SET] = z_mrsh_k_event_set, + [K_SYSCALL_K_EVENT_SET_MASKED] = z_mrsh_k_event_set_masked, + [K_SYSCALL_K_EVENT_CLEAR] = z_mrsh_k_event_clear, + [K_SYSCALL_K_EVENT_WAIT] = z_mrsh_k_event_wait, + [K_SYSCALL_K_EVENT_WAIT_ALL] = z_mrsh_k_event_wait_all, + [K_SYSCALL_K_EVENT_WAIT_SAFE] = z_mrsh_k_event_wait_safe, + [K_SYSCALL_K_EVENT_WAIT_ALL_SAFE] = z_mrsh_k_event_wait_all_safe, + [K_SYSCALL_K_STACK_ALLOC_INIT] = z_mrsh_k_stack_alloc_init, + [K_SYSCALL_K_STACK_PUSH] = z_mrsh_k_stack_push, + [K_SYSCALL_K_STACK_POP] = z_mrsh_k_stack_pop, + [K_SYSCALL_K_MUTEX_INIT] = z_mrsh_k_mutex_init, + [K_SYSCALL_K_MUTEX_LOCK] = z_mrsh_k_mutex_lock, + [K_SYSCALL_K_MUTEX_UNLOCK] = z_mrsh_k_mutex_unlock, + [K_SYSCALL_K_CONDVAR_INIT] = z_mrsh_k_condvar_init, + [K_SYSCALL_K_CONDVAR_SIGNAL] = z_mrsh_k_condvar_signal, + [K_SYSCALL_K_CONDVAR_BROADCAST] = z_mrsh_k_condvar_broadcast, + [K_SYSCALL_K_CONDVAR_WAIT] = z_mrsh_k_condvar_wait, + [K_SYSCALL_K_SEM_INIT] = z_mrsh_k_sem_init, + [K_SYSCALL_K_SEM_TAKE] = z_mrsh_k_sem_take, + [K_SYSCALL_K_SEM_GIVE] = z_mrsh_k_sem_give, + [K_SYSCALL_K_SEM_RESET] = z_mrsh_k_sem_reset, + [K_SYSCALL_K_SEM_COUNT_GET] = z_mrsh_k_sem_count_get, + [K_SYSCALL_K_MSGQ_ALLOC_INIT] = z_mrsh_k_msgq_alloc_init, + [K_SYSCALL_K_MSGQ_PUT] = z_mrsh_k_msgq_put, + [K_SYSCALL_K_MSGQ_PUT_FRONT] = z_mrsh_k_msgq_put_front, + [K_SYSCALL_K_MSGQ_GET] = z_mrsh_k_msgq_get, + [K_SYSCALL_K_MSGQ_PEEK] = z_mrsh_k_msgq_peek, + [K_SYSCALL_K_MSGQ_PEEK_AT] = z_mrsh_k_msgq_peek_at, + [K_SYSCALL_K_MSGQ_PURGE] = z_mrsh_k_msgq_purge, + [K_SYSCALL_K_MSGQ_NUM_FREE_GET] = z_mrsh_k_msgq_num_free_get, + [K_SYSCALL_K_MSGQ_GET_ATTRS] = z_mrsh_k_msgq_get_attrs, + [K_SYSCALL_K_MSGQ_NUM_USED_GET] = z_mrsh_k_msgq_num_used_get, + [K_SYSCALL_K_PIPE_INIT] = z_mrsh_k_pipe_init, + [K_SYSCALL_K_PIPE_WRITE] = z_mrsh_k_pipe_write, + [K_SYSCALL_K_PIPE_READ] = z_mrsh_k_pipe_read, + [K_SYSCALL_K_PIPE_RESET] = z_mrsh_k_pipe_reset, + [K_SYSCALL_K_PIPE_CLOSE] = z_mrsh_k_pipe_close, + [K_SYSCALL_K_POLL] = z_mrsh_k_poll, + [K_SYSCALL_K_POLL_SIGNAL_INIT] = z_mrsh_k_poll_signal_init, + [K_SYSCALL_K_POLL_SIGNAL_RESET] = z_mrsh_k_poll_signal_reset, + [K_SYSCALL_K_POLL_SIGNAL_CHECK] = z_mrsh_k_poll_signal_check, + [K_SYSCALL_K_POLL_SIGNAL_RAISE] = z_mrsh_k_poll_signal_raise, + [K_SYSCALL_K_STR_OUT] = z_mrsh_k_str_out, + [K_SYSCALL_K_FLOAT_DISABLE] = z_mrsh_k_float_disable, + [K_SYSCALL_K_FLOAT_ENABLE] = z_mrsh_k_float_enable, + [K_SYSCALL_K_OBJECT_ACCESS_GRANT] = z_mrsh_k_object_access_grant, + [K_SYSCALL_K_OBJECT_RELEASE] = z_mrsh_k_object_release, + [K_SYSCALL_K_OBJECT_ALLOC] = z_mrsh_k_object_alloc, + [K_SYSCALL_K_OBJECT_ALLOC_SIZE] = z_mrsh_k_object_alloc_size, + [K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET] = z_mrsh_sys_clock_hw_cycles_per_sec_runtime_get, + [K_SYSCALL_ATOMIC_CAS] = z_mrsh_atomic_cas, + [K_SYSCALL_ATOMIC_PTR_CAS] = z_mrsh_atomic_ptr_cas, + [K_SYSCALL_ATOMIC_ADD] = z_mrsh_atomic_add, + [K_SYSCALL_ATOMIC_SUB] = z_mrsh_atomic_sub, + [K_SYSCALL_ATOMIC_SET] = z_mrsh_atomic_set, + [K_SYSCALL_ATOMIC_PTR_SET] = z_mrsh_atomic_ptr_set, + [K_SYSCALL_ATOMIC_OR] = z_mrsh_atomic_or, + [K_SYSCALL_ATOMIC_XOR] = z_mrsh_atomic_xor, + [K_SYSCALL_ATOMIC_AND] = z_mrsh_atomic_and, + [K_SYSCALL_ATOMIC_NAND] = z_mrsh_atomic_nand, + [K_SYSCALL_BAD] = handler_bad_syscall +}; diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_exports_llext.c b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_exports_llext.c new file mode 100644 index 0000000..2ff69f2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_exports_llext.c @@ -0,0 +1,423 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +/* + * Export the implementation functions of all emitted syscalls. + * Only the symbol names are relevant in this file, they will be + * resolved to the actual implementation functions by the linker. + */ + +/* Symbol declarations */ +extern void * const z_impl_atomic_add; +extern void * const z_impl_atomic_and; +extern void * const z_impl_atomic_cas; +extern void * const z_impl_atomic_nand; +extern void * const z_impl_atomic_or; +extern void * const z_impl_atomic_ptr_cas; +extern void * const z_impl_atomic_ptr_set; +extern void * const z_impl_atomic_set; +extern void * const z_impl_atomic_sub; +extern void * const z_impl_atomic_xor; +extern void * const z_impl_can_add_rx_filter_msgq; +extern void * const z_impl_can_calc_timing; +extern void * const z_impl_can_calc_timing_data; +extern void * const z_impl_can_get_bitrate_max; +extern void * const z_impl_can_get_bitrate_min; +extern void * const z_impl_can_get_capabilities; +extern void * const z_impl_can_get_core_clock; +extern void * const z_impl_can_get_max_filters; +extern void * const z_impl_can_get_mode; +extern void * const z_impl_can_get_state; +extern void * const z_impl_can_get_timing_data_max; +extern void * const z_impl_can_get_timing_data_min; +extern void * const z_impl_can_get_timing_max; +extern void * const z_impl_can_get_timing_min; +extern void * const z_impl_can_get_transceiver; +extern void * const z_impl_can_recover; +extern void * const z_impl_can_remove_rx_filter; +extern void * const z_impl_can_send; +extern void * const z_impl_can_set_bitrate; +extern void * const z_impl_can_set_bitrate_data; +extern void * const z_impl_can_set_mode; +extern void * const z_impl_can_set_timing; +extern void * const z_impl_can_set_timing_data; +extern void * const z_impl_can_start; +extern void * const z_impl_can_stats_get_ack_errors; +extern void * const z_impl_can_stats_get_bit0_errors; +extern void * const z_impl_can_stats_get_bit1_errors; +extern void * const z_impl_can_stats_get_bit_errors; +extern void * const z_impl_can_stats_get_crc_errors; +extern void * const z_impl_can_stats_get_form_errors; +extern void * const z_impl_can_stats_get_rx_overruns; +extern void * const z_impl_can_stats_get_stuff_errors; +extern void * const z_impl_can_stop; +extern void * const z_impl_device_deinit; +extern void * const z_impl_device_get_binding; +extern void * const z_impl_device_get_by_dt_nodelabel; +extern void * const z_impl_device_init; +extern void * const z_impl_device_is_ready; +extern void * const z_impl_gpio_get_pending_int; +extern void * const z_impl_gpio_pin_configure; +extern void * const z_impl_gpio_pin_get_config; +extern void * const z_impl_gpio_pin_interrupt_configure; +extern void * const z_impl_gpio_port_clear_bits_raw; +extern void * const z_impl_gpio_port_get_direction; +extern void * const z_impl_gpio_port_get_raw; +extern void * const z_impl_gpio_port_set_bits_raw; +extern void * const z_impl_gpio_port_set_masked_raw; +extern void * const z_impl_gpio_port_toggle_bits; +extern void * const z_impl_hwinfo_clear_reset_cause; +extern void * const z_impl_hwinfo_get_device_eui64; +extern void * const z_impl_hwinfo_get_device_id; +extern void * const z_impl_hwinfo_get_reset_cause; +extern void * const z_impl_hwinfo_get_supported_reset_cause; +extern void * const z_impl_k_busy_wait; +extern void * const z_impl_k_condvar_broadcast; +extern void * const z_impl_k_condvar_init; +extern void * const z_impl_k_condvar_signal; +extern void * const z_impl_k_condvar_wait; +extern void * const z_impl_k_event_clear; +extern void * const z_impl_k_event_init; +extern void * const z_impl_k_event_post; +extern void * const z_impl_k_event_set; +extern void * const z_impl_k_event_set_masked; +extern void * const z_impl_k_event_wait; +extern void * const z_impl_k_event_wait_all; +extern void * const z_impl_k_event_wait_all_safe; +extern void * const z_impl_k_event_wait_safe; +extern void * const z_impl_k_float_disable; +extern void * const z_impl_k_float_enable; +extern void * const z_impl_k_futex_wait; +extern void * const z_impl_k_futex_wake; +extern void * const z_impl_k_is_preempt_thread; +extern void * const z_impl_k_msgq_alloc_init; +extern void * const z_impl_k_msgq_get; +extern void * const z_impl_k_msgq_get_attrs; +extern void * const z_impl_k_msgq_num_free_get; +extern void * const z_impl_k_msgq_num_used_get; +extern void * const z_impl_k_msgq_peek; +extern void * const z_impl_k_msgq_peek_at; +extern void * const z_impl_k_msgq_purge; +extern void * const z_impl_k_msgq_put; +extern void * const z_impl_k_msgq_put_front; +extern void * const z_impl_k_mutex_init; +extern void * const z_impl_k_mutex_lock; +extern void * const z_impl_k_mutex_unlock; +extern void * const z_impl_k_object_access_grant; +extern void * const z_impl_k_object_alloc; +extern void * const z_impl_k_object_alloc_size; +extern void * const z_impl_k_object_release; +extern void * const z_impl_k_pipe_close; +extern void * const z_impl_k_pipe_init; +extern void * const z_impl_k_pipe_read; +extern void * const z_impl_k_pipe_reset; +extern void * const z_impl_k_pipe_write; +extern void * const z_impl_k_poll; +extern void * const z_impl_k_poll_signal_check; +extern void * const z_impl_k_poll_signal_init; +extern void * const z_impl_k_poll_signal_raise; +extern void * const z_impl_k_poll_signal_reset; +extern void * const z_impl_k_queue_alloc_append; +extern void * const z_impl_k_queue_alloc_prepend; +extern void * const z_impl_k_queue_cancel_wait; +extern void * const z_impl_k_queue_get; +extern void * const z_impl_k_queue_init; +extern void * const z_impl_k_queue_is_empty; +extern void * const z_impl_k_queue_peek_head; +extern void * const z_impl_k_queue_peek_tail; +extern void * const z_impl_k_reschedule; +extern void * const z_impl_k_sched_current_thread_query; +extern void * const z_impl_k_sem_count_get; +extern void * const z_impl_k_sem_give; +extern void * const z_impl_k_sem_init; +extern void * const z_impl_k_sem_reset; +extern void * const z_impl_k_sem_take; +extern void * const z_impl_k_sleep; +extern void * const z_impl_k_stack_alloc_init; +extern void * const z_impl_k_stack_pop; +extern void * const z_impl_k_stack_push; +extern void * const z_impl_k_str_out; +extern void * const z_impl_k_thread_abort; +extern void * const z_impl_k_thread_absolute_deadline_set; +extern void * const z_impl_k_thread_create; +extern void * const z_impl_k_thread_custom_data_get; +extern void * const z_impl_k_thread_custom_data_set; +extern void * const z_impl_k_thread_deadline_set; +extern void * const z_impl_k_thread_join; +extern void * const z_impl_k_thread_name_copy; +extern void * const z_impl_k_thread_name_set; +extern void * const z_impl_k_thread_priority_get; +extern void * const z_impl_k_thread_priority_set; +extern void * const z_impl_k_thread_resume; +extern void * const z_impl_k_thread_stack_alloc; +extern void * const z_impl_k_thread_stack_free; +extern void * const z_impl_k_thread_stack_space_get; +extern void * const z_impl_k_thread_suspend; +extern void * const z_impl_k_thread_timeout_expires_ticks; +extern void * const z_impl_k_thread_timeout_remaining_ticks; +extern void * const z_impl_k_timer_expires_ticks; +extern void * const z_impl_k_timer_remaining_ticks; +extern void * const z_impl_k_timer_start; +extern void * const z_impl_k_timer_status_get; +extern void * const z_impl_k_timer_status_sync; +extern void * const z_impl_k_timer_stop; +extern void * const z_impl_k_timer_user_data_get; +extern void * const z_impl_k_timer_user_data_set; +extern void * const z_impl_k_uptime_ticks; +extern void * const z_impl_k_usleep; +extern void * const z_impl_k_wakeup; +extern void * const z_impl_k_yield; +extern void * const z_impl_log_buffered_cnt; +extern void * const z_impl_log_filter_set; +extern void * const z_impl_log_frontend_filter_set; +extern void * const z_impl_log_panic; +extern void * const z_impl_log_process; +extern void * const z_impl_reset_line_assert; +extern void * const z_impl_reset_line_deassert; +extern void * const z_impl_reset_line_toggle; +extern void * const z_impl_reset_status; +extern void * const z_impl_sys_clock_getrtoffset; +extern void * const z_impl_sys_clock_hw_cycles_per_sec_runtime_get; +extern void * const z_impl_sys_clock_nanosleep; +extern void * const z_impl_sys_clock_settime; +extern void * const z_impl_uart_config_get; +extern void * const z_impl_uart_configure; +extern void * const z_impl_uart_drv_cmd; +extern void * const z_impl_uart_err_check; +extern void * const z_impl_uart_irq_err_disable; +extern void * const z_impl_uart_irq_err_enable; +extern void * const z_impl_uart_irq_is_pending; +extern void * const z_impl_uart_irq_rx_disable; +extern void * const z_impl_uart_irq_rx_enable; +extern void * const z_impl_uart_irq_tx_disable; +extern void * const z_impl_uart_irq_tx_enable; +extern void * const z_impl_uart_irq_update; +extern void * const z_impl_uart_line_ctrl_get; +extern void * const z_impl_uart_line_ctrl_set; +extern void * const z_impl_uart_poll_in; +extern void * const z_impl_uart_poll_in_u16; +extern void * const z_impl_uart_poll_out; +extern void * const z_impl_uart_poll_out_u16; +extern void * const z_impl_uart_rx_disable; +extern void * const z_impl_uart_rx_enable; +extern void * const z_impl_uart_rx_enable_u16; +extern void * const z_impl_uart_tx; +extern void * const z_impl_uart_tx_abort; +extern void * const z_impl_uart_tx_u16; +extern void * const z_impl_z_log_msg_simple_create_0; +extern void * const z_impl_z_log_msg_simple_create_1; +extern void * const z_impl_z_log_msg_simple_create_2; +extern void * const z_impl_z_log_msg_static_create; +extern void * const z_impl_z_sys_mutex_kernel_lock; +extern void * const z_impl_z_sys_mutex_kernel_unlock; +extern void * const z_impl_zephyr_fputc; +extern void * const z_impl_zephyr_fwrite; +extern void * const z_impl_zephyr_read_stdin; +extern void * const z_impl_zephyr_write_stdout; + +/* Exported symbols */ +EXPORT_SYMBOL(z_impl_atomic_add); +EXPORT_SYMBOL(z_impl_atomic_and); +EXPORT_SYMBOL(z_impl_atomic_cas); +EXPORT_SYMBOL(z_impl_atomic_nand); +EXPORT_SYMBOL(z_impl_atomic_or); +EXPORT_SYMBOL(z_impl_atomic_ptr_cas); +EXPORT_SYMBOL(z_impl_atomic_ptr_set); +EXPORT_SYMBOL(z_impl_atomic_set); +EXPORT_SYMBOL(z_impl_atomic_sub); +EXPORT_SYMBOL(z_impl_atomic_xor); +EXPORT_SYMBOL(z_impl_can_add_rx_filter_msgq); +EXPORT_SYMBOL(z_impl_can_calc_timing); +EXPORT_SYMBOL(z_impl_can_calc_timing_data); +EXPORT_SYMBOL(z_impl_can_get_bitrate_max); +EXPORT_SYMBOL(z_impl_can_get_bitrate_min); +EXPORT_SYMBOL(z_impl_can_get_capabilities); +EXPORT_SYMBOL(z_impl_can_get_core_clock); +EXPORT_SYMBOL(z_impl_can_get_max_filters); +EXPORT_SYMBOL(z_impl_can_get_mode); +EXPORT_SYMBOL(z_impl_can_get_state); +EXPORT_SYMBOL(z_impl_can_get_timing_data_max); +EXPORT_SYMBOL(z_impl_can_get_timing_data_min); +EXPORT_SYMBOL(z_impl_can_get_timing_max); +EXPORT_SYMBOL(z_impl_can_get_timing_min); +EXPORT_SYMBOL(z_impl_can_get_transceiver); +EXPORT_SYMBOL(z_impl_can_recover); +EXPORT_SYMBOL(z_impl_can_remove_rx_filter); +EXPORT_SYMBOL(z_impl_can_send); +EXPORT_SYMBOL(z_impl_can_set_bitrate); +EXPORT_SYMBOL(z_impl_can_set_bitrate_data); +EXPORT_SYMBOL(z_impl_can_set_mode); +EXPORT_SYMBOL(z_impl_can_set_timing); +EXPORT_SYMBOL(z_impl_can_set_timing_data); +EXPORT_SYMBOL(z_impl_can_start); +EXPORT_SYMBOL(z_impl_can_stats_get_ack_errors); +EXPORT_SYMBOL(z_impl_can_stats_get_bit0_errors); +EXPORT_SYMBOL(z_impl_can_stats_get_bit1_errors); +EXPORT_SYMBOL(z_impl_can_stats_get_bit_errors); +EXPORT_SYMBOL(z_impl_can_stats_get_crc_errors); +EXPORT_SYMBOL(z_impl_can_stats_get_form_errors); +EXPORT_SYMBOL(z_impl_can_stats_get_rx_overruns); +EXPORT_SYMBOL(z_impl_can_stats_get_stuff_errors); +EXPORT_SYMBOL(z_impl_can_stop); +EXPORT_SYMBOL(z_impl_device_deinit); +EXPORT_SYMBOL(z_impl_device_get_binding); +EXPORT_SYMBOL(z_impl_device_get_by_dt_nodelabel); +EXPORT_SYMBOL(z_impl_device_init); +EXPORT_SYMBOL(z_impl_device_is_ready); +EXPORT_SYMBOL(z_impl_gpio_get_pending_int); +EXPORT_SYMBOL(z_impl_gpio_pin_configure); +EXPORT_SYMBOL(z_impl_gpio_pin_get_config); +EXPORT_SYMBOL(z_impl_gpio_pin_interrupt_configure); +EXPORT_SYMBOL(z_impl_gpio_port_clear_bits_raw); +EXPORT_SYMBOL(z_impl_gpio_port_get_direction); +EXPORT_SYMBOL(z_impl_gpio_port_get_raw); +EXPORT_SYMBOL(z_impl_gpio_port_set_bits_raw); +EXPORT_SYMBOL(z_impl_gpio_port_set_masked_raw); +EXPORT_SYMBOL(z_impl_gpio_port_toggle_bits); +EXPORT_SYMBOL(z_impl_hwinfo_clear_reset_cause); +EXPORT_SYMBOL(z_impl_hwinfo_get_device_eui64); +EXPORT_SYMBOL(z_impl_hwinfo_get_device_id); +EXPORT_SYMBOL(z_impl_hwinfo_get_reset_cause); +EXPORT_SYMBOL(z_impl_hwinfo_get_supported_reset_cause); +EXPORT_SYMBOL(z_impl_k_busy_wait); +EXPORT_SYMBOL(z_impl_k_condvar_broadcast); +EXPORT_SYMBOL(z_impl_k_condvar_init); +EXPORT_SYMBOL(z_impl_k_condvar_signal); +EXPORT_SYMBOL(z_impl_k_condvar_wait); +EXPORT_SYMBOL(z_impl_k_event_clear); +EXPORT_SYMBOL(z_impl_k_event_init); +EXPORT_SYMBOL(z_impl_k_event_post); +EXPORT_SYMBOL(z_impl_k_event_set); +EXPORT_SYMBOL(z_impl_k_event_set_masked); +EXPORT_SYMBOL(z_impl_k_event_wait); +EXPORT_SYMBOL(z_impl_k_event_wait_all); +EXPORT_SYMBOL(z_impl_k_event_wait_all_safe); +EXPORT_SYMBOL(z_impl_k_event_wait_safe); +EXPORT_SYMBOL(z_impl_k_float_disable); +EXPORT_SYMBOL(z_impl_k_float_enable); +EXPORT_SYMBOL(z_impl_k_futex_wait); +EXPORT_SYMBOL(z_impl_k_futex_wake); +EXPORT_SYMBOL(z_impl_k_is_preempt_thread); +EXPORT_SYMBOL(z_impl_k_msgq_alloc_init); +EXPORT_SYMBOL(z_impl_k_msgq_get); +EXPORT_SYMBOL(z_impl_k_msgq_get_attrs); +EXPORT_SYMBOL(z_impl_k_msgq_num_free_get); +EXPORT_SYMBOL(z_impl_k_msgq_num_used_get); +EXPORT_SYMBOL(z_impl_k_msgq_peek); +EXPORT_SYMBOL(z_impl_k_msgq_peek_at); +EXPORT_SYMBOL(z_impl_k_msgq_purge); +EXPORT_SYMBOL(z_impl_k_msgq_put); +EXPORT_SYMBOL(z_impl_k_msgq_put_front); +EXPORT_SYMBOL(z_impl_k_mutex_init); +EXPORT_SYMBOL(z_impl_k_mutex_lock); +EXPORT_SYMBOL(z_impl_k_mutex_unlock); +EXPORT_SYMBOL(z_impl_k_object_access_grant); +EXPORT_SYMBOL(z_impl_k_object_alloc); +EXPORT_SYMBOL(z_impl_k_object_alloc_size); +EXPORT_SYMBOL(z_impl_k_object_release); +EXPORT_SYMBOL(z_impl_k_pipe_close); +EXPORT_SYMBOL(z_impl_k_pipe_init); +EXPORT_SYMBOL(z_impl_k_pipe_read); +EXPORT_SYMBOL(z_impl_k_pipe_reset); +EXPORT_SYMBOL(z_impl_k_pipe_write); +EXPORT_SYMBOL(z_impl_k_poll); +EXPORT_SYMBOL(z_impl_k_poll_signal_check); +EXPORT_SYMBOL(z_impl_k_poll_signal_init); +EXPORT_SYMBOL(z_impl_k_poll_signal_raise); +EXPORT_SYMBOL(z_impl_k_poll_signal_reset); +EXPORT_SYMBOL(z_impl_k_queue_alloc_append); +EXPORT_SYMBOL(z_impl_k_queue_alloc_prepend); +EXPORT_SYMBOL(z_impl_k_queue_cancel_wait); +EXPORT_SYMBOL(z_impl_k_queue_get); +EXPORT_SYMBOL(z_impl_k_queue_init); +EXPORT_SYMBOL(z_impl_k_queue_is_empty); +EXPORT_SYMBOL(z_impl_k_queue_peek_head); +EXPORT_SYMBOL(z_impl_k_queue_peek_tail); +EXPORT_SYMBOL(z_impl_k_reschedule); +EXPORT_SYMBOL(z_impl_k_sched_current_thread_query); +EXPORT_SYMBOL(z_impl_k_sem_count_get); +EXPORT_SYMBOL(z_impl_k_sem_give); +EXPORT_SYMBOL(z_impl_k_sem_init); +EXPORT_SYMBOL(z_impl_k_sem_reset); +EXPORT_SYMBOL(z_impl_k_sem_take); +EXPORT_SYMBOL(z_impl_k_sleep); +EXPORT_SYMBOL(z_impl_k_stack_alloc_init); +EXPORT_SYMBOL(z_impl_k_stack_pop); +EXPORT_SYMBOL(z_impl_k_stack_push); +EXPORT_SYMBOL(z_impl_k_str_out); +EXPORT_SYMBOL(z_impl_k_thread_abort); +EXPORT_SYMBOL(z_impl_k_thread_absolute_deadline_set); +EXPORT_SYMBOL(z_impl_k_thread_create); +EXPORT_SYMBOL(z_impl_k_thread_custom_data_get); +EXPORT_SYMBOL(z_impl_k_thread_custom_data_set); +EXPORT_SYMBOL(z_impl_k_thread_deadline_set); +EXPORT_SYMBOL(z_impl_k_thread_join); +EXPORT_SYMBOL(z_impl_k_thread_name_copy); +EXPORT_SYMBOL(z_impl_k_thread_name_set); +EXPORT_SYMBOL(z_impl_k_thread_priority_get); +EXPORT_SYMBOL(z_impl_k_thread_priority_set); +EXPORT_SYMBOL(z_impl_k_thread_resume); +EXPORT_SYMBOL(z_impl_k_thread_stack_alloc); +EXPORT_SYMBOL(z_impl_k_thread_stack_free); +EXPORT_SYMBOL(z_impl_k_thread_stack_space_get); +EXPORT_SYMBOL(z_impl_k_thread_suspend); +EXPORT_SYMBOL(z_impl_k_thread_timeout_expires_ticks); +EXPORT_SYMBOL(z_impl_k_thread_timeout_remaining_ticks); +EXPORT_SYMBOL(z_impl_k_timer_expires_ticks); +EXPORT_SYMBOL(z_impl_k_timer_remaining_ticks); +EXPORT_SYMBOL(z_impl_k_timer_start); +EXPORT_SYMBOL(z_impl_k_timer_status_get); +EXPORT_SYMBOL(z_impl_k_timer_status_sync); +EXPORT_SYMBOL(z_impl_k_timer_stop); +EXPORT_SYMBOL(z_impl_k_timer_user_data_get); +EXPORT_SYMBOL(z_impl_k_timer_user_data_set); +EXPORT_SYMBOL(z_impl_k_uptime_ticks); +EXPORT_SYMBOL(z_impl_k_usleep); +EXPORT_SYMBOL(z_impl_k_wakeup); +EXPORT_SYMBOL(z_impl_k_yield); +EXPORT_SYMBOL(z_impl_log_buffered_cnt); +EXPORT_SYMBOL(z_impl_log_filter_set); +EXPORT_SYMBOL(z_impl_log_frontend_filter_set); +EXPORT_SYMBOL(z_impl_log_panic); +EXPORT_SYMBOL(z_impl_log_process); +EXPORT_SYMBOL(z_impl_reset_line_assert); +EXPORT_SYMBOL(z_impl_reset_line_deassert); +EXPORT_SYMBOL(z_impl_reset_line_toggle); +EXPORT_SYMBOL(z_impl_reset_status); +EXPORT_SYMBOL(z_impl_sys_clock_getrtoffset); +EXPORT_SYMBOL(z_impl_sys_clock_hw_cycles_per_sec_runtime_get); +EXPORT_SYMBOL(z_impl_sys_clock_nanosleep); +EXPORT_SYMBOL(z_impl_sys_clock_settime); +EXPORT_SYMBOL(z_impl_uart_config_get); +EXPORT_SYMBOL(z_impl_uart_configure); +EXPORT_SYMBOL(z_impl_uart_drv_cmd); +EXPORT_SYMBOL(z_impl_uart_err_check); +EXPORT_SYMBOL(z_impl_uart_irq_err_disable); +EXPORT_SYMBOL(z_impl_uart_irq_err_enable); +EXPORT_SYMBOL(z_impl_uart_irq_is_pending); +EXPORT_SYMBOL(z_impl_uart_irq_rx_disable); +EXPORT_SYMBOL(z_impl_uart_irq_rx_enable); +EXPORT_SYMBOL(z_impl_uart_irq_tx_disable); +EXPORT_SYMBOL(z_impl_uart_irq_tx_enable); +EXPORT_SYMBOL(z_impl_uart_irq_update); +EXPORT_SYMBOL(z_impl_uart_line_ctrl_get); +EXPORT_SYMBOL(z_impl_uart_line_ctrl_set); +EXPORT_SYMBOL(z_impl_uart_poll_in); +EXPORT_SYMBOL(z_impl_uart_poll_in_u16); +EXPORT_SYMBOL(z_impl_uart_poll_out); +EXPORT_SYMBOL(z_impl_uart_poll_out_u16); +EXPORT_SYMBOL(z_impl_uart_rx_disable); +EXPORT_SYMBOL(z_impl_uart_rx_enable); +EXPORT_SYMBOL(z_impl_uart_rx_enable_u16); +EXPORT_SYMBOL(z_impl_uart_tx); +EXPORT_SYMBOL(z_impl_uart_tx_abort); +EXPORT_SYMBOL(z_impl_uart_tx_u16); +EXPORT_SYMBOL(z_impl_z_log_msg_simple_create_0); +EXPORT_SYMBOL(z_impl_z_log_msg_simple_create_1); +EXPORT_SYMBOL(z_impl_z_log_msg_simple_create_2); +EXPORT_SYMBOL(z_impl_z_log_msg_static_create); +EXPORT_SYMBOL(z_impl_z_sys_mutex_kernel_lock); +EXPORT_SYMBOL(z_impl_z_sys_mutex_kernel_unlock); +EXPORT_SYMBOL(z_impl_zephyr_fputc); +EXPORT_SYMBOL(z_impl_zephyr_fwrite); +EXPORT_SYMBOL(z_impl_zephyr_read_stdin); +EXPORT_SYMBOL(z_impl_zephyr_write_stdout); diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_list.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_list.h new file mode 100644 index 0000000..8506af3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscall_list.h @@ -0,0 +1,604 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef ZEPHYR_SYSCALL_LIST_H +#define ZEPHYR_SYSCALL_LIST_H + +#define K_SYSCALL_ATOMIC_ADD 0 +#define K_SYSCALL_ATOMIC_AND 1 +#define K_SYSCALL_ATOMIC_CAS 2 +#define K_SYSCALL_ATOMIC_NAND 3 +#define K_SYSCALL_ATOMIC_OR 4 +#define K_SYSCALL_ATOMIC_PTR_CAS 5 +#define K_SYSCALL_ATOMIC_PTR_SET 6 +#define K_SYSCALL_ATOMIC_SET 7 +#define K_SYSCALL_ATOMIC_SUB 8 +#define K_SYSCALL_ATOMIC_XOR 9 +#define K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ 10 +#define K_SYSCALL_CAN_CALC_TIMING 11 +#define K_SYSCALL_CAN_CALC_TIMING_DATA 12 +#define K_SYSCALL_CAN_GET_BITRATE_MAX 13 +#define K_SYSCALL_CAN_GET_BITRATE_MIN 14 +#define K_SYSCALL_CAN_GET_CAPABILITIES 15 +#define K_SYSCALL_CAN_GET_CORE_CLOCK 16 +#define K_SYSCALL_CAN_GET_MAX_FILTERS 17 +#define K_SYSCALL_CAN_GET_MODE 18 +#define K_SYSCALL_CAN_GET_STATE 19 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MAX 20 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MIN 21 +#define K_SYSCALL_CAN_GET_TIMING_MAX 22 +#define K_SYSCALL_CAN_GET_TIMING_MIN 23 +#define K_SYSCALL_CAN_GET_TRANSCEIVER 24 +#define K_SYSCALL_CAN_RECOVER 25 +#define K_SYSCALL_CAN_REMOVE_RX_FILTER 26 +#define K_SYSCALL_CAN_SEND 27 +#define K_SYSCALL_CAN_SET_BITRATE 28 +#define K_SYSCALL_CAN_SET_BITRATE_DATA 29 +#define K_SYSCALL_CAN_SET_MODE 30 +#define K_SYSCALL_CAN_SET_TIMING 31 +#define K_SYSCALL_CAN_SET_TIMING_DATA 32 +#define K_SYSCALL_CAN_START 33 +#define K_SYSCALL_CAN_STATS_GET_ACK_ERRORS 34 +#define K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS 35 +#define K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS 36 +#define K_SYSCALL_CAN_STATS_GET_BIT_ERRORS 37 +#define K_SYSCALL_CAN_STATS_GET_CRC_ERRORS 38 +#define K_SYSCALL_CAN_STATS_GET_FORM_ERRORS 39 +#define K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS 40 +#define K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS 41 +#define K_SYSCALL_CAN_STOP 42 +#define K_SYSCALL_DEVICE_DEINIT 43 +#define K_SYSCALL_DEVICE_GET_BINDING 44 +#define K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL 45 +#define K_SYSCALL_DEVICE_INIT 46 +#define K_SYSCALL_DEVICE_IS_READY 47 +#define K_SYSCALL_GPIO_GET_PENDING_INT 48 +#define K_SYSCALL_GPIO_PIN_CONFIGURE 49 +#define K_SYSCALL_GPIO_PIN_GET_CONFIG 50 +#define K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE 51 +#define K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW 52 +#define K_SYSCALL_GPIO_PORT_GET_DIRECTION 53 +#define K_SYSCALL_GPIO_PORT_GET_RAW 54 +#define K_SYSCALL_GPIO_PORT_SET_BITS_RAW 55 +#define K_SYSCALL_GPIO_PORT_SET_MASKED_RAW 56 +#define K_SYSCALL_GPIO_PORT_TOGGLE_BITS 57 +#define K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE 58 +#define K_SYSCALL_HWINFO_GET_DEVICE_EUI64 59 +#define K_SYSCALL_HWINFO_GET_DEVICE_ID 60 +#define K_SYSCALL_HWINFO_GET_RESET_CAUSE 61 +#define K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE 62 +#define K_SYSCALL_K_BUSY_WAIT 63 +#define K_SYSCALL_K_CONDVAR_BROADCAST 64 +#define K_SYSCALL_K_CONDVAR_INIT 65 +#define K_SYSCALL_K_CONDVAR_SIGNAL 66 +#define K_SYSCALL_K_CONDVAR_WAIT 67 +#define K_SYSCALL_K_EVENT_CLEAR 68 +#define K_SYSCALL_K_EVENT_INIT 69 +#define K_SYSCALL_K_EVENT_POST 70 +#define K_SYSCALL_K_EVENT_SET 71 +#define K_SYSCALL_K_EVENT_SET_MASKED 72 +#define K_SYSCALL_K_EVENT_WAIT 73 +#define K_SYSCALL_K_EVENT_WAIT_ALL 74 +#define K_SYSCALL_K_EVENT_WAIT_ALL_SAFE 75 +#define K_SYSCALL_K_EVENT_WAIT_SAFE 76 +#define K_SYSCALL_K_FLOAT_DISABLE 77 +#define K_SYSCALL_K_FLOAT_ENABLE 78 +#define K_SYSCALL_K_FUTEX_WAIT 79 +#define K_SYSCALL_K_FUTEX_WAKE 80 +#define K_SYSCALL_K_IS_PREEMPT_THREAD 81 +#define K_SYSCALL_K_MSGQ_ALLOC_INIT 82 +#define K_SYSCALL_K_MSGQ_GET 83 +#define K_SYSCALL_K_MSGQ_GET_ATTRS 84 +#define K_SYSCALL_K_MSGQ_NUM_FREE_GET 85 +#define K_SYSCALL_K_MSGQ_NUM_USED_GET 86 +#define K_SYSCALL_K_MSGQ_PEEK 87 +#define K_SYSCALL_K_MSGQ_PEEK_AT 88 +#define K_SYSCALL_K_MSGQ_PURGE 89 +#define K_SYSCALL_K_MSGQ_PUT 90 +#define K_SYSCALL_K_MSGQ_PUT_FRONT 91 +#define K_SYSCALL_K_MUTEX_INIT 92 +#define K_SYSCALL_K_MUTEX_LOCK 93 +#define K_SYSCALL_K_MUTEX_UNLOCK 94 +#define K_SYSCALL_K_OBJECT_ACCESS_GRANT 95 +#define K_SYSCALL_K_OBJECT_ALLOC 96 +#define K_SYSCALL_K_OBJECT_ALLOC_SIZE 97 +#define K_SYSCALL_K_OBJECT_RELEASE 98 +#define K_SYSCALL_K_PIPE_CLOSE 99 +#define K_SYSCALL_K_PIPE_INIT 100 +#define K_SYSCALL_K_PIPE_READ 101 +#define K_SYSCALL_K_PIPE_RESET 102 +#define K_SYSCALL_K_PIPE_WRITE 103 +#define K_SYSCALL_K_POLL 104 +#define K_SYSCALL_K_POLL_SIGNAL_CHECK 105 +#define K_SYSCALL_K_POLL_SIGNAL_INIT 106 +#define K_SYSCALL_K_POLL_SIGNAL_RAISE 107 +#define K_SYSCALL_K_POLL_SIGNAL_RESET 108 +#define K_SYSCALL_K_QUEUE_ALLOC_APPEND 109 +#define K_SYSCALL_K_QUEUE_ALLOC_PREPEND 110 +#define K_SYSCALL_K_QUEUE_CANCEL_WAIT 111 +#define K_SYSCALL_K_QUEUE_GET 112 +#define K_SYSCALL_K_QUEUE_INIT 113 +#define K_SYSCALL_K_QUEUE_IS_EMPTY 114 +#define K_SYSCALL_K_QUEUE_PEEK_HEAD 115 +#define K_SYSCALL_K_QUEUE_PEEK_TAIL 116 +#define K_SYSCALL_K_RESCHEDULE 117 +#define K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY 118 +#define K_SYSCALL_K_SEM_COUNT_GET 119 +#define K_SYSCALL_K_SEM_GIVE 120 +#define K_SYSCALL_K_SEM_INIT 121 +#define K_SYSCALL_K_SEM_RESET 122 +#define K_SYSCALL_K_SEM_TAKE 123 +#define K_SYSCALL_K_SLEEP 124 +#define K_SYSCALL_K_STACK_ALLOC_INIT 125 +#define K_SYSCALL_K_STACK_POP 126 +#define K_SYSCALL_K_STACK_PUSH 127 +#define K_SYSCALL_K_STR_OUT 128 +#define K_SYSCALL_K_THREAD_ABORT 129 +#define K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET 130 +#define K_SYSCALL_K_THREAD_CREATE 131 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_GET 132 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_SET 133 +#define K_SYSCALL_K_THREAD_DEADLINE_SET 134 +#define K_SYSCALL_K_THREAD_JOIN 135 +#define K_SYSCALL_K_THREAD_NAME_COPY 136 +#define K_SYSCALL_K_THREAD_NAME_SET 137 +#define K_SYSCALL_K_THREAD_PRIORITY_GET 138 +#define K_SYSCALL_K_THREAD_PRIORITY_SET 139 +#define K_SYSCALL_K_THREAD_RESUME 140 +#define K_SYSCALL_K_THREAD_STACK_ALLOC 141 +#define K_SYSCALL_K_THREAD_STACK_FREE 142 +#define K_SYSCALL_K_THREAD_STACK_SPACE_GET 143 +#define K_SYSCALL_K_THREAD_SUSPEND 144 +#define K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS 145 +#define K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS 146 +#define K_SYSCALL_K_TIMER_EXPIRES_TICKS 147 +#define K_SYSCALL_K_TIMER_REMAINING_TICKS 148 +#define K_SYSCALL_K_TIMER_START 149 +#define K_SYSCALL_K_TIMER_STATUS_GET 150 +#define K_SYSCALL_K_TIMER_STATUS_SYNC 151 +#define K_SYSCALL_K_TIMER_STOP 152 +#define K_SYSCALL_K_TIMER_USER_DATA_GET 153 +#define K_SYSCALL_K_TIMER_USER_DATA_SET 154 +#define K_SYSCALL_K_UPTIME_TICKS 155 +#define K_SYSCALL_K_USLEEP 156 +#define K_SYSCALL_K_WAKEUP 157 +#define K_SYSCALL_K_YIELD 158 +#define K_SYSCALL_LOG_BUFFERED_CNT 159 +#define K_SYSCALL_LOG_FILTER_SET 160 +#define K_SYSCALL_LOG_FRONTEND_FILTER_SET 161 +#define K_SYSCALL_LOG_PANIC 162 +#define K_SYSCALL_LOG_PROCESS 163 +#define K_SYSCALL_RESET_LINE_ASSERT 164 +#define K_SYSCALL_RESET_LINE_DEASSERT 165 +#define K_SYSCALL_RESET_LINE_TOGGLE 166 +#define K_SYSCALL_RESET_STATUS 167 +#define K_SYSCALL_SYS_CLOCK_GETRTOFFSET 168 +#define K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET 169 +#define K_SYSCALL_SYS_CLOCK_NANOSLEEP 170 +#define K_SYSCALL_SYS_CLOCK_SETTIME 171 +#define K_SYSCALL_UART_CONFIGURE 172 +#define K_SYSCALL_UART_CONFIG_GET 173 +#define K_SYSCALL_UART_DRV_CMD 174 +#define K_SYSCALL_UART_ERR_CHECK 175 +#define K_SYSCALL_UART_IRQ_ERR_DISABLE 176 +#define K_SYSCALL_UART_IRQ_ERR_ENABLE 177 +#define K_SYSCALL_UART_IRQ_IS_PENDING 178 +#define K_SYSCALL_UART_IRQ_RX_DISABLE 179 +#define K_SYSCALL_UART_IRQ_RX_ENABLE 180 +#define K_SYSCALL_UART_IRQ_TX_DISABLE 181 +#define K_SYSCALL_UART_IRQ_TX_ENABLE 182 +#define K_SYSCALL_UART_IRQ_UPDATE 183 +#define K_SYSCALL_UART_LINE_CTRL_GET 184 +#define K_SYSCALL_UART_LINE_CTRL_SET 185 +#define K_SYSCALL_UART_POLL_IN 186 +#define K_SYSCALL_UART_POLL_IN_U16 187 +#define K_SYSCALL_UART_POLL_OUT 188 +#define K_SYSCALL_UART_POLL_OUT_U16 189 +#define K_SYSCALL_UART_RX_DISABLE 190 +#define K_SYSCALL_UART_RX_ENABLE 191 +#define K_SYSCALL_UART_RX_ENABLE_U16 192 +#define K_SYSCALL_UART_TX 193 +#define K_SYSCALL_UART_TX_ABORT 194 +#define K_SYSCALL_UART_TX_U16 195 +#define K_SYSCALL_ZEPHYR_FPUTC 196 +#define K_SYSCALL_ZEPHYR_FWRITE 197 +#define K_SYSCALL_ZEPHYR_READ_STDIN 198 +#define K_SYSCALL_ZEPHYR_WRITE_STDOUT 199 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0 200 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1 201 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2 202 +#define K_SYSCALL_Z_LOG_MSG_STATIC_CREATE 203 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK 204 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK 205 +#define K_SYSCALL_BAD 206 +#define K_SYSCALL_LIMIT 207 + + +/* Following syscalls are not used in image */ +#define K_SYSCALL_ADC_CHANNEL_SETUP 208 +#define K_SYSCALL_ADC_GET_DECODER 209 +#define K_SYSCALL_ADC_READ 210 +#define K_SYSCALL_ADC_READ_ASYNC 211 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET 212 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET 213 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET 214 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET 215 +#define K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET 216 +#define K_SYSCALL_AUXDISPLAY_CLEAR 217 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET 218 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET 219 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED 220 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET 221 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET 222 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND 223 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_OFF 224 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_ON 225 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET 226 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET 227 +#define K_SYSCALL_AUXDISPLAY_IS_BUSY 228 +#define K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED 229 +#define K_SYSCALL_AUXDISPLAY_WRITE 230 +#define K_SYSCALL_BBRAM_CHECK_INVALID 231 +#define K_SYSCALL_BBRAM_CHECK_POWER 232 +#define K_SYSCALL_BBRAM_CHECK_STANDBY_POWER 233 +#define K_SYSCALL_BBRAM_GET_SIZE 234 +#define K_SYSCALL_BBRAM_READ 235 +#define K_SYSCALL_BBRAM_WRITE 236 +#define K_SYSCALL_BC12_SET_RESULT_CB 237 +#define K_SYSCALL_BC12_SET_ROLE 238 +#define K_SYSCALL_CHARGER_CHARGE_ENABLE 239 +#define K_SYSCALL_CHARGER_GET_PROP 240 +#define K_SYSCALL_CHARGER_SET_PROP 241 +#define K_SYSCALL_COMPARATOR_GET_OUTPUT 242 +#define K_SYSCALL_COMPARATOR_SET_TRIGGER 243 +#define K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING 244 +#define K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM 245 +#define K_SYSCALL_COUNTER_GET_FREQUENCY 246 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD 247 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE 248 +#define K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS 249 +#define K_SYSCALL_COUNTER_GET_PENDING_INT 250 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE 251 +#define K_SYSCALL_COUNTER_GET_VALUE 252 +#define K_SYSCALL_COUNTER_GET_VALUE_64 253 +#define K_SYSCALL_COUNTER_IS_COUNTING_UP 254 +#define K_SYSCALL_COUNTER_RESET 255 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM 256 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD 257 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE 258 +#define K_SYSCALL_COUNTER_START 259 +#define K_SYSCALL_COUNTER_STOP 260 +#define K_SYSCALL_COUNTER_TICKS_TO_NS 261 +#define K_SYSCALL_COUNTER_TICKS_TO_US 262 +#define K_SYSCALL_COUNTER_US_TO_TICKS 263 +#define K_SYSCALL_CRC_BEGIN 264 +#define K_SYSCALL_CRC_FINISH 265 +#define K_SYSCALL_CRC_UPDATE 266 +#define K_SYSCALL_DAC_CHANNEL_SETUP 267 +#define K_SYSCALL_DAC_WRITE_VALUE 268 +#define K_SYSCALL_DEVMUX_SELECT_GET 269 +#define K_SYSCALL_DEVMUX_SELECT_SET 270 +#define K_SYSCALL_EEPROM_GET_SIZE 271 +#define K_SYSCALL_EEPROM_READ 272 +#define K_SYSCALL_EEPROM_WRITE 273 +#define K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF 274 +#define K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING 275 +#define K_SYSCALL_ENTROPY_GET_ENTROPY 276 +#define K_SYSCALL_ESPI_CONFIG 277 +#define K_SYSCALL_ESPI_FLASH_ERASE 278 +#define K_SYSCALL_ESPI_GET_CHANNEL_STATUS 279 +#define K_SYSCALL_ESPI_READ_FLASH 280 +#define K_SYSCALL_ESPI_READ_LPC_REQUEST 281 +#define K_SYSCALL_ESPI_READ_REQUEST 282 +#define K_SYSCALL_ESPI_RECEIVE_OOB 283 +#define K_SYSCALL_ESPI_RECEIVE_VWIRE 284 +#define K_SYSCALL_ESPI_SAF_ACTIVATE 285 +#define K_SYSCALL_ESPI_SAF_CONFIG 286 +#define K_SYSCALL_ESPI_SAF_FLASH_ERASE 287 +#define K_SYSCALL_ESPI_SAF_FLASH_READ 288 +#define K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS 289 +#define K_SYSCALL_ESPI_SAF_FLASH_WRITE 290 +#define K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS 291 +#define K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS 292 +#define K_SYSCALL_ESPI_SEND_OOB 293 +#define K_SYSCALL_ESPI_SEND_VWIRE 294 +#define K_SYSCALL_ESPI_WRITE_FLASH 295 +#define K_SYSCALL_ESPI_WRITE_LPC_REQUEST 296 +#define K_SYSCALL_ESPI_WRITE_REQUEST 297 +#define K_SYSCALL_FLASH_COPY 298 +#define K_SYSCALL_FLASH_ERASE 299 +#define K_SYSCALL_FLASH_EX_OP 300 +#define K_SYSCALL_FLASH_FILL 301 +#define K_SYSCALL_FLASH_FLATTEN 302 +#define K_SYSCALL_FLASH_GET_PAGE_COUNT 303 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX 304 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS 305 +#define K_SYSCALL_FLASH_GET_PARAMETERS 306 +#define K_SYSCALL_FLASH_GET_SIZE 307 +#define K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE 308 +#define K_SYSCALL_FLASH_READ 309 +#define K_SYSCALL_FLASH_READ_JEDEC_ID 310 +#define K_SYSCALL_FLASH_SFDP_READ 311 +#define K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY 312 +#define K_SYSCALL_FLASH_WRITE 313 +#define K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF 314 +#define K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP 315 +#define K_SYSCALL_FUEL_GAUGE_GET_PROP 316 +#define K_SYSCALL_FUEL_GAUGE_GET_PROPS 317 +#define K_SYSCALL_FUEL_GAUGE_SET_PROP 318 +#define K_SYSCALL_FUEL_GAUGE_SET_PROPS 319 +#define K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS 320 +#define K_SYSCALL_GNSS_GET_FIX_RATE 321 +#define K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE 322 +#define K_SYSCALL_GNSS_GET_NAVIGATION_MODE 323 +#define K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS 324 +#define K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS 325 +#define K_SYSCALL_GNSS_SET_FIX_RATE 326 +#define K_SYSCALL_GNSS_SET_NAVIGATION_MODE 327 +#define K_SYSCALL_HAPTICS_START_OUTPUT 328 +#define K_SYSCALL_HAPTICS_STOP_OUTPUT 329 +#define K_SYSCALL_I2C_CONFIGURE 330 +#define K_SYSCALL_I2C_GET_CONFIG 331 +#define K_SYSCALL_I2C_RECOVER_BUS 332 +#define K_SYSCALL_I2C_TARGET_DRIVER_REGISTER 333 +#define K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER 334 +#define K_SYSCALL_I2C_TRANSFER 335 +#define K_SYSCALL_I2S_BUF_READ 336 +#define K_SYSCALL_I2S_BUF_WRITE 337 +#define K_SYSCALL_I2S_CONFIGURE 338 +#define K_SYSCALL_I2S_TRIGGER 339 +#define K_SYSCALL_I3C_DO_CCC 340 +#define K_SYSCALL_I3C_TRANSFER 341 +#define K_SYSCALL_IPM_COMPLETE 342 +#define K_SYSCALL_IPM_MAX_DATA_SIZE_GET 343 +#define K_SYSCALL_IPM_MAX_ID_VAL_GET 344 +#define K_SYSCALL_IPM_SEND 345 +#define K_SYSCALL_IPM_SET_ENABLED 346 +#define K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS 347 +#define K_SYSCALL_IVSHMEM_GET_ID 348 +#define K_SYSCALL_IVSHMEM_GET_MAX_PEERS 349 +#define K_SYSCALL_IVSHMEM_GET_MEM 350 +#define K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION 351 +#define K_SYSCALL_IVSHMEM_GET_PROTOCOL 352 +#define K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION 353 +#define K_SYSCALL_IVSHMEM_GET_STATE 354 +#define K_SYSCALL_IVSHMEM_GET_VECTORS 355 +#define K_SYSCALL_IVSHMEM_INT_PEER 356 +#define K_SYSCALL_IVSHMEM_REGISTER_HANDLER 357 +#define K_SYSCALL_IVSHMEM_SET_STATE 358 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET 359 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET 360 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET 361 +#define K_SYSCALL_K_MEM_PAGING_STATS_GET 362 +#define K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET 363 +#define K_SYSCALL_LED_BLINK 364 +#define K_SYSCALL_LED_GET_INFO 365 +#define K_SYSCALL_LED_OFF 366 +#define K_SYSCALL_LED_ON 367 +#define K_SYSCALL_LED_SET_BRIGHTNESS 368 +#define K_SYSCALL_LED_SET_CHANNEL 369 +#define K_SYSCALL_LED_SET_COLOR 370 +#define K_SYSCALL_LED_WRITE_CHANNELS 371 +#define K_SYSCALL_LLEXT_GET_FN_TABLE 372 +#define K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT 373 +#define K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT 374 +#define K_SYSCALL_MBOX_MAX_CHANNELS_GET 375 +#define K_SYSCALL_MBOX_MTU_GET 376 +#define K_SYSCALL_MBOX_SEND 377 +#define K_SYSCALL_MBOX_SET_ENABLED 378 +#define K_SYSCALL_MDIO_BUS_DISABLE 379 +#define K_SYSCALL_MDIO_BUS_ENABLE 380 +#define K_SYSCALL_MDIO_READ 381 +#define K_SYSCALL_MDIO_READ_C45 382 +#define K_SYSCALL_MDIO_WRITE 383 +#define K_SYSCALL_MDIO_WRITE_C45 384 +#define K_SYSCALL_MSPI_CONFIG 385 +#define K_SYSCALL_MSPI_DEV_CONFIG 386 +#define K_SYSCALL_MSPI_GET_CHANNEL_STATUS 387 +#define K_SYSCALL_MSPI_SCRAMBLE_CONFIG 388 +#define K_SYSCALL_MSPI_TIMING_CONFIG 389 +#define K_SYSCALL_MSPI_TRANSCEIVE 390 +#define K_SYSCALL_MSPI_XIP_CONFIG 391 +#define K_SYSCALL_NET_ADDR_NTOP 392 +#define K_SYSCALL_NET_ADDR_PTON 393 +#define K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX 394 +#define K_SYSCALL_NET_IF_GET_BY_INDEX 395 +#define K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX 396 +#define K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX 397 +#define K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX 398 +#define K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX 399 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX 400 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX 401 +#define K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX 402 +#define K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX 403 +#define K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX 404 +#define K_SYSCALL_NET_SOCKET_SERVICE_REGISTER 405 +#define K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE 406 +#define K_SYSCALL_OPAMP_SET_GAIN 407 +#define K_SYSCALL_PECI_CONFIG 408 +#define K_SYSCALL_PECI_DISABLE 409 +#define K_SYSCALL_PECI_ENABLE 410 +#define K_SYSCALL_PECI_TRANSFER 411 +#define K_SYSCALL_PS2_CONFIG 412 +#define K_SYSCALL_PS2_DISABLE_CALLBACK 413 +#define K_SYSCALL_PS2_ENABLE_CALLBACK 414 +#define K_SYSCALL_PS2_READ 415 +#define K_SYSCALL_PS2_WRITE 416 +#define K_SYSCALL_PSI5_REGISTER_CALLBACK 417 +#define K_SYSCALL_PSI5_SEND 418 +#define K_SYSCALL_PSI5_START_SYNC 419 +#define K_SYSCALL_PSI5_STOP_SYNC 420 +#define K_SYSCALL_PTP_CLOCK_GET 421 +#define K_SYSCALL_PWM_CAPTURE_CYCLES 422 +#define K_SYSCALL_PWM_DISABLE_CAPTURE 423 +#define K_SYSCALL_PWM_ENABLE_CAPTURE 424 +#define K_SYSCALL_PWM_GET_CYCLES_PER_SEC 425 +#define K_SYSCALL_PWM_SET_CYCLES 426 +#define K_SYSCALL_RENESAS_ELC_DISABLE 427 +#define K_SYSCALL_RENESAS_ELC_ENABLE 428 +#define K_SYSCALL_RENESAS_ELC_LINK_BREAK 429 +#define K_SYSCALL_RENESAS_ELC_LINK_SET 430 +#define K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE 431 +#define K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE 432 +#define K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE 433 +#define K_SYSCALL_RETAINED_MEM_CLEAR 434 +#define K_SYSCALL_RETAINED_MEM_READ 435 +#define K_SYSCALL_RETAINED_MEM_SIZE 436 +#define K_SYSCALL_RETAINED_MEM_WRITE 437 +#define K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS 438 +#define K_SYSCALL_RTC_ALARM_GET_TIME 439 +#define K_SYSCALL_RTC_ALARM_IS_PENDING 440 +#define K_SYSCALL_RTC_ALARM_SET_TIME 441 +#define K_SYSCALL_RTC_GET_CALIBRATION 442 +#define K_SYSCALL_RTC_GET_TIME 443 +#define K_SYSCALL_RTC_SET_CALIBRATION 444 +#define K_SYSCALL_RTC_SET_TIME 445 +#define K_SYSCALL_RTIO_CQE_COPY_OUT 446 +#define K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER 447 +#define K_SYSCALL_RTIO_POOL_ACQUIRE 448 +#define K_SYSCALL_RTIO_POOL_RELEASE 449 +#define K_SYSCALL_RTIO_RELEASE_BUFFER 450 +#define K_SYSCALL_RTIO_SQE_CANCEL 451 +#define K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES 452 +#define K_SYSCALL_RTIO_SQE_SIGNAL 453 +#define K_SYSCALL_RTIO_SUBMIT 454 +#define K_SYSCALL_SDHC_CARD_BUSY 455 +#define K_SYSCALL_SDHC_CARD_PRESENT 456 +#define K_SYSCALL_SDHC_DISABLE_INTERRUPT 457 +#define K_SYSCALL_SDHC_ENABLE_INTERRUPT 458 +#define K_SYSCALL_SDHC_EXECUTE_TUNING 459 +#define K_SYSCALL_SDHC_GET_HOST_PROPS 460 +#define K_SYSCALL_SDHC_HW_RESET 461 +#define K_SYSCALL_SDHC_REQUEST 462 +#define K_SYSCALL_SDHC_SET_IO 463 +#define K_SYSCALL_SENSOR_ATTR_GET 464 +#define K_SYSCALL_SENSOR_ATTR_SET 465 +#define K_SYSCALL_SENSOR_CHANNEL_GET 466 +#define K_SYSCALL_SENSOR_GET_DECODER 467 +#define K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV 468 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH 469 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN 470 +#define K_SYSCALL_SENT_REGISTER_CALLBACK 471 +#define K_SYSCALL_SENT_START_LISTENING 472 +#define K_SYSCALL_SENT_STOP_LISTENING 473 +#define K_SYSCALL_SIP_SUPERVISORY_CALL 474 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ 475 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES 476 +#define K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID 477 +#define K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY 478 +#define K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID 479 +#define K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE 480 +#define K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX 481 +#define K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID 482 +#define K_SYSCALL_SMBUS_BLOCK_PCALL 483 +#define K_SYSCALL_SMBUS_BLOCK_READ 484 +#define K_SYSCALL_SMBUS_BLOCK_WRITE 485 +#define K_SYSCALL_SMBUS_BYTE_DATA_READ 486 +#define K_SYSCALL_SMBUS_BYTE_DATA_WRITE 487 +#define K_SYSCALL_SMBUS_BYTE_READ 488 +#define K_SYSCALL_SMBUS_BYTE_WRITE 489 +#define K_SYSCALL_SMBUS_CONFIGURE 490 +#define K_SYSCALL_SMBUS_GET_CONFIG 491 +#define K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB 492 +#define K_SYSCALL_SMBUS_PCALL 493 +#define K_SYSCALL_SMBUS_QUICK 494 +#define K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB 495 +#define K_SYSCALL_SMBUS_WORD_DATA_READ 496 +#define K_SYSCALL_SMBUS_WORD_DATA_WRITE 497 +#define K_SYSCALL_SPI_RELEASE 498 +#define K_SYSCALL_SPI_TRANSCEIVE 499 +#define K_SYSCALL_STEPPER_DISABLE 500 +#define K_SYSCALL_STEPPER_ENABLE 501 +#define K_SYSCALL_STEPPER_GET_ACTUAL_POSITION 502 +#define K_SYSCALL_STEPPER_GET_MICRO_STEP_RES 503 +#define K_SYSCALL_STEPPER_IS_MOVING 504 +#define K_SYSCALL_STEPPER_MOVE_BY 505 +#define K_SYSCALL_STEPPER_MOVE_TO 506 +#define K_SYSCALL_STEPPER_RUN 507 +#define K_SYSCALL_STEPPER_SET_EVENT_CALLBACK 508 +#define K_SYSCALL_STEPPER_SET_MICROSTEP_INTERVAL 509 +#define K_SYSCALL_STEPPER_SET_MICRO_STEP_RES 510 +#define K_SYSCALL_STEPPER_SET_REFERENCE_POSITION 511 +#define K_SYSCALL_STEPPER_STOP 512 +#define K_SYSCALL_SYSCON_GET_BASE 513 +#define K_SYSCALL_SYSCON_GET_SIZE 514 +#define K_SYSCALL_SYSCON_READ_REG 515 +#define K_SYSCALL_SYSCON_WRITE_REG 516 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE 517 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE 518 +#define K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE 519 +#define K_SYSCALL_SYS_CSRAND_GET 520 +#define K_SYSCALL_SYS_RAND_GET 521 +#define K_SYSCALL_TEE_CANCEL 522 +#define K_SYSCALL_TEE_CLOSE_SESSION 523 +#define K_SYSCALL_TEE_GET_VERSION 524 +#define K_SYSCALL_TEE_INVOKE_FUNC 525 +#define K_SYSCALL_TEE_OPEN_SESSION 526 +#define K_SYSCALL_TEE_SHM_ALLOC 527 +#define K_SYSCALL_TEE_SHM_FREE 528 +#define K_SYSCALL_TEE_SHM_REGISTER 529 +#define K_SYSCALL_TEE_SHM_UNREGISTER 530 +#define K_SYSCALL_TEE_SUPPL_RECV 531 +#define K_SYSCALL_TEE_SUPPL_SEND 532 +#define K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP 533 +#define K_SYSCALL_TGPIO_PIN_DISABLE 534 +#define K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT 535 +#define K_SYSCALL_TGPIO_PIN_READ_TS_EC 536 +#define K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND 537 +#define K_SYSCALL_TGPIO_PORT_GET_TIME 538 +#define K_SYSCALL_UPDATEHUB_AUTOHANDLER 539 +#define K_SYSCALL_UPDATEHUB_CONFIRM 540 +#define K_SYSCALL_UPDATEHUB_PROBE 541 +#define K_SYSCALL_UPDATEHUB_REBOOT 542 +#define K_SYSCALL_UPDATEHUB_REPORT_ERROR 543 +#define K_SYSCALL_UPDATEHUB_UPDATE 544 +#define K_SYSCALL_USER_FAULT 545 +#define K_SYSCALL_W1_CHANGE_BUS_LOCK 546 +#define K_SYSCALL_W1_CONFIGURE 547 +#define K_SYSCALL_W1_GET_SLAVE_COUNT 548 +#define K_SYSCALL_W1_READ_BIT 549 +#define K_SYSCALL_W1_READ_BLOCK 550 +#define K_SYSCALL_W1_READ_BYTE 551 +#define K_SYSCALL_W1_RESET_BUS 552 +#define K_SYSCALL_W1_SEARCH_BUS 553 +#define K_SYSCALL_W1_WRITE_BIT 554 +#define K_SYSCALL_W1_WRITE_BLOCK 555 +#define K_SYSCALL_W1_WRITE_BYTE 556 +#define K_SYSCALL_WDT_DISABLE 557 +#define K_SYSCALL_WDT_FEED 558 +#define K_SYSCALL_WDT_SETUP 559 +#define K_SYSCALL_XTENSA_USER_FAULT 560 +#define K_SYSCALL_ZSOCK_ACCEPT 561 +#define K_SYSCALL_ZSOCK_BIND 562 +#define K_SYSCALL_ZSOCK_CLOSE 563 +#define K_SYSCALL_ZSOCK_CONNECT 564 +#define K_SYSCALL_ZSOCK_FCNTL_IMPL 565 +#define K_SYSCALL_ZSOCK_GETHOSTNAME 566 +#define K_SYSCALL_ZSOCK_GETPEERNAME 567 +#define K_SYSCALL_ZSOCK_GETSOCKNAME 568 +#define K_SYSCALL_ZSOCK_GETSOCKOPT 569 +#define K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT 570 +#define K_SYSCALL_ZSOCK_INET_PTON 571 +#define K_SYSCALL_ZSOCK_IOCTL_IMPL 572 +#define K_SYSCALL_ZSOCK_LISTEN 573 +#define K_SYSCALL_ZSOCK_RECVFROM 574 +#define K_SYSCALL_ZSOCK_RECVMSG 575 +#define K_SYSCALL_ZSOCK_SENDMSG 576 +#define K_SYSCALL_ZSOCK_SENDTO 577 +#define K_SYSCALL_ZSOCK_SETSOCKOPT 578 +#define K_SYSCALL_ZSOCK_SHUTDOWN 579 +#define K_SYSCALL_ZSOCK_SOCKET 580 +#define K_SYSCALL_ZSOCK_SOCKETPAIR 581 +#define K_SYSCALL_ZVFS_POLL 582 +#define K_SYSCALL_ZVFS_SELECT 583 +#define K_SYSCALL_Z_ERRNO 584 +#define K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL 585 + + +#ifndef _ASMLANGUAGE + +#include +#include + +#endif /* _ASMLANGUAGE */ + +#endif /* ZEPHYR_SYSCALL_LIST_H */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/adc.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/adc.h new file mode 100644 index 0000000..e269d2d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/adc.h @@ -0,0 +1,125 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ADC_H +#define Z_INCLUDE_SYSCALLS_ADC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_adc_channel_setup(const struct device * dev, const struct adc_channel_cfg * channel_cfg); + +__pinned_func +static inline int adc_channel_setup(const struct device * dev, const struct adc_channel_cfg * channel_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_channel_cfg * val; } parm1 = { .val = channel_cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_CHANNEL_SETUP); + } +#endif + compiler_barrier(); + return z_impl_adc_channel_setup(dev, channel_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_channel_setup(dev, channel_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_CHANNEL_SETUP, adc_channel_setup, dev, channel_cfg); syscall__retval = adc_channel_setup(dev, channel_cfg); sys_port_trace_syscall_exit(K_SYSCALL_ADC_CHANNEL_SETUP, adc_channel_setup, dev, channel_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_read(const struct device * dev, const struct adc_sequence * sequence); + +__pinned_func +static inline int adc_read(const struct device * dev, const struct adc_sequence * sequence) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_sequence * val; } parm1 = { .val = sequence }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_READ); + } +#endif + compiler_barrier(); + return z_impl_adc_read(dev, sequence); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_read(dev, sequence) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_READ, adc_read, dev, sequence); syscall__retval = adc_read(dev, sequence); sys_port_trace_syscall_exit(K_SYSCALL_ADC_READ, adc_read, dev, sequence, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_read_async(const struct device * dev, const struct adc_sequence * sequence, struct k_poll_signal * async); + +__pinned_func +static inline int adc_read_async(const struct device * dev, const struct adc_sequence * sequence, struct k_poll_signal * async) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_sequence * val; } parm1 = { .val = sequence }; + union { uintptr_t x; struct k_poll_signal * val; } parm2 = { .val = async }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ADC_READ_ASYNC); + } +#endif + compiler_barrier(); + return z_impl_adc_read_async(dev, sequence, async); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_read_async(dev, sequence, async) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_READ_ASYNC, adc_read_async, dev, sequence, async); syscall__retval = adc_read_async(dev, sequence, async); sys_port_trace_syscall_exit(K_SYSCALL_ADC_READ_ASYNC, adc_read_async, dev, sequence, async, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_get_decoder(const struct device * dev, const struct adc_decoder_api ** api); + +__pinned_func +static inline int adc_get_decoder(const struct device * dev, const struct adc_decoder_api ** api) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_decoder_api ** val; } parm1 = { .val = api }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_GET_DECODER); + } +#endif + compiler_barrier(); + return z_impl_adc_get_decoder(dev, api); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_get_decoder(dev, api) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_GET_DECODER, adc_get_decoder, dev, api); syscall__retval = adc_get_decoder(dev, api); sys_port_trace_syscall_exit(K_SYSCALL_ADC_GET_DECODER, adc_get_decoder, dev, api, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/arch.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/arch.h new file mode 100644 index 0000000..cf55b0b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/arch.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ARCH_H +#define Z_INCLUDE_SYSCALLS_ARCH_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_xtensa_user_fault(unsigned int reason); + +__pinned_func +static inline void xtensa_user_fault(unsigned int reason) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; unsigned int val; } parm0 = { .val = reason }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_XTENSA_USER_FAULT); + return; + } +#endif + compiler_barrier(); + z_impl_xtensa_user_fault(reason); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define xtensa_user_fault(reason) do { sys_port_trace_syscall_enter(K_SYSCALL_XTENSA_USER_FAULT, xtensa_user_fault, reason); xtensa_user_fault(reason); sys_port_trace_syscall_exit(K_SYSCALL_XTENSA_USER_FAULT, xtensa_user_fault, reason); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/atomic_c.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/atomic_c.h new file mode 100644 index 0000000..e042a7e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/atomic_c.h @@ -0,0 +1,270 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ATOMIC_C_H +#define Z_INCLUDE_SYSCALLS_ATOMIC_C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern bool z_impl_atomic_cas(atomic_t * target, atomic_val_t old_value, atomic_val_t new_value); + +__pinned_func +static inline bool atomic_cas(atomic_t * target, atomic_val_t old_value, atomic_val_t new_value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = old_value }; + union { uintptr_t x; atomic_val_t val; } parm2 = { .val = new_value }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ATOMIC_CAS); + } +#endif + compiler_barrier(); + return z_impl_atomic_cas(target, old_value, new_value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_cas(target, old_value, new_value) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_CAS, atomic_cas, target, old_value, new_value); syscall__retval = atomic_cas(target, old_value, new_value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_CAS, atomic_cas, target, old_value, new_value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_atomic_ptr_cas(atomic_ptr_t * target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value); + +__pinned_func +static inline bool atomic_ptr_cas(atomic_ptr_t * target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_ptr_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_ptr_val_t val; } parm1 = { .val = old_value }; + union { uintptr_t x; atomic_ptr_val_t val; } parm2 = { .val = new_value }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ATOMIC_PTR_CAS); + } +#endif + compiler_barrier(); + return z_impl_atomic_ptr_cas(target, old_value, new_value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_ptr_cas(target, old_value, new_value) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_PTR_CAS, atomic_ptr_cas, target, old_value, new_value); syscall__retval = atomic_ptr_cas(target, old_value, new_value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_PTR_CAS, atomic_ptr_cas, target, old_value, new_value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_add(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_add(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_ADD); + } +#endif + compiler_barrier(); + return z_impl_atomic_add(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_add(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_ADD, atomic_add, target, value); syscall__retval = atomic_add(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_ADD, atomic_add, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_sub(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_sub(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_SUB); + } +#endif + compiler_barrier(); + return z_impl_atomic_sub(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_sub(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_SUB, atomic_sub, target, value); syscall__retval = atomic_sub(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_SUB, atomic_sub, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_set(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_set(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_SET); + } +#endif + compiler_barrier(); + return z_impl_atomic_set(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_set(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_SET, atomic_set, target, value); syscall__retval = atomic_set(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_SET, atomic_set, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_ptr_val_t z_impl_atomic_ptr_set(atomic_ptr_t * target, atomic_ptr_val_t value); + +__pinned_func +static inline atomic_ptr_val_t atomic_ptr_set(atomic_ptr_t * target, atomic_ptr_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_ptr_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_ptr_val_t val; } parm1 = { .val = value }; + return (atomic_ptr_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_PTR_SET); + } +#endif + compiler_barrier(); + return z_impl_atomic_ptr_set(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_ptr_set(target, value) ({ atomic_ptr_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_PTR_SET, atomic_ptr_set, target, value); syscall__retval = atomic_ptr_set(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_PTR_SET, atomic_ptr_set, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_or(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_or(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_OR); + } +#endif + compiler_barrier(); + return z_impl_atomic_or(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_or(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_OR, atomic_or, target, value); syscall__retval = atomic_or(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_OR, atomic_or, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_xor(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_xor(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_XOR); + } +#endif + compiler_barrier(); + return z_impl_atomic_xor(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_xor(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_XOR, atomic_xor, target, value); syscall__retval = atomic_xor(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_XOR, atomic_xor, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_and(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_and(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_AND); + } +#endif + compiler_barrier(); + return z_impl_atomic_and(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_and(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_AND, atomic_and, target, value); syscall__retval = atomic_and(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_AND, atomic_and, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_nand(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_nand(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_NAND); + } +#endif + compiler_barrier(); + return z_impl_atomic_nand(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_nand(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_NAND, atomic_nand, target, value); syscall__retval = atomic_nand(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_NAND, atomic_nand, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/auxdisplay.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/auxdisplay.h new file mode 100644 index 0000000..21c3fec --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/auxdisplay.h @@ -0,0 +1,488 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_AUXDISPLAY_H +#define Z_INCLUDE_SYSCALLS_AUXDISPLAY_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_auxdisplay_display_on(const struct device * dev); + +__pinned_func +static inline int auxdisplay_display_on(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_DISPLAY_ON); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_on(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_on(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_ON, auxdisplay_display_on, dev); syscall__retval = auxdisplay_display_on(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_ON, auxdisplay_display_on, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_off(const struct device * dev); + +__pinned_func +static inline int auxdisplay_display_off(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_DISPLAY_OFF); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_off(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_off(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_OFF, auxdisplay_display_off, dev); syscall__retval = auxdisplay_display_off(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_OFF, auxdisplay_display_off, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_set_enabled(const struct device * dev, bool enabled); + +__pinned_func +static inline int auxdisplay_cursor_set_enabled(const struct device * dev, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enabled }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_set_enabled(dev, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_set_enabled(dev, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED, auxdisplay_cursor_set_enabled, dev, enabled); syscall__retval = auxdisplay_cursor_set_enabled(dev, enabled); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED, auxdisplay_cursor_set_enabled, dev, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_position_blinking_set_enabled(const struct device * dev, bool enabled); + +__pinned_func +static inline int auxdisplay_position_blinking_set_enabled(const struct device * dev, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enabled }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_position_blinking_set_enabled(dev, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_position_blinking_set_enabled(dev, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED, auxdisplay_position_blinking_set_enabled, dev, enabled); syscall__retval = auxdisplay_position_blinking_set_enabled(dev, enabled); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED, auxdisplay_position_blinking_set_enabled, dev, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_shift_set(const struct device * dev, uint8_t direction, bool display_shift); + +__pinned_func +static inline int auxdisplay_cursor_shift_set(const struct device * dev, uint8_t direction, bool display_shift) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = direction }; + union { uintptr_t x; bool val; } parm2 = { .val = display_shift }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_shift_set(dev, direction, display_shift); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_shift_set(dev, direction, display_shift) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET, auxdisplay_cursor_shift_set, dev, direction, display_shift); syscall__retval = auxdisplay_cursor_shift_set(dev, direction, display_shift); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET, auxdisplay_cursor_shift_set, dev, direction, display_shift, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y); + +__pinned_func +static inline int auxdisplay_cursor_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum auxdisplay_position val; } parm1 = { .val = type }; + union { uintptr_t x; int16_t val; } parm2 = { .val = x }; + union { uintptr_t x; int16_t val; } parm3 = { .val = y }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_position_set(dev, type, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_position_set(dev, type, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET, auxdisplay_cursor_position_set, dev, type, x, y); syscall__retval = auxdisplay_cursor_position_set(dev, type, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET, auxdisplay_cursor_position_set, dev, type, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_position_get(const struct device * dev, int16_t * x, int16_t * y); + +__pinned_func +static inline int auxdisplay_cursor_position_get(const struct device * dev, int16_t * x, int16_t * y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int16_t * val; } parm1 = { .val = x }; + union { uintptr_t x; int16_t * val; } parm2 = { .val = y }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_position_get(dev, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_position_get(dev, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET, auxdisplay_cursor_position_get, dev, x, y); syscall__retval = auxdisplay_cursor_position_get(dev, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET, auxdisplay_cursor_position_get, dev, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y); + +__pinned_func +static inline int auxdisplay_display_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum auxdisplay_position val; } parm1 = { .val = type }; + union { uintptr_t x; int16_t val; } parm2 = { .val = x }; + union { uintptr_t x; int16_t val; } parm3 = { .val = y }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_position_set(dev, type, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_position_set(dev, type, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET, auxdisplay_display_position_set, dev, type, x, y); syscall__retval = auxdisplay_display_position_set(dev, type, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET, auxdisplay_display_position_set, dev, type, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_position_get(const struct device * dev, int16_t * x, int16_t * y); + +__pinned_func +static inline int auxdisplay_display_position_get(const struct device * dev, int16_t * x, int16_t * y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int16_t * val; } parm1 = { .val = x }; + union { uintptr_t x; int16_t * val; } parm2 = { .val = y }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_position_get(dev, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_position_get(dev, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET, auxdisplay_display_position_get, dev, x, y); syscall__retval = auxdisplay_display_position_get(dev, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET, auxdisplay_display_position_get, dev, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_capabilities_get(const struct device * dev, struct auxdisplay_capabilities * capabilities); + +__pinned_func +static inline int auxdisplay_capabilities_get(const struct device * dev, struct auxdisplay_capabilities * capabilities) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_capabilities * val; } parm1 = { .val = capabilities }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_capabilities_get(dev, capabilities); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_capabilities_get(dev, capabilities) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET, auxdisplay_capabilities_get, dev, capabilities); syscall__retval = auxdisplay_capabilities_get(dev, capabilities); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET, auxdisplay_capabilities_get, dev, capabilities, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_clear(const struct device * dev); + +__pinned_func +static inline int auxdisplay_clear(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_clear(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_clear(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CLEAR, auxdisplay_clear, dev); syscall__retval = auxdisplay_clear(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CLEAR, auxdisplay_clear, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_brightness_get(const struct device * dev, uint8_t * brightness); + +__pinned_func +static inline int auxdisplay_brightness_get(const struct device * dev, uint8_t * brightness) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = brightness }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_brightness_get(dev, brightness); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_brightness_get(dev, brightness) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET, auxdisplay_brightness_get, dev, brightness); syscall__retval = auxdisplay_brightness_get(dev, brightness); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET, auxdisplay_brightness_get, dev, brightness, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_brightness_set(const struct device * dev, uint8_t brightness); + +__pinned_func +static inline int auxdisplay_brightness_set(const struct device * dev, uint8_t brightness) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = brightness }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_brightness_set(dev, brightness); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_brightness_set(dev, brightness) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET, auxdisplay_brightness_set, dev, brightness); syscall__retval = auxdisplay_brightness_set(dev, brightness); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET, auxdisplay_brightness_set, dev, brightness, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_backlight_get(const struct device * dev, uint8_t * backlight); + +__pinned_func +static inline int auxdisplay_backlight_get(const struct device * dev, uint8_t * backlight) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = backlight }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_backlight_get(dev, backlight); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_backlight_get(dev, backlight) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET, auxdisplay_backlight_get, dev, backlight); syscall__retval = auxdisplay_backlight_get(dev, backlight); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET, auxdisplay_backlight_get, dev, backlight, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_backlight_set(const struct device * dev, uint8_t backlight); + +__pinned_func +static inline int auxdisplay_backlight_set(const struct device * dev, uint8_t backlight) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = backlight }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_backlight_set(dev, backlight); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_backlight_set(dev, backlight) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET, auxdisplay_backlight_set, dev, backlight); syscall__retval = auxdisplay_backlight_set(dev, backlight); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET, auxdisplay_backlight_set, dev, backlight, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_is_busy(const struct device * dev); + +__pinned_func +static inline int auxdisplay_is_busy(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_IS_BUSY); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_is_busy(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_is_busy(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_IS_BUSY, auxdisplay_is_busy, dev); syscall__retval = auxdisplay_is_busy(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_IS_BUSY, auxdisplay_is_busy, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_custom_character_set(const struct device * dev, struct auxdisplay_character * character); + +__pinned_func +static inline int auxdisplay_custom_character_set(const struct device * dev, struct auxdisplay_character * character) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_character * val; } parm1 = { .val = character }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_custom_character_set(dev, character); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_custom_character_set(dev, character) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET, auxdisplay_custom_character_set, dev, character); syscall__retval = auxdisplay_custom_character_set(dev, character); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET, auxdisplay_custom_character_set, dev, character, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_write(const struct device * dev, const uint8_t * data, uint16_t len); + +__pinned_func +static inline int auxdisplay_write(const struct device * dev, const uint8_t * data, uint16_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_WRITE); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_write(dev, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_write(dev, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_WRITE, auxdisplay_write, dev, data, len); syscall__retval = auxdisplay_write(dev, data, len); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_WRITE, auxdisplay_write, dev, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_custom_command(const struct device * dev, struct auxdisplay_custom_data * data); + +__pinned_func +static inline int auxdisplay_custom_command(const struct device * dev, struct auxdisplay_custom_data * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_custom_data * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_custom_command(dev, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_custom_command(dev, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND, auxdisplay_custom_command, dev, data); syscall__retval = auxdisplay_custom_command(dev, data); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND, auxdisplay_custom_command, dev, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/bbram.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/bbram.h new file mode 100644 index 0000000..fcfa519 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/bbram.h @@ -0,0 +1,173 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_BBRAM_H +#define Z_INCLUDE_SYSCALLS_BBRAM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_bbram_check_invalid(const struct device * dev); + +__pinned_func +static inline int bbram_check_invalid(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_INVALID); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_invalid(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_invalid(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_INVALID, bbram_check_invalid, dev); syscall__retval = bbram_check_invalid(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_INVALID, bbram_check_invalid, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_check_standby_power(const struct device * dev); + +__pinned_func +static inline int bbram_check_standby_power(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_STANDBY_POWER); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_standby_power(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_standby_power(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_STANDBY_POWER, bbram_check_standby_power, dev); syscall__retval = bbram_check_standby_power(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_STANDBY_POWER, bbram_check_standby_power, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_check_power(const struct device * dev); + +__pinned_func +static inline int bbram_check_power(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_POWER); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_power(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_power(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_POWER, bbram_check_power, dev); syscall__retval = bbram_check_power(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_POWER, bbram_check_power, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_get_size(const struct device * dev, size_t * size); + +__pinned_func +static inline int bbram_get_size(const struct device * dev, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BBRAM_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_bbram_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_GET_SIZE, bbram_get_size, dev, size); syscall__retval = bbram_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_GET_SIZE, bbram_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_read(const struct device * dev, size_t offset, size_t size, uint8_t * data); + +__pinned_func +static inline int bbram_read(const struct device * dev, size_t offset, size_t size, uint8_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BBRAM_READ); + } +#endif + compiler_barrier(); + return z_impl_bbram_read(dev, offset, size, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_read(dev, offset, size, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_READ, bbram_read, dev, offset, size, data); syscall__retval = bbram_read(dev, offset, size, data); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_READ, bbram_read, dev, offset, size, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_write(const struct device * dev, size_t offset, size_t size, const uint8_t * data); + +__pinned_func +static inline int bbram_write(const struct device * dev, size_t offset, size_t size, const uint8_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BBRAM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_bbram_write(dev, offset, size, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_write(dev, offset, size, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_WRITE, bbram_write, dev, offset, size, data); syscall__retval = bbram_write(dev, offset, size, data); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_WRITE, bbram_write, dev, offset, size, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/cache.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/cache.h new file mode 100644 index 0000000..7dbb963 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/cache.h @@ -0,0 +1,100 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CACHE_H +#define Z_INCLUDE_SYSCALLS_CACHE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sys_cache_data_flush_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_flush_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_flush_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_flush_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE, sys_cache_data_flush_range, addr, size); syscall__retval = sys_cache_data_flush_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE, sys_cache_data_flush_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_cache_data_invd_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_invd_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_invd_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_invd_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE, sys_cache_data_invd_range, addr, size); syscall__retval = sys_cache_data_invd_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE, sys_cache_data_invd_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_cache_data_flush_and_invd_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_flush_and_invd_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_flush_and_invd_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_flush_and_invd_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE, sys_cache_data_flush_and_invd_range, addr, size); syscall__retval = sys_cache_data_flush_and_invd_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE, sys_cache_data_flush_and_invd_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/can.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/can.h new file mode 100644 index 0000000..261b074 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/can.h @@ -0,0 +1,812 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CAN_H +#define Z_INCLUDE_SYSCALLS_CAN_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_can_get_core_clock(const struct device * dev, uint32_t * rate); + +__pinned_func +static inline int can_get_core_clock(const struct device * dev, uint32_t * rate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = rate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_CORE_CLOCK); + } +#endif + compiler_barrier(); + return z_impl_can_get_core_clock(dev, rate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_core_clock(dev, rate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_CORE_CLOCK, can_get_core_clock, dev, rate); syscall__retval = can_get_core_clock(dev, rate); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_CORE_CLOCK, can_get_core_clock, dev, rate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_get_bitrate_min(const struct device * dev); + +__pinned_func +static inline uint32_t can_get_bitrate_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_BITRATE_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_bitrate_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_bitrate_min(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_BITRATE_MIN, can_get_bitrate_min, dev); syscall__retval = can_get_bitrate_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_BITRATE_MIN, can_get_bitrate_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_get_bitrate_max(const struct device * dev); + +__pinned_func +static inline uint32_t can_get_bitrate_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_BITRATE_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_bitrate_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_bitrate_max(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_BITRATE_MAX, can_get_bitrate_max, dev); syscall__retval = can_get_bitrate_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_BITRATE_MAX, can_get_bitrate_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_min(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_min(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_MIN, can_get_timing_min, dev); syscall__retval = can_get_timing_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_MIN, can_get_timing_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_max(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_max(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_MAX, can_get_timing_max, dev); syscall__retval = can_get_timing_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_MAX, can_get_timing_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_calc_timing(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt); + +__pinned_func +static inline int can_calc_timing(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct can_timing * val; } parm1 = { .val = res }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = bitrate }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = sample_pnt }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CAN_CALC_TIMING); + } +#endif + compiler_barrier(); + return z_impl_can_calc_timing(dev, res, bitrate, sample_pnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_calc_timing(dev, res, bitrate, sample_pnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_CALC_TIMING, can_calc_timing, dev, res, bitrate, sample_pnt); syscall__retval = can_calc_timing(dev, res, bitrate, sample_pnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_CALC_TIMING, can_calc_timing, dev, res, bitrate, sample_pnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_data_min(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_data_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_DATA_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_data_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_data_min(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_DATA_MIN, can_get_timing_data_min, dev); syscall__retval = can_get_timing_data_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_DATA_MIN, can_get_timing_data_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_data_max(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_data_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_DATA_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_data_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_data_max(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_DATA_MAX, can_get_timing_data_max, dev); syscall__retval = can_get_timing_data_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_DATA_MAX, can_get_timing_data_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_calc_timing_data(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt); + +__pinned_func +static inline int can_calc_timing_data(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct can_timing * val; } parm1 = { .val = res }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = bitrate }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = sample_pnt }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CAN_CALC_TIMING_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_calc_timing_data(dev, res, bitrate, sample_pnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_calc_timing_data(dev, res, bitrate, sample_pnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_CALC_TIMING_DATA, can_calc_timing_data, dev, res, bitrate, sample_pnt); syscall__retval = can_calc_timing_data(dev, res, bitrate, sample_pnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_CALC_TIMING_DATA, can_calc_timing_data, dev, res, bitrate, sample_pnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_timing_data(const struct device * dev, const struct can_timing * timing_data); + +__pinned_func +static inline int can_set_timing_data(const struct device * dev, const struct can_timing * timing_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_timing * val; } parm1 = { .val = timing_data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_TIMING_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_set_timing_data(dev, timing_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_timing_data(dev, timing_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_TIMING_DATA, can_set_timing_data, dev, timing_data); syscall__retval = can_set_timing_data(dev, timing_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_TIMING_DATA, can_set_timing_data, dev, timing_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_bitrate_data(const struct device * dev, uint32_t bitrate_data); + +__pinned_func +static inline int can_set_bitrate_data(const struct device * dev, uint32_t bitrate_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate_data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_BITRATE_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_set_bitrate_data(dev, bitrate_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_bitrate_data(dev, bitrate_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_BITRATE_DATA, can_set_bitrate_data, dev, bitrate_data); syscall__retval = can_set_bitrate_data(dev, bitrate_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_BITRATE_DATA, can_set_bitrate_data, dev, bitrate_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_timing(const struct device * dev, const struct can_timing * timing); + +__pinned_func +static inline int can_set_timing(const struct device * dev, const struct can_timing * timing) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_timing * val; } parm1 = { .val = timing }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_TIMING); + } +#endif + compiler_barrier(); + return z_impl_can_set_timing(dev, timing); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_timing(dev, timing) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_TIMING, can_set_timing, dev, timing); syscall__retval = can_set_timing(dev, timing); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_TIMING, can_set_timing, dev, timing, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_get_capabilities(const struct device * dev, can_mode_t * cap); + +__pinned_func +static inline int can_get_capabilities(const struct device * dev, can_mode_t * cap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; can_mode_t * val; } parm1 = { .val = cap }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_CAPABILITIES); + } +#endif + compiler_barrier(); + return z_impl_can_get_capabilities(dev, cap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_capabilities(dev, cap) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_CAPABILITIES, can_get_capabilities, dev, cap); syscall__retval = can_get_capabilities(dev, cap); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_CAPABILITIES, can_get_capabilities, dev, cap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct device * z_impl_can_get_transceiver(const struct device * dev); + +__pinned_func +static inline const struct device * can_get_transceiver(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TRANSCEIVER); + } +#endif + compiler_barrier(); + return z_impl_can_get_transceiver(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_transceiver(dev) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TRANSCEIVER, can_get_transceiver, dev); syscall__retval = can_get_transceiver(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TRANSCEIVER, can_get_transceiver, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_start(const struct device * dev); + +__pinned_func +static inline int can_start(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_START); + } +#endif + compiler_barrier(); + return z_impl_can_start(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_start(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_START, can_start, dev); syscall__retval = can_start(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_START, can_start, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_stop(const struct device * dev); + +__pinned_func +static inline int can_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STOP); + } +#endif + compiler_barrier(); + return z_impl_can_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STOP, can_stop, dev); syscall__retval = can_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STOP, can_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_mode(const struct device * dev, can_mode_t mode); + +__pinned_func +static inline int can_set_mode(const struct device * dev, can_mode_t mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; can_mode_t val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_MODE); + } +#endif + compiler_barrier(); + return z_impl_can_set_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_MODE, can_set_mode, dev, mode); syscall__retval = can_set_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_MODE, can_set_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern can_mode_t z_impl_can_get_mode(const struct device * dev); + +__pinned_func +static inline can_mode_t can_get_mode(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (can_mode_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_MODE); + } +#endif + compiler_barrier(); + return z_impl_can_get_mode(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_mode(dev) ({ can_mode_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_MODE, can_get_mode, dev); syscall__retval = can_get_mode(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_MODE, can_get_mode, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_bitrate(const struct device * dev, uint32_t bitrate); + +__pinned_func +static inline int can_set_bitrate(const struct device * dev, uint32_t bitrate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_BITRATE); + } +#endif + compiler_barrier(); + return z_impl_can_set_bitrate(dev, bitrate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_bitrate(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_BITRATE, can_set_bitrate, dev, bitrate); syscall__retval = can_set_bitrate(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_BITRATE, can_set_bitrate, dev, bitrate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_send(const struct device * dev, const struct can_frame * frame, k_timeout_t timeout, can_tx_callback_t callback, void * user_data); + +__pinned_func +static inline int can_send(const struct device * dev, const struct can_frame * frame, k_timeout_t timeout, can_tx_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_frame * val; } parm1 = { .val = frame }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + union { uintptr_t x; can_tx_callback_t val; } parm3 = { .val = callback }; + union { uintptr_t x; void * val; } parm4 = { .val = user_data }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, parm3.x, parm4.x, K_SYSCALL_CAN_SEND); + } +#endif + compiler_barrier(); + return z_impl_can_send(dev, frame, timeout, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_send(dev, frame, timeout, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SEND, can_send, dev, frame, timeout, callback, user_data); syscall__retval = can_send(dev, frame, timeout, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SEND, can_send, dev, frame, timeout, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_add_rx_filter_msgq(const struct device * dev, struct k_msgq * msgq, const struct can_filter * filter); + +__pinned_func +static inline int can_add_rx_filter_msgq(const struct device * dev, struct k_msgq * msgq, const struct can_filter * filter) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_msgq * val; } parm1 = { .val = msgq }; + union { uintptr_t x; const struct can_filter * val; } parm2 = { .val = filter }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ); + } +#endif + compiler_barrier(); + return z_impl_can_add_rx_filter_msgq(dev, msgq, filter); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_add_rx_filter_msgq(dev, msgq, filter) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ, can_add_rx_filter_msgq, dev, msgq, filter); syscall__retval = can_add_rx_filter_msgq(dev, msgq, filter); sys_port_trace_syscall_exit(K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ, can_add_rx_filter_msgq, dev, msgq, filter, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_can_remove_rx_filter(const struct device * dev, int filter_id); + +__pinned_func +static inline void can_remove_rx_filter(const struct device * dev, int filter_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = filter_id }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_REMOVE_RX_FILTER); + return; + } +#endif + compiler_barrier(); + z_impl_can_remove_rx_filter(dev, filter_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_remove_rx_filter(dev, filter_id) do { sys_port_trace_syscall_enter(K_SYSCALL_CAN_REMOVE_RX_FILTER, can_remove_rx_filter, dev, filter_id); can_remove_rx_filter(dev, filter_id); sys_port_trace_syscall_exit(K_SYSCALL_CAN_REMOVE_RX_FILTER, can_remove_rx_filter, dev, filter_id); } while(false) +#endif +#endif + + +extern int z_impl_can_get_max_filters(const struct device * dev, bool ide); + +__pinned_func +static inline int can_get_max_filters(const struct device * dev, bool ide) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = ide }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_MAX_FILTERS); + } +#endif + compiler_barrier(); + return z_impl_can_get_max_filters(dev, ide); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_max_filters(dev, ide) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_MAX_FILTERS, can_get_max_filters, dev, ide); syscall__retval = can_get_max_filters(dev, ide); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_MAX_FILTERS, can_get_max_filters, dev, ide, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_get_state(const struct device * dev, enum can_state * state, struct can_bus_err_cnt * err_cnt); + +__pinned_func +static inline int can_get_state(const struct device * dev, enum can_state * state, struct can_bus_err_cnt * err_cnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum can_state * val; } parm1 = { .val = state }; + union { uintptr_t x; struct can_bus_err_cnt * val; } parm2 = { .val = err_cnt }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CAN_GET_STATE); + } +#endif + compiler_barrier(); + return z_impl_can_get_state(dev, state, err_cnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_state(dev, state, err_cnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_STATE, can_get_state, dev, state, err_cnt); syscall__retval = can_get_state(dev, state, err_cnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_STATE, can_get_state, dev, state, err_cnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_recover(const struct device * dev, k_timeout_t timeout); + +__pinned_func +static inline int can_recover(const struct device * dev, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_CAN_RECOVER); + } +#endif + compiler_barrier(); + return z_impl_can_recover(dev, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_recover(dev, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_RECOVER, can_recover, dev, timeout); syscall__retval = can_recover(dev, timeout); sys_port_trace_syscall_exit(K_SYSCALL_CAN_RECOVER, can_recover, dev, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT_ERRORS, can_stats_get_bit_errors, dev); syscall__retval = can_stats_get_bit_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT_ERRORS, can_stats_get_bit_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit0_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit0_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit0_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit0_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS, can_stats_get_bit0_errors, dev); syscall__retval = can_stats_get_bit0_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS, can_stats_get_bit0_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit1_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit1_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit1_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit1_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS, can_stats_get_bit1_errors, dev); syscall__retval = can_stats_get_bit1_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS, can_stats_get_bit1_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_stuff_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_stuff_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_stuff_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_stuff_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS, can_stats_get_stuff_errors, dev); syscall__retval = can_stats_get_stuff_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS, can_stats_get_stuff_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_crc_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_crc_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_CRC_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_crc_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_crc_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_CRC_ERRORS, can_stats_get_crc_errors, dev); syscall__retval = can_stats_get_crc_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_CRC_ERRORS, can_stats_get_crc_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_form_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_form_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_FORM_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_form_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_form_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_FORM_ERRORS, can_stats_get_form_errors, dev); syscall__retval = can_stats_get_form_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_FORM_ERRORS, can_stats_get_form_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_ack_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_ack_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_ACK_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_ack_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_ack_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_ACK_ERRORS, can_stats_get_ack_errors, dev); syscall__retval = can_stats_get_ack_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_ACK_ERRORS, can_stats_get_ack_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_rx_overruns(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_rx_overruns(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_rx_overruns(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_rx_overruns(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS, can_stats_get_rx_overruns, dev); syscall__retval = can_stats_get_rx_overruns(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS, can_stats_get_rx_overruns, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/charger.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/charger.h new file mode 100644 index 0000000..e78ba1d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/charger.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CHARGER_H +#define Z_INCLUDE_SYSCALLS_CHARGER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_charger_get_prop(const struct device * dev, const charger_prop_t prop, union charger_propval * val); + +__pinned_func +static inline int charger_get_prop(const struct device * dev, const charger_prop_t prop, union charger_propval * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const charger_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union charger_propval * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CHARGER_GET_PROP); + } +#endif + compiler_barrier(); + return z_impl_charger_get_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_get_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_GET_PROP, charger_get_prop, dev, prop, val); syscall__retval = charger_get_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_GET_PROP, charger_get_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_charger_set_prop(const struct device * dev, const charger_prop_t prop, const union charger_propval * val); + +__pinned_func +static inline int charger_set_prop(const struct device * dev, const charger_prop_t prop, const union charger_propval * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const charger_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; const union charger_propval * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CHARGER_SET_PROP); + } +#endif + compiler_barrier(); + return z_impl_charger_set_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_set_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_SET_PROP, charger_set_prop, dev, prop, val); syscall__retval = charger_set_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_SET_PROP, charger_set_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_charger_charge_enable(const struct device * dev, const bool enable); + +__pinned_func +static inline int charger_charge_enable(const struct device * dev, const bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CHARGER_CHARGE_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_charger_charge_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_charge_enable(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_CHARGE_ENABLE, charger_charge_enable, dev, enable); syscall__retval = charger_charge_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_CHARGE_ENABLE, charger_charge_enable, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/clock.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/clock.h new file mode 100644 index 0000000..36a99e6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/clock.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CLOCK_H +#define Z_INCLUDE_SYSCALLS_CLOCK_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sys_clock_getrtoffset(struct timespec * tp); + +__pinned_func +static inline void sys_clock_getrtoffset(struct timespec * tp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct timespec * val; } parm0 = { .val = tp }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_SYS_CLOCK_GETRTOFFSET); + return; + } +#endif + compiler_barrier(); + z_impl_sys_clock_getrtoffset(tp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_getrtoffset(tp) do { sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_GETRTOFFSET, sys_clock_getrtoffset, tp); sys_clock_getrtoffset(tp); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_GETRTOFFSET, sys_clock_getrtoffset, tp); } while(false) +#endif +#endif + + +extern int z_impl_sys_clock_settime(int clock_id, const struct timespec * tp); + +__pinned_func +static inline int sys_clock_settime(int clock_id, const struct timespec * tp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = clock_id }; + union { uintptr_t x; const struct timespec * val; } parm1 = { .val = tp }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CLOCK_SETTIME); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_settime(clock_id, tp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_settime(clock_id, tp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_SETTIME, sys_clock_settime, clock_id, tp); syscall__retval = sys_clock_settime(clock_id, tp); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_SETTIME, sys_clock_settime, clock_id, tp, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_clock_nanosleep(int clock_id, int flags, const struct timespec * rqtp, struct timespec * rmtp); + +__pinned_func +static inline int sys_clock_nanosleep(int clock_id, int flags, const struct timespec * rqtp, struct timespec * rmtp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = clock_id }; + union { uintptr_t x; int val; } parm1 = { .val = flags }; + union { uintptr_t x; const struct timespec * val; } parm2 = { .val = rqtp }; + union { uintptr_t x; struct timespec * val; } parm3 = { .val = rmtp }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SYS_CLOCK_NANOSLEEP); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_nanosleep(clock_id, flags, rqtp, rmtp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_nanosleep(clock_id, flags, rqtp, rmtp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_NANOSLEEP, sys_clock_nanosleep, clock_id, flags, rqtp, rmtp); syscall__retval = sys_clock_nanosleep(clock_id, flags, rqtp, rmtp); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_NANOSLEEP, sys_clock_nanosleep, clock_id, flags, rqtp, rmtp, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/comparator.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/comparator.h new file mode 100644 index 0000000..dfae6e5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/comparator.h @@ -0,0 +1,98 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_COMPARATOR_H +#define Z_INCLUDE_SYSCALLS_COMPARATOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_comparator_get_output(const struct device * dev); + +__pinned_func +static inline int comparator_get_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COMPARATOR_GET_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_comparator_get_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_get_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_GET_OUTPUT, comparator_get_output, dev); syscall__retval = comparator_get_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_GET_OUTPUT, comparator_get_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_comparator_set_trigger(const struct device * dev, enum comparator_trigger trigger); + +__pinned_func +static inline int comparator_set_trigger(const struct device * dev, enum comparator_trigger trigger) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum comparator_trigger val; } parm1 = { .val = trigger }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COMPARATOR_SET_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_comparator_set_trigger(dev, trigger); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_set_trigger(dev, trigger) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_SET_TRIGGER, comparator_set_trigger, dev, trigger); syscall__retval = comparator_set_trigger(dev, trigger); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_SET_TRIGGER, comparator_set_trigger, dev, trigger, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_comparator_trigger_is_pending(const struct device * dev); + +__pinned_func +static inline int comparator_trigger_is_pending(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_comparator_trigger_is_pending(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_trigger_is_pending(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING, comparator_trigger_is_pending, dev); syscall__retval = comparator_trigger_is_pending(dev); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING, comparator_trigger_is_pending, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/counter.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/counter.h new file mode 100644 index 0000000..52e8e43 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/counter.h @@ -0,0 +1,481 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_COUNTER_H +#define Z_INCLUDE_SYSCALLS_COUNTER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern bool z_impl_counter_is_counting_up(const struct device * dev); + +__pinned_func +static inline bool counter_is_counting_up(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_IS_COUNTING_UP); + } +#endif + compiler_barrier(); + return z_impl_counter_is_counting_up(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_is_counting_up(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_IS_COUNTING_UP, counter_is_counting_up, dev); syscall__retval = counter_is_counting_up(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_IS_COUNTING_UP, counter_is_counting_up, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint8_t z_impl_counter_get_num_of_channels(const struct device * dev); + +__pinned_func +static inline uint8_t counter_get_num_of_channels(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint8_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS); + } +#endif + compiler_barrier(); + return z_impl_counter_get_num_of_channels(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_num_of_channels(dev) ({ uint8_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS, counter_get_num_of_channels, dev); syscall__retval = counter_get_num_of_channels(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS, counter_get_num_of_channels, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_frequency(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_frequency(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_FREQUENCY); + } +#endif + compiler_barrier(); + return z_impl_counter_get_frequency(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_frequency(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_FREQUENCY, counter_get_frequency, dev); syscall__retval = counter_get_frequency(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_FREQUENCY, counter_get_frequency, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_us_to_ticks(const struct device * dev, uint64_t us); + +__pinned_func +static inline uint32_t counter_us_to_ticks(const struct device * dev, uint64_t us) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = us }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_COUNTER_US_TO_TICKS); + } +#endif + compiler_barrier(); + return z_impl_counter_us_to_ticks(dev, us); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_us_to_ticks(dev, us) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_US_TO_TICKS, counter_us_to_ticks, dev, us); syscall__retval = counter_us_to_ticks(dev, us); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_US_TO_TICKS, counter_us_to_ticks, dev, us, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_us(const struct device * dev, uint32_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_us(const struct device * dev, uint32_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_US); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_us(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_us(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_US, counter_ticks_to_us, dev, ticks); syscall__retval = counter_ticks_to_us(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_US, counter_ticks_to_us, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_ns(const struct device * dev, uint32_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_ns(const struct device * dev, uint32_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_NS); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_ns(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_ns(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_NS, counter_ticks_to_ns, dev, ticks); syscall__retval = counter_ticks_to_ns(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_NS, counter_ticks_to_ns, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_max_top_value(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_max_top_value(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_max_top_value(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_max_top_value(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE, counter_get_max_top_value, dev); syscall__retval = counter_get_max_top_value(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE, counter_get_max_top_value, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_start(const struct device * dev); + +__pinned_func +static inline int counter_start(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_START); + } +#endif + compiler_barrier(); + return z_impl_counter_start(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_start(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_START, counter_start, dev); syscall__retval = counter_start(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_START, counter_start, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_stop(const struct device * dev); + +__pinned_func +static inline int counter_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_STOP); + } +#endif + compiler_barrier(); + return z_impl_counter_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_STOP, counter_stop, dev); syscall__retval = counter_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_STOP, counter_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_value(const struct device * dev, uint32_t * ticks); + +__pinned_func +static inline int counter_get_value(const struct device * dev, uint32_t * ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_value(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_value(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_VALUE, counter_get_value, dev, ticks); syscall__retval = counter_get_value(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_VALUE, counter_get_value, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_value_64(const struct device * dev, uint64_t * ticks); + +__pinned_func +static inline int counter_get_value_64(const struct device * dev, uint64_t * ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_VALUE_64); + } +#endif + compiler_barrier(); + return z_impl_counter_get_value_64(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_value_64(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_VALUE_64, counter_get_value_64, dev, ticks); syscall__retval = counter_get_value_64(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_VALUE_64, counter_get_value_64, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_reset(const struct device * dev); + +__pinned_func +static inline int counter_reset(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_RESET); + } +#endif + compiler_barrier(); + return z_impl_counter_reset(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_reset(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_RESET, counter_reset, dev); syscall__retval = counter_reset(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_RESET, counter_reset, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_channel_alarm(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg * alarm_cfg); + +__pinned_func +static inline int counter_set_channel_alarm(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg * alarm_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + union { uintptr_t x; const struct counter_alarm_cfg * val; } parm2 = { .val = alarm_cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_CHANNEL_ALARM); + } +#endif + compiler_barrier(); + return z_impl_counter_set_channel_alarm(dev, chan_id, alarm_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_channel_alarm(dev, chan_id, alarm_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM, counter_set_channel_alarm, dev, chan_id, alarm_cfg); syscall__retval = counter_set_channel_alarm(dev, chan_id, alarm_cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM, counter_set_channel_alarm, dev, chan_id, alarm_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_cancel_channel_alarm(const struct device * dev, uint8_t chan_id); + +__pinned_func +static inline int counter_cancel_channel_alarm(const struct device * dev, uint8_t chan_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM); + } +#endif + compiler_barrier(); + return z_impl_counter_cancel_channel_alarm(dev, chan_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_cancel_channel_alarm(dev, chan_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM, counter_cancel_channel_alarm, dev, chan_id); syscall__retval = counter_cancel_channel_alarm(dev, chan_id); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM, counter_cancel_channel_alarm, dev, chan_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_top_value(const struct device * dev, const struct counter_top_cfg * cfg); + +__pinned_func +static inline int counter_set_top_value(const struct device * dev, const struct counter_top_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct counter_top_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_SET_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_set_top_value(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_top_value(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_TOP_VALUE, counter_set_top_value, dev, cfg); syscall__retval = counter_set_top_value(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_TOP_VALUE, counter_set_top_value, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_pending_int(const struct device * dev); + +__pinned_func +static inline int counter_get_pending_int(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_PENDING_INT); + } +#endif + compiler_barrier(); + return z_impl_counter_get_pending_int(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_pending_int(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_PENDING_INT, counter_get_pending_int, dev); syscall__retval = counter_get_pending_int(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_PENDING_INT, counter_get_pending_int, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_top_value(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_top_value(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_top_value(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_top_value(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_TOP_VALUE, counter_get_top_value, dev); syscall__retval = counter_get_top_value(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_TOP_VALUE, counter_get_top_value, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_guard_period(const struct device * dev, uint32_t ticks, uint32_t flags); + +__pinned_func +static inline int counter_set_guard_period(const struct device * dev, uint32_t ticks, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_GUARD_PERIOD); + } +#endif + compiler_barrier(); + return z_impl_counter_set_guard_period(dev, ticks, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_guard_period(dev, ticks, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_GUARD_PERIOD, counter_set_guard_period, dev, ticks, flags); syscall__retval = counter_set_guard_period(dev, ticks, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_GUARD_PERIOD, counter_set_guard_period, dev, ticks, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_guard_period(const struct device * dev, uint32_t flags); + +__pinned_func +static inline uint32_t counter_get_guard_period(const struct device * dev, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = flags }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_GUARD_PERIOD); + } +#endif + compiler_barrier(); + return z_impl_counter_get_guard_period(dev, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_guard_period(dev, flags) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_GUARD_PERIOD, counter_get_guard_period, dev, flags); syscall__retval = counter_get_guard_period(dev, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_GUARD_PERIOD, counter_get_guard_period, dev, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/crc.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/crc.h new file mode 100644 index 0000000..c719ca6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/crc.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CRC_H +#define Z_INCLUDE_SYSCALLS_CRC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_crc_begin(const struct device * dev, struct crc_ctx * ctx); + +__pinned_func +static inline int crc_begin(const struct device * dev, struct crc_ctx * ctx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct crc_ctx * val; } parm1 = { .val = ctx }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CRC_BEGIN); + } +#endif + compiler_barrier(); + return z_impl_crc_begin(dev, ctx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define crc_begin(dev, ctx) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CRC_BEGIN, crc_begin, dev, ctx); syscall__retval = crc_begin(dev, ctx); sys_port_trace_syscall_exit(K_SYSCALL_CRC_BEGIN, crc_begin, dev, ctx, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_crc_update(const struct device * dev, struct crc_ctx * ctx, const void * buffer, size_t bufsize); + +__pinned_func +static inline int crc_update(const struct device * dev, struct crc_ctx * ctx, const void * buffer, size_t bufsize) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct crc_ctx * val; } parm1 = { .val = ctx }; + union { uintptr_t x; const void * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = bufsize }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CRC_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_crc_update(dev, ctx, buffer, bufsize); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define crc_update(dev, ctx, buffer, bufsize) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CRC_UPDATE, crc_update, dev, ctx, buffer, bufsize); syscall__retval = crc_update(dev, ctx, buffer, bufsize); sys_port_trace_syscall_exit(K_SYSCALL_CRC_UPDATE, crc_update, dev, ctx, buffer, bufsize, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_crc_finish(const struct device * dev, struct crc_ctx * ctx); + +__pinned_func +static inline int crc_finish(const struct device * dev, struct crc_ctx * ctx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct crc_ctx * val; } parm1 = { .val = ctx }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CRC_FINISH); + } +#endif + compiler_barrier(); + return z_impl_crc_finish(dev, ctx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define crc_finish(dev, ctx) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CRC_FINISH, crc_finish, dev, ctx); syscall__retval = crc_finish(dev, ctx); sys_port_trace_syscall_exit(K_SYSCALL_CRC_FINISH, crc_finish, dev, ctx, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/dac.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/dac.h new file mode 100644 index 0000000..4e61714 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/dac.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DAC_H +#define Z_INCLUDE_SYSCALLS_DAC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_dac_channel_setup(const struct device * dev, const struct dac_channel_cfg * channel_cfg); + +__pinned_func +static inline int dac_channel_setup(const struct device * dev, const struct dac_channel_cfg * channel_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct dac_channel_cfg * val; } parm1 = { .val = channel_cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DAC_CHANNEL_SETUP); + } +#endif + compiler_barrier(); + return z_impl_dac_channel_setup(dev, channel_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dac_channel_setup(dev, channel_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAC_CHANNEL_SETUP, dac_channel_setup, dev, channel_cfg); syscall__retval = dac_channel_setup(dev, channel_cfg); sys_port_trace_syscall_exit(K_SYSCALL_DAC_CHANNEL_SETUP, dac_channel_setup, dev, channel_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dac_write_value(const struct device * dev, uint8_t channel, uint32_t value); + +__pinned_func +static inline int dac_write_value(const struct device * dev, uint8_t channel, uint32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAC_WRITE_VALUE); + } +#endif + compiler_barrier(); + return z_impl_dac_write_value(dev, channel, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dac_write_value(dev, channel, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAC_WRITE_VALUE, dac_write_value, dev, channel, value); syscall__retval = dac_write_value(dev, channel, value); sys_port_trace_syscall_exit(K_SYSCALL_DAC_WRITE_VALUE, dac_write_value, dev, channel, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/demand_paging.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/demand_paging.h new file mode 100644 index 0000000..7887736 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/demand_paging.h @@ -0,0 +1,149 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEMAND_PAGING_H +#define Z_INCLUDE_SYSCALLS_DEMAND_PAGING_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_k_mem_paging_stats_get(struct k_mem_paging_stats_t * stats); + +__pinned_func +static inline void k_mem_paging_stats_get(struct k_mem_paging_stats_t * stats) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_stats_t * val; } parm0 = { .val = stats }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_STATS_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_stats_get(stats); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_stats_get(stats) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_STATS_GET, k_mem_paging_stats_get, stats); k_mem_paging_stats_get(stats); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_STATS_GET, k_mem_paging_stats_get, stats); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_thread_stats_get(struct k_thread * thread, struct k_mem_paging_stats_t * stats); + +__pinned_func +static inline void k_mem_paging_thread_stats_get(struct k_thread * thread, struct k_mem_paging_stats_t * stats) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; struct k_mem_paging_stats_t * val; } parm1 = { .val = stats }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_thread_stats_get(thread, stats); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_thread_stats_get(thread, stats) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET, k_mem_paging_thread_stats_get, thread, stats); k_mem_paging_thread_stats_get(thread, stats); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET, k_mem_paging_thread_stats_get, thread, stats); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_eviction_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_eviction_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_eviction_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_eviction_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET, k_mem_paging_histogram_eviction_get, hist); k_mem_paging_histogram_eviction_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET, k_mem_paging_histogram_eviction_get, hist); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_backing_store_page_in_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_backing_store_page_in_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_backing_store_page_in_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_backing_store_page_in_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET, k_mem_paging_histogram_backing_store_page_in_get, hist); k_mem_paging_histogram_backing_store_page_in_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET, k_mem_paging_histogram_backing_store_page_in_get, hist); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_backing_store_page_out_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_backing_store_page_out_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_backing_store_page_out_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_backing_store_page_out_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET, k_mem_paging_histogram_backing_store_page_out_get, hist); k_mem_paging_histogram_backing_store_page_out_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET, k_mem_paging_histogram_backing_store_page_out_get, hist); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/device.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/device.h new file mode 100644 index 0000000..bcdb837 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/device.h @@ -0,0 +1,143 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEVICE_H +#define Z_INCLUDE_SYSCALLS_DEVICE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct device * z_impl_device_get_binding(const char * name); + +__pinned_func +static inline const struct device * device_get_binding(const char * name) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = name }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_GET_BINDING); + } +#endif + compiler_barrier(); + return z_impl_device_get_binding(name); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_get_binding(name) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_GET_BINDING, device_get_binding, name); syscall__retval = device_get_binding(name); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_GET_BINDING, device_get_binding, name, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_device_is_ready(const struct device * dev); + +__pinned_func +static inline bool device_is_ready(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_IS_READY); + } +#endif + compiler_barrier(); + return z_impl_device_is_ready(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_is_ready(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_IS_READY, device_is_ready, dev); syscall__retval = device_is_ready(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_IS_READY, device_is_ready, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_device_init(const struct device * dev); + +__pinned_func +static inline int device_init(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_INIT); + } +#endif + compiler_barrier(); + return z_impl_device_init(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_init(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_INIT, device_init, dev); syscall__retval = device_init(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_INIT, device_init, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_device_deinit(const struct device * dev); + +__pinned_func +static inline int device_deinit(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_DEINIT); + } +#endif + compiler_barrier(); + return z_impl_device_deinit(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_deinit(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_DEINIT, device_deinit, dev); syscall__retval = device_deinit(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_DEINIT, device_deinit, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct device * z_impl_device_get_by_dt_nodelabel(const char * nodelabel); + +__pinned_func +static inline const struct device * device_get_by_dt_nodelabel(const char * nodelabel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = nodelabel }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL); + } +#endif + compiler_barrier(); + return z_impl_device_get_by_dt_nodelabel(nodelabel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_get_by_dt_nodelabel(nodelabel) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL, device_get_by_dt_nodelabel, nodelabel); syscall__retval = device_get_by_dt_nodelabel(nodelabel); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL, device_get_by_dt_nodelabel, nodelabel, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/devmux.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/devmux.h new file mode 100644 index 0000000..dc5b4a9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/devmux.h @@ -0,0 +1,75 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEVMUX_H +#define Z_INCLUDE_SYSCALLS_DEVMUX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_devmux_select_get(const struct device * dev); + +__pinned_func +static inline int devmux_select_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVMUX_SELECT_GET); + } +#endif + compiler_barrier(); + return z_impl_devmux_select_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define devmux_select_get(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVMUX_SELECT_GET, devmux_select_get, dev); syscall__retval = devmux_select_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVMUX_SELECT_GET, devmux_select_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_devmux_select_set(struct device * dev, size_t index); + +__pinned_func +static inline int devmux_select_set(struct device * dev, size_t index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = index }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DEVMUX_SELECT_SET); + } +#endif + compiler_barrier(); + return z_impl_devmux_select_set(dev, index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define devmux_select_set(dev, index) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVMUX_SELECT_SET, devmux_select_set, dev, index); syscall__retval = devmux_select_set(dev, index); sys_port_trace_syscall_exit(K_SYSCALL_DEVMUX_SELECT_SET, devmux_select_set, dev, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/eeprom.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/eeprom.h new file mode 100644 index 0000000..4034552 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/eeprom.h @@ -0,0 +1,103 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_EEPROM_H +#define Z_INCLUDE_SYSCALLS_EEPROM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_eeprom_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int eeprom_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_EEPROM_READ); + } +#endif + compiler_barrier(); + return z_impl_eeprom_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_READ, eeprom_read, dev, offset, data, len); syscall__retval = eeprom_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_READ, eeprom_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_eeprom_write(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int eeprom_write(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_EEPROM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_eeprom_write(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_write(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_WRITE, eeprom_write, dev, offset, data, len); syscall__retval = eeprom_write(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_WRITE, eeprom_write, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_eeprom_get_size(const struct device * dev); + +__pinned_func +static inline size_t eeprom_get_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_EEPROM_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_eeprom_get_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_get_size(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_GET_SIZE, eeprom_get_size, dev); syscall__retval = eeprom_get_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_GET_SIZE, eeprom_get_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h new file mode 100644 index 0000000..d54cdec --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_EMUL_FUEL_GAUGE_H +#define Z_INCLUDE_SYSCALLS_EMUL_FUEL_GAUGE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_emul_fuel_gauge_set_battery_charging(const struct emul * target, uint32_t uV, int uA); + +__pinned_func +static inline int emul_fuel_gauge_set_battery_charging(const struct emul * target, uint32_t uV, int uA) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct emul * val; } parm0 = { .val = target }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = uV }; + union { uintptr_t x; int val; } parm2 = { .val = uA }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING); + } +#endif + compiler_barrier(); + return z_impl_emul_fuel_gauge_set_battery_charging(target, uV, uA); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define emul_fuel_gauge_set_battery_charging(target, uV, uA) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING, emul_fuel_gauge_set_battery_charging, target, uV, uA); syscall__retval = emul_fuel_gauge_set_battery_charging(target, uV, uA); sys_port_trace_syscall_exit(K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING, emul_fuel_gauge_set_battery_charging, target, uV, uA, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_emul_fuel_gauge_is_battery_cutoff(const struct emul * target, bool * cutoff); + +__pinned_func +static inline int emul_fuel_gauge_is_battery_cutoff(const struct emul * target, bool * cutoff) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct emul * val; } parm0 = { .val = target }; + union { uintptr_t x; bool * val; } parm1 = { .val = cutoff }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF); + } +#endif + compiler_barrier(); + return z_impl_emul_fuel_gauge_is_battery_cutoff(target, cutoff); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define emul_fuel_gauge_is_battery_cutoff(target, cutoff) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF, emul_fuel_gauge_is_battery_cutoff, target, cutoff); syscall__retval = emul_fuel_gauge_is_battery_cutoff(target, cutoff); sys_port_trace_syscall_exit(K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF, emul_fuel_gauge_is_battery_cutoff, target, cutoff, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/entropy.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/entropy.h new file mode 100644 index 0000000..543cc20 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/entropy.h @@ -0,0 +1,53 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ENTROPY_H +#define Z_INCLUDE_SYSCALLS_ENTROPY_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_entropy_get_entropy(const struct device * dev, uint8_t * buffer, uint16_t length); + +__pinned_func +static inline int entropy_get_entropy(const struct device * dev, uint8_t * buffer, uint16_t length) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = length }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ENTROPY_GET_ENTROPY); + } +#endif + compiler_barrier(); + return z_impl_entropy_get_entropy(dev, buffer, length); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define entropy_get_entropy(dev, buffer, length) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ENTROPY_GET_ENTROPY, entropy_get_entropy, dev, buffer, length); syscall__retval = entropy_get_entropy(dev, buffer, length); sys_port_trace_syscall_exit(K_SYSCALL_ENTROPY_GET_ENTROPY, entropy_get_entropy, dev, buffer, length, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/errno_private.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/errno_private.h new file mode 100644 index 0000000..4c4571c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/errno_private.h @@ -0,0 +1,43 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ERRNO_PRIVATE_H +#define Z_INCLUDE_SYSCALLS_ERRNO_PRIVATE_H + + + + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int * z_impl_z_errno(void); + +__pinned_func +static inline int * z_errno(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int *) arch_syscall_invoke0(K_SYSCALL_Z_ERRNO); + } +#endif + compiler_barrier(); + return z_impl_z_errno(); +} + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/error.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/error.h new file mode 100644 index 0000000..8ae9708 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/error.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ERROR_H +#define Z_INCLUDE_SYSCALLS_ERROR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_user_fault(unsigned int reason); + +__pinned_func +static inline void user_fault(unsigned int reason) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; unsigned int val; } parm0 = { .val = reason }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_USER_FAULT); + return; + } +#endif + compiler_barrier(); + z_impl_user_fault(reason); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define user_fault(reason) do { sys_port_trace_syscall_enter(K_SYSCALL_USER_FAULT, user_fault, reason); user_fault(reason); sys_port_trace_syscall_exit(K_SYSCALL_USER_FAULT, user_fault, reason); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/espi.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/espi.h new file mode 100644 index 0000000..b633999 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/espi.h @@ -0,0 +1,344 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ESPI_H +#define Z_INCLUDE_SYSCALLS_ESPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_espi_config(const struct device * dev, struct espi_cfg * cfg); + +__pinned_func +static inline int espi_config(const struct device * dev, struct espi_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_espi_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_CONFIG, espi_config, dev, cfg); syscall__retval = espi_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_CONFIG, espi_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_espi_get_channel_status(const struct device * dev, enum espi_channel ch); + +__pinned_func +static inline bool espi_get_channel_status(const struct device * dev, enum espi_channel ch) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_channel val; } parm1 = { .val = ch }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_espi_get_channel_status(dev, ch); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_get_channel_status(dev, ch) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_GET_CHANNEL_STATUS, espi_get_channel_status, dev, ch); syscall__retval = espi_get_channel_status(dev, ch); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_GET_CHANNEL_STATUS, espi_get_channel_status, dev, ch, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_request(const struct device * dev, struct espi_request_packet * req); + +__pinned_func +static inline int espi_read_request(const struct device * dev, struct espi_request_packet * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_request_packet * val; } parm1 = { .val = req }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_READ_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_read_request(dev, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_request(dev, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_REQUEST, espi_read_request, dev, req); syscall__retval = espi_read_request(dev, req); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_REQUEST, espi_read_request, dev, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_request(const struct device * dev, struct espi_request_packet * req); + +__pinned_func +static inline int espi_write_request(const struct device * dev, struct espi_request_packet * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_request_packet * val; } parm1 = { .val = req }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_WRITE_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_write_request(dev, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_request(dev, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_REQUEST, espi_write_request, dev, req); syscall__retval = espi_write_request(dev, req); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_REQUEST, espi_write_request, dev, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data); + +__pinned_func +static inline int espi_read_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum lpc_peripheral_opcode val; } parm1 = { .val = op }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_READ_LPC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_read_lpc_request(dev, op, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_lpc_request(dev, op, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_LPC_REQUEST, espi_read_lpc_request, dev, op, data); syscall__retval = espi_read_lpc_request(dev, op, data); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_LPC_REQUEST, espi_read_lpc_request, dev, op, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data); + +__pinned_func +static inline int espi_write_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum lpc_peripheral_opcode val; } parm1 = { .val = op }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_WRITE_LPC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_write_lpc_request(dev, op, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_lpc_request(dev, op, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_LPC_REQUEST, espi_write_lpc_request, dev, op, data); syscall__retval = espi_write_lpc_request(dev, op, data); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_LPC_REQUEST, espi_write_lpc_request, dev, op, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_send_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t level); + +__pinned_func +static inline int espi_send_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_vwire_signal val; } parm1 = { .val = signal }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = level }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_SEND_VWIRE); + } +#endif + compiler_barrier(); + return z_impl_espi_send_vwire(dev, signal, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_send_vwire(dev, signal, level) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SEND_VWIRE, espi_send_vwire, dev, signal, level); syscall__retval = espi_send_vwire(dev, signal, level); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SEND_VWIRE, espi_send_vwire, dev, signal, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_receive_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t * level); + +__pinned_func +static inline int espi_receive_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t * level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_vwire_signal val; } parm1 = { .val = signal }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = level }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_RECEIVE_VWIRE); + } +#endif + compiler_barrier(); + return z_impl_espi_receive_vwire(dev, signal, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_receive_vwire(dev, signal, level) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_RECEIVE_VWIRE, espi_receive_vwire, dev, signal, level); syscall__retval = espi_receive_vwire(dev, signal, level); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_RECEIVE_VWIRE, espi_receive_vwire, dev, signal, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_send_oob(const struct device * dev, struct espi_oob_packet * pckt); + +__pinned_func +static inline int espi_send_oob(const struct device * dev, struct espi_oob_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_oob_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SEND_OOB); + } +#endif + compiler_barrier(); + return z_impl_espi_send_oob(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_send_oob(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SEND_OOB, espi_send_oob, dev, pckt); syscall__retval = espi_send_oob(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SEND_OOB, espi_send_oob, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_receive_oob(const struct device * dev, struct espi_oob_packet * pckt); + +__pinned_func +static inline int espi_receive_oob(const struct device * dev, struct espi_oob_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_oob_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_RECEIVE_OOB); + } +#endif + compiler_barrier(); + return z_impl_espi_receive_oob(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_receive_oob(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_RECEIVE_OOB, espi_receive_oob, dev, pckt); syscall__retval = espi_receive_oob(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_RECEIVE_OOB, espi_receive_oob, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_flash(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_read_flash(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_READ_FLASH); + } +#endif + compiler_barrier(); + return z_impl_espi_read_flash(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_flash(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_FLASH, espi_read_flash, dev, pckt); syscall__retval = espi_read_flash(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_FLASH, espi_read_flash, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_flash(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_write_flash(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_WRITE_FLASH); + } +#endif + compiler_barrier(); + return z_impl_espi_write_flash(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_flash(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_FLASH, espi_write_flash, dev, pckt); syscall__retval = espi_write_flash(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_FLASH, espi_write_flash, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_flash_erase(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_flash_erase(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_espi_flash_erase(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_flash_erase(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_FLASH_ERASE, espi_flash_erase, dev, pckt); syscall__retval = espi_flash_erase(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_FLASH_ERASE, espi_flash_erase, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/espi_saf.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/espi_saf.h new file mode 100644 index 0000000..e345a18 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/espi_saf.h @@ -0,0 +1,218 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ESPI_SAF_H +#define Z_INCLUDE_SYSCALLS_ESPI_SAF_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_espi_saf_config(const struct device * dev, const struct espi_saf_cfg * cfg); + +__pinned_func +static inline int espi_saf_config(const struct device * dev, const struct espi_saf_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct espi_saf_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_CONFIG, espi_saf_config, dev, cfg); syscall__retval = espi_saf_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_CONFIG, espi_saf_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_set_protection_regions(const struct device * dev, const struct espi_saf_protection * pr); + +__pinned_func +static inline int espi_saf_set_protection_regions(const struct device * dev, const struct espi_saf_protection * pr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct espi_saf_protection * val; } parm1 = { .val = pr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_set_protection_regions(dev, pr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_set_protection_regions(dev, pr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS, espi_saf_set_protection_regions, dev, pr); syscall__retval = espi_saf_set_protection_regions(dev, pr); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS, espi_saf_set_protection_regions, dev, pr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_activate(const struct device * dev); + +__pinned_func +static inline int espi_saf_activate(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_ESPI_SAF_ACTIVATE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_activate(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_activate(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_ACTIVATE, espi_saf_activate, dev); syscall__retval = espi_saf_activate(dev); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_ACTIVATE, espi_saf_activate, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_espi_saf_get_channel_status(const struct device * dev); + +__pinned_func +static inline bool espi_saf_get_channel_status(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_get_channel_status(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_get_channel_status(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS, espi_saf_get_channel_status, dev); syscall__retval = espi_saf_get_channel_status(dev); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS, espi_saf_get_channel_status, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_read(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_read(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_READ); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_read(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_read(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_READ, espi_saf_flash_read, dev, pckt); syscall__retval = espi_saf_flash_read(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_READ, espi_saf_flash_read, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_write(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_write(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_WRITE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_write(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_write(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_WRITE, espi_saf_flash_write, dev, pckt); syscall__retval = espi_saf_flash_write(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_WRITE, espi_saf_flash_write, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_erase(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_erase(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_erase(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_erase(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_ERASE, espi_saf_flash_erase, dev, pckt); syscall__retval = espi_saf_flash_erase(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_ERASE, espi_saf_flash_erase, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_unsuccess(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_unsuccess(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_unsuccess(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_unsuccess(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS, espi_saf_flash_unsuccess, dev, pckt); syscall__retval = espi_saf_flash_unsuccess(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS, espi_saf_flash_unsuccess, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ethernet.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ethernet.h new file mode 100644 index 0000000..af01e98 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ethernet.h @@ -0,0 +1,51 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ETHERNET_H +#define Z_INCLUDE_SYSCALLS_ETHERNET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct device * z_impl_net_eth_get_ptp_clock_by_index(int index); + +__pinned_func +static inline const struct device * net_eth_get_ptp_clock_by_index(int index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_eth_get_ptp_clock_by_index(index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_eth_get_ptp_clock_by_index(index) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX, net_eth_get_ptp_clock_by_index, index); syscall__retval = net_eth_get_ptp_clock_by_index(index); sys_port_trace_syscall_exit(K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX, net_eth_get_ptp_clock_by_index, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/fdtable.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/fdtable.h new file mode 100644 index 0000000..7ef4114 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/fdtable.h @@ -0,0 +1,81 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FDTABLE_H +#define Z_INCLUDE_SYSCALLS_FDTABLE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_zvfs_poll(struct zvfs_pollfd * fds, int nfds, int poll_timeout); + +__pinned_func +static inline int zvfs_poll(struct zvfs_pollfd * fds, int nfds, int poll_timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct zvfs_pollfd * val; } parm0 = { .val = fds }; + union { uintptr_t x; int val; } parm1 = { .val = nfds }; + union { uintptr_t x; int val; } parm2 = { .val = poll_timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZVFS_POLL); + } +#endif + compiler_barrier(); + return z_impl_zvfs_poll(fds, nfds, poll_timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zvfs_poll(fds, nfds, poll_timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZVFS_POLL, zvfs_poll, fds, nfds, poll_timeout); syscall__retval = zvfs_poll(fds, nfds, poll_timeout); sys_port_trace_syscall_exit(K_SYSCALL_ZVFS_POLL, zvfs_poll, fds, nfds, poll_timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask); + +__pinned_func +static inline int zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = nfds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm1 = { .val = readfds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm2 = { .val = writefds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm3 = { .val = errorfds }; + union { uintptr_t x; const struct timespec *ZRESTRICT val; } parm4 = { .val = timeout }; + union { uintptr_t x; const void *ZRESTRICT val; } parm5 = { .val = sigmask }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZVFS_SELECT); + } +#endif + compiler_barrier(); + return z_impl_zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZVFS_SELECT, zvfs_select, nfds, readfds, writefds, errorfds, timeout, sigmask); syscall__retval = zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask); sys_port_trace_syscall_exit(K_SYSCALL_ZVFS_SELECT, zvfs_select, nfds, readfds, writefds, errorfds, timeout, sigmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/flash.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/flash.h new file mode 100644 index 0000000..b9d580d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/flash.h @@ -0,0 +1,408 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FLASH_H +#define Z_INCLUDE_SYSCALLS_FLASH_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_flash_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int flash_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_READ); + } +#endif + compiler_barrier(); + return z_impl_flash_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_READ, flash_read, dev, offset, data, len); syscall__retval = flash_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_READ, flash_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_write(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int flash_write(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_WRITE); + } +#endif + compiler_barrier(); + return z_impl_flash_write(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_write(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_WRITE, flash_write, dev, offset, data, len); syscall__retval = flash_write(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_WRITE, flash_write, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_erase(const struct device * dev, off_t offset, size_t size); + +__pinned_func +static inline int flash_erase(const struct device * dev, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_flash_erase(dev, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_erase(dev, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_ERASE, flash_erase, dev, offset, size); syscall__retval = flash_erase(dev, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_ERASE, flash_erase, dev, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_size(const struct device * dev, uint64_t * size); + +__pinned_func +static inline int flash_get_size(const struct device * dev, uint64_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_flash_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_SIZE, flash_get_size, dev, size); syscall__retval = flash_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_SIZE, flash_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_fill(const struct device * dev, uint8_t val, off_t offset, size_t size); + +__pinned_func +static inline int flash_fill(const struct device * dev, uint8_t val, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = val }; + union { uintptr_t x; off_t val; } parm2 = { .val = offset }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_FILL); + } +#endif + compiler_barrier(); + return z_impl_flash_fill(dev, val, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_fill(dev, val, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_FILL, flash_fill, dev, val, offset, size); syscall__retval = flash_fill(dev, val, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_FILL, flash_fill, dev, val, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_flatten(const struct device * dev, off_t offset, size_t size); + +__pinned_func +static inline int flash_flatten(const struct device * dev, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_FLATTEN); + } +#endif + compiler_barrier(); + return z_impl_flash_flatten(dev, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_flatten(dev, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_FLATTEN, flash_flatten, dev, offset, size); syscall__retval = flash_flatten(dev, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_FLATTEN, flash_flatten, dev, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_page_info_by_offs(const struct device * dev, off_t offset, struct flash_pages_info * info); + +__pinned_func +static inline int flash_get_page_info_by_offs(const struct device * dev, off_t offset, struct flash_pages_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; struct flash_pages_info * val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_info_by_offs(dev, offset, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_info_by_offs(dev, offset, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS, flash_get_page_info_by_offs, dev, offset, info); syscall__retval = flash_get_page_info_by_offs(dev, offset, info); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS, flash_get_page_info_by_offs, dev, offset, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_page_info_by_idx(const struct device * dev, uint32_t page_index, struct flash_pages_info * info); + +__pinned_func +static inline int flash_get_page_info_by_idx(const struct device * dev, uint32_t page_index, struct flash_pages_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = page_index }; + union { uintptr_t x; struct flash_pages_info * val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_info_by_idx(dev, page_index, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_info_by_idx(dev, page_index, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX, flash_get_page_info_by_idx, dev, page_index, info); syscall__retval = flash_get_page_info_by_idx(dev, page_index, info); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX, flash_get_page_info_by_idx, dev, page_index, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_flash_get_page_count(const struct device * dev); + +__pinned_func +static inline size_t flash_get_page_count(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_PAGE_COUNT); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_count(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_count(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_COUNT, flash_get_page_count, dev); syscall__retval = flash_get_page_count(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_COUNT, flash_get_page_count, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_sfdp_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int flash_sfdp_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_SFDP_READ); + } +#endif + compiler_barrier(); + return z_impl_flash_sfdp_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_sfdp_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SFDP_READ, flash_sfdp_read, dev, offset, data, len); syscall__retval = flash_sfdp_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SFDP_READ, flash_sfdp_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_read_jedec_id(const struct device * dev, uint8_t * id); + +__pinned_func +static inline int flash_read_jedec_id(const struct device * dev, uint8_t * id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_READ_JEDEC_ID); + } +#endif + compiler_barrier(); + return z_impl_flash_read_jedec_id(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_read_jedec_id(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_READ_JEDEC_ID, flash_read_jedec_id, dev, id); syscall__retval = flash_read_jedec_id(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_READ_JEDEC_ID, flash_read_jedec_id, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_flash_get_write_block_size(const struct device * dev); + +__pinned_func +static inline size_t flash_get_write_block_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE); + } +#endif + compiler_barrier(); + return z_impl_flash_get_write_block_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_write_block_size(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE, flash_get_write_block_size, dev); syscall__retval = flash_get_write_block_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE, flash_get_write_block_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct flash_parameters * z_impl_flash_get_parameters(const struct device * dev); + +__pinned_func +static inline const struct flash_parameters * flash_get_parameters(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct flash_parameters *) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_PARAMETERS); + } +#endif + compiler_barrier(); + return z_impl_flash_get_parameters(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_parameters(dev) ({ const struct flash_parameters * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PARAMETERS, flash_get_parameters, dev); syscall__retval = flash_get_parameters(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PARAMETERS, flash_get_parameters, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_ex_op(const struct device * dev, uint16_t code, const uintptr_t in, void * out); + +__pinned_func +static inline int flash_ex_op(const struct device * dev, uint16_t code, const uintptr_t in, void * out) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = code }; + union { uintptr_t x; const uintptr_t val; } parm2 = { .val = in }; + union { uintptr_t x; void * val; } parm3 = { .val = out }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_EX_OP); + } +#endif + compiler_barrier(); + return z_impl_flash_ex_op(dev, code, in, out); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_ex_op(dev, code, in, out) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_EX_OP, flash_ex_op, dev, code, in, out); syscall__retval = flash_ex_op(dev, code, in, out); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_EX_OP, flash_ex_op, dev, code, in, out, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_copy(const struct device * src_dev, off_t src_offset, const struct device * dst_dev, off_t dst_offset, off_t size, uint8_t * buf, size_t buf_size); + +__pinned_func +static inline int flash_copy(const struct device * src_dev, off_t src_offset, const struct device * dst_dev, off_t dst_offset, off_t size, uint8_t * buf, size_t buf_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = src_dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = src_offset }; + union { uintptr_t x; const struct device * val; } parm2 = { .val = dst_dev }; + union { uintptr_t x; off_t val; } parm3 = { .val = dst_offset }; + union { uintptr_t x; off_t val; } parm4 = { .val = size }; + union { uintptr_t x; uint8_t * val; } parm5 = { .val = buf }; + union { uintptr_t x; size_t val; } parm6 = { .val = buf_size }; + uintptr_t more[] = { + parm5.x, + parm6.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_FLASH_COPY); + } +#endif + compiler_barrier(); + return z_impl_flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_COPY, flash_copy, src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); syscall__retval = flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_COPY, flash_copy, src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/flash_simulator.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/flash_simulator.h new file mode 100644 index 0000000..705ed43 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/flash_simulator.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FLASH_SIMULATOR_H +#define Z_INCLUDE_SYSCALLS_FLASH_SIMULATOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void * z_impl_flash_simulator_get_memory(const struct device * dev, size_t * mock_size); + +__pinned_func +static inline void * flash_simulator_get_memory(const struct device * dev, size_t * mock_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = mock_size }; + return (void *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY); + } +#endif + compiler_barrier(); + return z_impl_flash_simulator_get_memory(dev, mock_size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_simulator_get_memory(dev, mock_size) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY, flash_simulator_get_memory, dev, mock_size); syscall__retval = flash_simulator_get_memory(dev, mock_size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY, flash_simulator_get_memory, dev, mock_size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h new file mode 100644 index 0000000..b06201d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h @@ -0,0 +1,179 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FUEL_GAUGE_H +#define Z_INCLUDE_SYSCALLS_FUEL_GAUGE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_fuel_gauge_get_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val * val); + +__pinned_func +static inline int fuel_gauge_get_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union fuel_gauge_prop_val * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FUEL_GAUGE_GET_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_PROP, fuel_gauge_get_prop, dev, prop, val); syscall__retval = fuel_gauge_get_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_PROP, fuel_gauge_get_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_get_props(const struct device * dev, const fuel_gauge_prop_t * props, union fuel_gauge_prop_val * vals, size_t len); + +__pinned_func +static inline int fuel_gauge_get_props(const struct device * dev, const fuel_gauge_prop_t * props, union fuel_gauge_prop_val * vals, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const fuel_gauge_prop_t * val; } parm1 = { .val = props }; + union { uintptr_t x; union fuel_gauge_prop_val * val; } parm2 = { .val = vals }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_GET_PROPS); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_props(dev, props, vals, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_props(dev, props, vals, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_PROPS, fuel_gauge_get_props, dev, props, vals, len); syscall__retval = fuel_gauge_get_props(dev, props, vals, len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_PROPS, fuel_gauge_get_props, dev, props, vals, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_set_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val); + +__pinned_func +static inline int fuel_gauge_set_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union fuel_gauge_prop_val val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FUEL_GAUGE_SET_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_set_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_set_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_SET_PROP, fuel_gauge_set_prop, dev, prop, val); syscall__retval = fuel_gauge_set_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_SET_PROP, fuel_gauge_set_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_set_props(const struct device * dev, const fuel_gauge_prop_t * props, const union fuel_gauge_prop_val * vals, size_t len); + +__pinned_func +static inline int fuel_gauge_set_props(const struct device * dev, const fuel_gauge_prop_t * props, const union fuel_gauge_prop_val * vals, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const fuel_gauge_prop_t * val; } parm1 = { .val = props }; + union { uintptr_t x; const union fuel_gauge_prop_val * val; } parm2 = { .val = vals }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_SET_PROPS); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_set_props(dev, props, vals, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_set_props(dev, props, vals, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_SET_PROPS, fuel_gauge_set_props, dev, props, vals, len); syscall__retval = fuel_gauge_set_props(dev, props, vals, len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_SET_PROPS, fuel_gauge_set_props, dev, props, vals, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_get_buffer_prop(const struct device * dev, fuel_gauge_prop_t prop_type, void * dst, size_t dst_len); + +__pinned_func +static inline int fuel_gauge_get_buffer_prop(const struct device * dev, fuel_gauge_prop_t prop_type, void * dst, size_t dst_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop_type }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + union { uintptr_t x; size_t val; } parm3 = { .val = dst_len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP, fuel_gauge_get_buffer_prop, dev, prop_type, dst, dst_len); syscall__retval = fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP, fuel_gauge_get_buffer_prop, dev, prop_type, dst, dst_len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_battery_cutoff(const struct device * dev); + +__pinned_func +static inline int fuel_gauge_battery_cutoff(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_battery_cutoff(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_battery_cutoff(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF, fuel_gauge_battery_cutoff, dev); syscall__retval = fuel_gauge_battery_cutoff(dev); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF, fuel_gauge_battery_cutoff, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/gnss.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/gnss.h new file mode 100644 index 0000000..0c64597 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/gnss.h @@ -0,0 +1,220 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_GNSS_H +#define Z_INCLUDE_SYSCALLS_GNSS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_gnss_set_fix_rate(const struct device * dev, uint32_t fix_interval_ms); + +__pinned_func +static inline int gnss_set_fix_rate(const struct device * dev, uint32_t fix_interval_ms) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = fix_interval_ms }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_FIX_RATE); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_fix_rate(dev, fix_interval_ms); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_fix_rate(dev, fix_interval_ms) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_FIX_RATE, gnss_set_fix_rate, dev, fix_interval_ms); syscall__retval = gnss_set_fix_rate(dev, fix_interval_ms); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_FIX_RATE, gnss_set_fix_rate, dev, fix_interval_ms, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_fix_rate(const struct device * dev, uint32_t * fix_interval_ms); + +__pinned_func +static inline int gnss_get_fix_rate(const struct device * dev, uint32_t * fix_interval_ms) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = fix_interval_ms }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_FIX_RATE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_fix_rate(dev, fix_interval_ms); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_fix_rate(dev, fix_interval_ms) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_FIX_RATE, gnss_get_fix_rate, dev, fix_interval_ms); syscall__retval = gnss_get_fix_rate(dev, fix_interval_ms); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_FIX_RATE, gnss_get_fix_rate, dev, fix_interval_ms, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_set_navigation_mode(const struct device * dev, enum gnss_navigation_mode mode); + +__pinned_func +static inline int gnss_set_navigation_mode(const struct device * dev, enum gnss_navigation_mode mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum gnss_navigation_mode val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_NAVIGATION_MODE); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_navigation_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_navigation_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_NAVIGATION_MODE, gnss_set_navigation_mode, dev, mode); syscall__retval = gnss_set_navigation_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_NAVIGATION_MODE, gnss_set_navigation_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_navigation_mode(const struct device * dev, enum gnss_navigation_mode * mode); + +__pinned_func +static inline int gnss_get_navigation_mode(const struct device * dev, enum gnss_navigation_mode * mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum gnss_navigation_mode * val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_NAVIGATION_MODE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_navigation_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_navigation_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_NAVIGATION_MODE, gnss_get_navigation_mode, dev, mode); syscall__retval = gnss_get_navigation_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_NAVIGATION_MODE, gnss_get_navigation_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_set_enabled_systems(const struct device * dev, gnss_systems_t systems); + +__pinned_func +static inline int gnss_set_enabled_systems(const struct device * dev, gnss_systems_t systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_enabled_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_enabled_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS, gnss_set_enabled_systems, dev, systems); syscall__retval = gnss_set_enabled_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS, gnss_set_enabled_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_enabled_systems(const struct device * dev, gnss_systems_t * systems); + +__pinned_func +static inline int gnss_get_enabled_systems(const struct device * dev, gnss_systems_t * systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t * val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_enabled_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_enabled_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS, gnss_get_enabled_systems, dev, systems); syscall__retval = gnss_get_enabled_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS, gnss_get_enabled_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_supported_systems(const struct device * dev, gnss_systems_t * systems); + +__pinned_func +static inline int gnss_get_supported_systems(const struct device * dev, gnss_systems_t * systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t * val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_supported_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_supported_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS, gnss_get_supported_systems, dev, systems); syscall__retval = gnss_get_supported_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS, gnss_get_supported_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_latest_timepulse(const struct device * dev, k_ticks_t * timestamp); + +__pinned_func +static inline int gnss_get_latest_timepulse(const struct device * dev, k_ticks_t * timestamp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; k_ticks_t * val; } parm1 = { .val = timestamp }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_latest_timepulse(dev, timestamp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_latest_timepulse(dev, timestamp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE, gnss_get_latest_timepulse, dev, timestamp); syscall__retval = gnss_get_latest_timepulse(dev, timestamp); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE, gnss_get_latest_timepulse, dev, timestamp, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/gpio.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/gpio.h new file mode 100644 index 0000000..74a1873 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/gpio.h @@ -0,0 +1,273 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_GPIO_H +#define Z_INCLUDE_SYSCALLS_GPIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_gpio_pin_interrupt_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags); + +__pinned_func +static inline int gpio_pin_interrupt_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_interrupt_configure(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_interrupt_configure(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE, gpio_pin_interrupt_configure, port, pin, flags); syscall__retval = gpio_pin_interrupt_configure(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE, gpio_pin_interrupt_configure, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_pin_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags); + +__pinned_func +static inline int gpio_pin_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_configure(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_configure(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_CONFIGURE, gpio_pin_configure, port, pin, flags); syscall__retval = gpio_pin_configure(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_CONFIGURE, gpio_pin_configure, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_get_direction(const struct device * port, gpio_port_pins_t map, gpio_port_pins_t * inputs, gpio_port_pins_t * outputs); + +__pinned_func +static inline int gpio_port_get_direction(const struct device * port, gpio_port_pins_t map, gpio_port_pins_t * inputs, gpio_port_pins_t * outputs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = map }; + union { uintptr_t x; gpio_port_pins_t * val; } parm2 = { .val = inputs }; + union { uintptr_t x; gpio_port_pins_t * val; } parm3 = { .val = outputs }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_GPIO_PORT_GET_DIRECTION); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_get_direction(port, map, inputs, outputs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_get_direction(port, map, inputs, outputs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_GET_DIRECTION, gpio_port_get_direction, port, map, inputs, outputs); syscall__retval = gpio_port_get_direction(port, map, inputs, outputs); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_GET_DIRECTION, gpio_port_get_direction, port, map, inputs, outputs, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_pin_get_config(const struct device * port, gpio_pin_t pin, gpio_flags_t * flags); + +__pinned_func +static inline int gpio_pin_get_config(const struct device * port, gpio_pin_t pin, gpio_flags_t * flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t * val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_get_config(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_get_config(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_GET_CONFIG, gpio_pin_get_config, port, pin, flags); syscall__retval = gpio_pin_get_config(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_GET_CONFIG, gpio_pin_get_config, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_get_raw(const struct device * port, gpio_port_value_t * value); + +__pinned_func +static inline int gpio_port_get_raw(const struct device * port, gpio_port_value_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_value_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_GET_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_get_raw(port, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_get_raw(port, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_GET_RAW, gpio_port_get_raw, port, value); syscall__retval = gpio_port_get_raw(port, value); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_GET_RAW, gpio_port_get_raw, port, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_set_masked_raw(const struct device * port, gpio_port_pins_t mask, gpio_port_value_t value); + +__pinned_func +static inline int gpio_port_set_masked_raw(const struct device * port, gpio_port_pins_t mask, gpio_port_value_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = mask }; + union { uintptr_t x; gpio_port_value_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PORT_SET_MASKED_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_set_masked_raw(port, mask, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_set_masked_raw(port, mask, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_SET_MASKED_RAW, gpio_port_set_masked_raw, port, mask, value); syscall__retval = gpio_port_set_masked_raw(port, mask, value); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_SET_MASKED_RAW, gpio_port_set_masked_raw, port, mask, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_set_bits_raw(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_set_bits_raw(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_SET_BITS_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_set_bits_raw(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_set_bits_raw(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_SET_BITS_RAW, gpio_port_set_bits_raw, port, pins); syscall__retval = gpio_port_set_bits_raw(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_SET_BITS_RAW, gpio_port_set_bits_raw, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_clear_bits_raw(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_clear_bits_raw(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_clear_bits_raw(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_clear_bits_raw(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW, gpio_port_clear_bits_raw, port, pins); syscall__retval = gpio_port_clear_bits_raw(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW, gpio_port_clear_bits_raw, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_toggle_bits(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_toggle_bits(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_TOGGLE_BITS); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_toggle_bits(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_toggle_bits(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_TOGGLE_BITS, gpio_port_toggle_bits, port, pins); syscall__retval = gpio_port_toggle_bits(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_TOGGLE_BITS, gpio_port_toggle_bits, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_get_pending_int(const struct device * dev); + +__pinned_func +static inline int gpio_get_pending_int(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_GPIO_GET_PENDING_INT); + } +#endif + compiler_barrier(); + return z_impl_gpio_get_pending_int(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_get_pending_int(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_GET_PENDING_INT, gpio_get_pending_int, dev); syscall__retval = gpio_get_pending_int(dev); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_GET_PENDING_INT, gpio_get_pending_int, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/haptics.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/haptics.h new file mode 100644 index 0000000..b6e30be --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/haptics.h @@ -0,0 +1,74 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HAPTICS_H +#define Z_INCLUDE_SYSCALLS_HAPTICS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_haptics_start_output(const struct device * dev); + +__pinned_func +static inline int haptics_start_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HAPTICS_START_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_haptics_start_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define haptics_start_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HAPTICS_START_OUTPUT, haptics_start_output, dev); syscall__retval = haptics_start_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_HAPTICS_START_OUTPUT, haptics_start_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_haptics_stop_output(const struct device * dev); + +__pinned_func +static inline int haptics_stop_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HAPTICS_STOP_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_haptics_stop_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define haptics_stop_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HAPTICS_STOP_OUTPUT, haptics_stop_output, dev); syscall__retval = haptics_stop_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_HAPTICS_STOP_OUTPUT, haptics_stop_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/hwinfo.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/hwinfo.h new file mode 100644 index 0000000..cd05615 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/hwinfo.h @@ -0,0 +1,143 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HWINFO_H +#define Z_INCLUDE_SYSCALLS_HWINFO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_hwinfo_get_device_id(uint8_t * buffer, size_t length); + +__pinned_func +static inline ssize_t hwinfo_get_device_id(uint8_t * buffer, size_t length) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint8_t * val; } parm0 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm1 = { .val = length }; + return (ssize_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_HWINFO_GET_DEVICE_ID); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_device_id(buffer, length); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_device_id(buffer, length) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_DEVICE_ID, hwinfo_get_device_id, buffer, length); syscall__retval = hwinfo_get_device_id(buffer, length); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_DEVICE_ID, hwinfo_get_device_id, buffer, length, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_device_eui64(uint8_t * buffer); + +__pinned_func +static inline int hwinfo_get_device_eui64(uint8_t * buffer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint8_t * val; } parm0 = { .val = buffer }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_DEVICE_EUI64); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_device_eui64(buffer); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_device_eui64(buffer) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_DEVICE_EUI64, hwinfo_get_device_eui64, buffer); syscall__retval = hwinfo_get_device_eui64(buffer); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_DEVICE_EUI64, hwinfo_get_device_eui64, buffer, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_reset_cause(uint32_t * cause); + +__pinned_func +static inline int hwinfo_get_reset_cause(uint32_t * cause) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t * val; } parm0 = { .val = cause }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_reset_cause(cause); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_reset_cause(cause) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_RESET_CAUSE, hwinfo_get_reset_cause, cause); syscall__retval = hwinfo_get_reset_cause(cause); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_RESET_CAUSE, hwinfo_get_reset_cause, cause, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_clear_reset_cause(void); + +__pinned_func +static inline int hwinfo_clear_reset_cause(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_clear_reset_cause(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_clear_reset_cause() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE, hwinfo_clear_reset_cause); syscall__retval = hwinfo_clear_reset_cause(); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE, hwinfo_clear_reset_cause, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_supported_reset_cause(uint32_t * supported); + +__pinned_func +static inline int hwinfo_get_supported_reset_cause(uint32_t * supported) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t * val; } parm0 = { .val = supported }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_supported_reset_cause(supported); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_supported_reset_cause(supported) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE, hwinfo_get_supported_reset_cause, supported); syscall__retval = hwinfo_get_supported_reset_cause(supported); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE, hwinfo_get_supported_reset_cause, supported, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i2c.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i2c.h new file mode 100644 index 0000000..8a11d7a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i2c.h @@ -0,0 +1,171 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I2C_H +#define Z_INCLUDE_SYSCALLS_I2C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i2c_configure(const struct device * dev, uint32_t dev_config); + +__pinned_func +static inline int i2c_configure(const struct device * dev, uint32_t dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I2C_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_i2c_configure(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_configure(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_CONFIGURE, i2c_configure, dev, dev_config); syscall__retval = i2c_configure(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_I2C_CONFIGURE, i2c_configure, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_get_config(const struct device * dev, uint32_t * dev_config); + +__pinned_func +static inline int i2c_get_config(const struct device * dev, uint32_t * dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I2C_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_i2c_get_config(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_get_config(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_GET_CONFIG, i2c_get_config, dev, dev_config); syscall__retval = i2c_get_config(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_I2C_GET_CONFIG, i2c_get_config, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_transfer(const struct device * dev, struct i2c_msg * msgs, uint8_t num_msgs, uint16_t addr); + +__pinned_func +static inline int i2c_transfer(const struct device * dev, struct i2c_msg * msgs, uint8_t num_msgs, uint16_t addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct i2c_msg * val; } parm1 = { .val = msgs }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_msgs }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = addr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_I2C_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_i2c_transfer(dev, msgs, num_msgs, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_transfer(dev, msgs, num_msgs, addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TRANSFER, i2c_transfer, dev, msgs, num_msgs, addr); syscall__retval = i2c_transfer(dev, msgs, num_msgs, addr); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TRANSFER, i2c_transfer, dev, msgs, num_msgs, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_recover_bus(const struct device * dev); + +__pinned_func +static inline int i2c_recover_bus(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_RECOVER_BUS); + } +#endif + compiler_barrier(); + return z_impl_i2c_recover_bus(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_recover_bus(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_RECOVER_BUS, i2c_recover_bus, dev); syscall__retval = i2c_recover_bus(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_RECOVER_BUS, i2c_recover_bus, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_target_driver_register(const struct device * dev); + +__pinned_func +static inline int i2c_target_driver_register(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_TARGET_DRIVER_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_i2c_target_driver_register(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_target_driver_register(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TARGET_DRIVER_REGISTER, i2c_target_driver_register, dev); syscall__retval = i2c_target_driver_register(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TARGET_DRIVER_REGISTER, i2c_target_driver_register, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_target_driver_unregister(const struct device * dev); + +__pinned_func +static inline int i2c_target_driver_unregister(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER); + } +#endif + compiler_barrier(); + return z_impl_i2c_target_driver_unregister(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_target_driver_unregister(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER, i2c_target_driver_unregister, dev); syscall__retval = i2c_target_driver_unregister(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER, i2c_target_driver_unregister, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i2s.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i2s.h new file mode 100644 index 0000000..3176fec --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i2s.h @@ -0,0 +1,128 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I2S_H +#define Z_INCLUDE_SYSCALLS_I2S_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i2s_configure(const struct device * dev, enum i2s_dir dir, const struct i2s_config * cfg); + +__pinned_func +static inline int i2s_configure(const struct device * dev, enum i2s_dir dir, const struct i2s_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum i2s_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; const struct i2s_config * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_i2s_configure(dev, dir, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_configure(dev, dir, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_CONFIGURE, i2s_configure, dev, dir, cfg); syscall__retval = i2s_configure(dev, dir, cfg); sys_port_trace_syscall_exit(K_SYSCALL_I2S_CONFIGURE, i2s_configure, dev, dir, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_buf_read(const struct device * dev, void * buf, size_t * size); + +__pinned_func +static inline int i2s_buf_read(const struct device * dev, void * buf, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t * val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_BUF_READ); + } +#endif + compiler_barrier(); + return z_impl_i2s_buf_read(dev, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_buf_read(dev, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_BUF_READ, i2s_buf_read, dev, buf, size); syscall__retval = i2s_buf_read(dev, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_I2S_BUF_READ, i2s_buf_read, dev, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_buf_write(const struct device * dev, void * buf, size_t size); + +__pinned_func +static inline int i2s_buf_write(const struct device * dev, void * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_BUF_WRITE); + } +#endif + compiler_barrier(); + return z_impl_i2s_buf_write(dev, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_buf_write(dev, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_BUF_WRITE, i2s_buf_write, dev, buf, size); syscall__retval = i2s_buf_write(dev, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_I2S_BUF_WRITE, i2s_buf_write, dev, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_trigger(const struct device * dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd); + +__pinned_func +static inline int i2s_trigger(const struct device * dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum i2s_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; enum i2s_trigger_cmd val; } parm2 = { .val = cmd }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_i2s_trigger(dev, dir, cmd); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_trigger(dev, dir, cmd) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_TRIGGER, i2s_trigger, dev, dir, cmd); syscall__retval = i2s_trigger(dev, dir, cmd); sys_port_trace_syscall_exit(K_SYSCALL_I2S_TRIGGER, i2s_trigger, dev, dir, cmd, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i3c.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i3c.h new file mode 100644 index 0000000..cb90359 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/i3c.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I3C_H +#define Z_INCLUDE_SYSCALLS_I3C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i3c_do_ccc(const struct device * dev, struct i3c_ccc_payload * payload); + +__pinned_func +static inline int i3c_do_ccc(const struct device * dev, struct i3c_ccc_payload * payload) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct i3c_ccc_payload * val; } parm1 = { .val = payload }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I3C_DO_CCC); + } +#endif + compiler_barrier(); + return z_impl_i3c_do_ccc(dev, payload); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i3c_do_ccc(dev, payload) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I3C_DO_CCC, i3c_do_ccc, dev, payload); syscall__retval = i3c_do_ccc(dev, payload); sys_port_trace_syscall_exit(K_SYSCALL_I3C_DO_CCC, i3c_do_ccc, dev, payload, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i3c_transfer(struct i3c_device_desc * target, struct i3c_msg * msgs, uint8_t num_msgs); + +__pinned_func +static inline int i3c_transfer(struct i3c_device_desc * target, struct i3c_msg * msgs, uint8_t num_msgs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct i3c_device_desc * val; } parm0 = { .val = target }; + union { uintptr_t x; struct i3c_msg * val; } parm1 = { .val = msgs }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_msgs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I3C_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_i3c_transfer(target, msgs, num_msgs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i3c_transfer(target, msgs, num_msgs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I3C_TRANSFER, i3c_transfer, target, msgs, num_msgs); syscall__retval = i3c_transfer(target, msgs, num_msgs); sys_port_trace_syscall_exit(K_SYSCALL_I3C_TRANSFER, i3c_transfer, target, msgs, num_msgs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/input_renesas_ra_ctsu.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/input_renesas_ra_ctsu.h new file mode 100644 index 0000000..39257f0 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/input_renesas_ra_ctsu.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RA_CTSU_H +#define Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RA_CTSU_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_renesas_ra_ctsu_group_configure(const struct device * dev, const struct renesas_ra_ctsu_touch_cfg * cfg); + +__pinned_func +static inline int renesas_ra_ctsu_group_configure(const struct device * dev, const struct renesas_ra_ctsu_touch_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct renesas_ra_ctsu_touch_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_renesas_ra_ctsu_group_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_ra_ctsu_group_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE, renesas_ra_ctsu_group_configure, dev, cfg); syscall__retval = renesas_ra_ctsu_group_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE, renesas_ra_ctsu_group_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/input_renesas_rx_ctsu.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/input_renesas_rx_ctsu.h new file mode 100644 index 0000000..b82a17a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/input_renesas_rx_ctsu.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RX_CTSU_H +#define Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RX_CTSU_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_renesas_rx_ctsu_group_configure(const struct device * dev, const struct renesas_rx_ctsu_touch_cfg * cfg); + +__pinned_func +static inline int renesas_rx_ctsu_group_configure(const struct device * dev, const struct renesas_rx_ctsu_touch_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct renesas_rx_ctsu_touch_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_renesas_rx_ctsu_group_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_rx_ctsu_group_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE, renesas_rx_ctsu_group_configure, dev, cfg); syscall__retval = renesas_rx_ctsu_group_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE, renesas_rx_ctsu_group_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ipm.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ipm.h new file mode 100644 index 0000000..beafd88 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ipm.h @@ -0,0 +1,149 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_IPM_H +#define Z_INCLUDE_SYSCALLS_IPM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ipm_send(const struct device * ipmdev, int wait, uint32_t id, const void * data, int size); + +__pinned_func +static inline int ipm_send(const struct device * ipmdev, int wait, uint32_t id, const void * data, int size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + union { uintptr_t x; int val; } parm1 = { .val = wait }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = id }; + union { uintptr_t x; const void * val; } parm3 = { .val = data }; + union { uintptr_t x; int val; } parm4 = { .val = size }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_IPM_SEND); + } +#endif + compiler_barrier(); + return z_impl_ipm_send(ipmdev, wait, id, data, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_send(ipmdev, wait, id, data, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_SEND, ipm_send, ipmdev, wait, id, data, size); syscall__retval = ipm_send(ipmdev, wait, id, data, size); sys_port_trace_syscall_exit(K_SYSCALL_IPM_SEND, ipm_send, ipmdev, wait, id, data, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ipm_max_data_size_get(const struct device * ipmdev); + +__pinned_func +static inline int ipm_max_data_size_get(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_MAX_DATA_SIZE_GET); + } +#endif + compiler_barrier(); + return z_impl_ipm_max_data_size_get(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_max_data_size_get(ipmdev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_MAX_DATA_SIZE_GET, ipm_max_data_size_get, ipmdev); syscall__retval = ipm_max_data_size_get(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_MAX_DATA_SIZE_GET, ipm_max_data_size_get, ipmdev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ipm_max_id_val_get(const struct device * ipmdev); + +__pinned_func +static inline uint32_t ipm_max_id_val_get(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_MAX_ID_VAL_GET); + } +#endif + compiler_barrier(); + return z_impl_ipm_max_id_val_get(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_max_id_val_get(ipmdev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_MAX_ID_VAL_GET, ipm_max_id_val_get, ipmdev); syscall__retval = ipm_max_id_val_get(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_MAX_ID_VAL_GET, ipm_max_id_val_get, ipmdev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ipm_set_enabled(const struct device * ipmdev, int enable); + +__pinned_func +static inline int ipm_set_enabled(const struct device * ipmdev, int enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + union { uintptr_t x; int val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IPM_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_ipm_set_enabled(ipmdev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_set_enabled(ipmdev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_SET_ENABLED, ipm_set_enabled, ipmdev, enable); syscall__retval = ipm_set_enabled(ipmdev, enable); sys_port_trace_syscall_exit(K_SYSCALL_IPM_SET_ENABLED, ipm_set_enabled, ipmdev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_ipm_complete(const struct device * ipmdev); + +__pinned_func +static inline void ipm_complete(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_COMPLETE); + return; + } +#endif + compiler_barrier(); + z_impl_ipm_complete(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_complete(ipmdev) do { sys_port_trace_syscall_enter(K_SYSCALL_IPM_COMPLETE, ipm_complete, ipmdev); ipm_complete(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_COMPLETE, ipm_complete, ipmdev); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ivshmem.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ivshmem.h new file mode 100644 index 0000000..d16fdd7 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ivshmem.h @@ -0,0 +1,315 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_IVSHMEM_H +#define Z_INCLUDE_SYSCALLS_IVSHMEM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern size_t z_impl_ivshmem_get_mem(const struct device * dev, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_mem(const struct device * dev, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = memmap }; + return (size_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_MEM); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_mem(dev, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_mem(dev, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_MEM, ivshmem_get_mem, dev, memmap); syscall__retval = ivshmem_get_mem(dev, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_MEM, ivshmem_get_mem, dev, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_id(const struct device * dev); + +__pinned_func +static inline uint32_t ivshmem_get_id(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_ID); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_id(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_id(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_ID, ivshmem_get_id, dev); syscall__retval = ivshmem_get_id(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_ID, ivshmem_get_id, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint16_t z_impl_ivshmem_get_vectors(const struct device * dev); + +__pinned_func +static inline uint16_t ivshmem_get_vectors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint16_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_VECTORS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_vectors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_vectors(dev) ({ uint16_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_VECTORS, ivshmem_get_vectors, dev); syscall__retval = ivshmem_get_vectors(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_VECTORS, ivshmem_get_vectors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_int_peer(const struct device * dev, uint32_t peer_id, uint16_t vector); + +__pinned_func +static inline int ivshmem_int_peer(const struct device * dev, uint32_t peer_id, uint16_t vector) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = vector }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_INT_PEER); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_int_peer(dev, peer_id, vector); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_int_peer(dev, peer_id, vector) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_INT_PEER, ivshmem_int_peer, dev, peer_id, vector); syscall__retval = ivshmem_int_peer(dev, peer_id, vector); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_INT_PEER, ivshmem_int_peer, dev, peer_id, vector, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_register_handler(const struct device * dev, struct k_poll_signal * signal, uint16_t vector); + +__pinned_func +static inline int ivshmem_register_handler(const struct device * dev, struct k_poll_signal * signal, uint16_t vector) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_poll_signal * val; } parm1 = { .val = signal }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = vector }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_REGISTER_HANDLER); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_register_handler(dev, signal, vector); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_register_handler(dev, signal, vector) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_REGISTER_HANDLER, ivshmem_register_handler, dev, signal, vector); syscall__retval = ivshmem_register_handler(dev, signal, vector); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_REGISTER_HANDLER, ivshmem_register_handler, dev, signal, vector, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_ivshmem_get_rw_mem_section(const struct device * dev, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_rw_mem_section(const struct device * dev, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = memmap }; + return (size_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_rw_mem_section(dev, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_rw_mem_section(dev, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION, ivshmem_get_rw_mem_section, dev, memmap); syscall__retval = ivshmem_get_rw_mem_section(dev, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION, ivshmem_get_rw_mem_section, dev, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_ivshmem_get_output_mem_section(const struct device * dev, uint32_t peer_id, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_output_mem_section(const struct device * dev, uint32_t peer_id, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + union { uintptr_t x; uintptr_t * val; } parm2 = { .val = memmap }; + return (size_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_output_mem_section(dev, peer_id, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_output_mem_section(dev, peer_id, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION, ivshmem_get_output_mem_section, dev, peer_id, memmap); syscall__retval = ivshmem_get_output_mem_section(dev, peer_id, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION, ivshmem_get_output_mem_section, dev, peer_id, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_state(const struct device * dev, uint32_t peer_id); + +__pinned_func +static inline uint32_t ivshmem_get_state(const struct device * dev, uint32_t peer_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_STATE); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_state(dev, peer_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_state(dev, peer_id) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_STATE, ivshmem_get_state, dev, peer_id); syscall__retval = ivshmem_get_state(dev, peer_id); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_STATE, ivshmem_get_state, dev, peer_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_set_state(const struct device * dev, uint32_t state); + +__pinned_func +static inline int ivshmem_set_state(const struct device * dev, uint32_t state) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = state }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_SET_STATE); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_set_state(dev, state); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_set_state(dev, state) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_SET_STATE, ivshmem_set_state, dev, state); syscall__retval = ivshmem_set_state(dev, state); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_SET_STATE, ivshmem_set_state, dev, state, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_max_peers(const struct device * dev); + +__pinned_func +static inline uint32_t ivshmem_get_max_peers(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_MAX_PEERS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_max_peers(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_max_peers(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_MAX_PEERS, ivshmem_get_max_peers, dev); syscall__retval = ivshmem_get_max_peers(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_MAX_PEERS, ivshmem_get_max_peers, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint16_t z_impl_ivshmem_get_protocol(const struct device * dev); + +__pinned_func +static inline uint16_t ivshmem_get_protocol(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint16_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_PROTOCOL); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_protocol(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_protocol(dev) ({ uint16_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_PROTOCOL, ivshmem_get_protocol, dev); syscall__retval = ivshmem_get_protocol(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_PROTOCOL, ivshmem_get_protocol, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_enable_interrupts(const struct device * dev, bool enable); + +__pinned_func +static inline int ivshmem_enable_interrupts(const struct device * dev, bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_enable_interrupts(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_enable_interrupts(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS, ivshmem_enable_interrupts, dev, enable); syscall__retval = ivshmem_enable_interrupts(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS, ivshmem_enable_interrupts, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/kernel.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/kernel.h new file mode 100644 index 0000000..f8a758d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/kernel.h @@ -0,0 +1,1620 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KERNEL_H +#define Z_INCLUDE_SYSCALLS_KERNEL_H + + + + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern k_thread_stack_t * z_impl_k_thread_stack_alloc(size_t size, int flags); + +__pinned_func +static inline k_thread_stack_t * k_thread_stack_alloc(size_t size, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; size_t val; } parm0 = { .val = size }; + union { uintptr_t x; int val; } parm1 = { .val = flags }; + return (k_thread_stack_t *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_STACK_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_alloc(size, flags); +} + + +extern int z_impl_k_thread_stack_free(k_thread_stack_t * stack); + +__pinned_func +static inline int k_thread_stack_free(k_thread_stack_t * stack) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_thread_stack_t * val; } parm0 = { .val = stack }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_STACK_FREE); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_free(stack); +} + + +extern k_tid_t z_impl_k_thread_create(struct k_thread * new_thread, k_thread_stack_t * stack, size_t stack_size, k_thread_entry_t entry, void * p1, void * p2, void * p3, int prio, uint32_t options, k_timeout_t delay); + +__pinned_func +static inline k_tid_t k_thread_create(struct k_thread * new_thread, k_thread_stack_t * stack, size_t stack_size, k_thread_entry_t entry, void * p1, void * p2, void * p3, int prio, uint32_t options, k_timeout_t delay) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = new_thread }; + union { uintptr_t x; k_thread_stack_t * val; } parm1 = { .val = stack }; + union { uintptr_t x; size_t val; } parm2 = { .val = stack_size }; + union { uintptr_t x; k_thread_entry_t val; } parm3 = { .val = entry }; + union { uintptr_t x; void * val; } parm4 = { .val = p1 }; + union { uintptr_t x; void * val; } parm5 = { .val = p2 }; + union { uintptr_t x; void * val; } parm6 = { .val = p3 }; + union { uintptr_t x; int val; } parm7 = { .val = prio }; + union { uintptr_t x; uint32_t val; } parm8 = { .val = options }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm9 = { .val = delay }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.split.lo, + parm9.split.hi + }; + return (k_tid_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_K_THREAD_CREATE); + } +#endif + compiler_barrier(); + return z_impl_k_thread_create(new_thread, stack, stack_size, entry, p1, p2, p3, prio, options, delay); +} + + +extern int z_impl_k_thread_stack_space_get(const struct k_thread * thread, size_t * unused_ptr); + +__pinned_func +static inline int k_thread_stack_space_get(const struct k_thread * thread, size_t * unused_ptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; size_t * val; } parm1 = { .val = unused_ptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_STACK_SPACE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_space_get(thread, unused_ptr); +} + + +extern int z_impl_k_thread_join(struct k_thread * thread, k_timeout_t timeout); + +__pinned_func +static inline int k_thread_join(struct k_thread * thread, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_THREAD_JOIN); + } +#endif + compiler_barrier(); + return z_impl_k_thread_join(thread, timeout); +} + + +extern int32_t z_impl_k_sleep(k_timeout_t timeout); + +__pinned_func +static inline int32_t k_sleep(k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm0 = { .val = timeout }; + return (int32_t) arch_syscall_invoke2(parm0.split.lo, parm0.split.hi, K_SYSCALL_K_SLEEP); + } +#endif + compiler_barrier(); + return z_impl_k_sleep(timeout); +} + + +extern int32_t z_impl_k_usleep(int32_t us); + +__pinned_func +static inline int32_t k_usleep(int32_t us) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int32_t val; } parm0 = { .val = us }; + return (int32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_USLEEP); + } +#endif + compiler_barrier(); + return z_impl_k_usleep(us); +} + + +extern void z_impl_k_busy_wait(uint32_t usec_to_wait); + +__pinned_func +static inline void k_busy_wait(uint32_t usec_to_wait) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t val; } parm0 = { .val = usec_to_wait }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_BUSY_WAIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_busy_wait(usec_to_wait); +} + + +extern void z_impl_k_yield(void); + +__pinned_func +static inline void k_yield(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_K_YIELD); + return; + } +#endif + compiler_barrier(); + z_impl_k_yield(); +} + + +extern void z_impl_k_wakeup(k_tid_t thread); + +__pinned_func +static inline void k_wakeup(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_WAKEUP); + return; + } +#endif + compiler_barrier(); + z_impl_k_wakeup(thread); +} + + +extern k_tid_t z_impl_k_sched_current_thread_query(void); + +__pinned_func +static inline k_tid_t k_sched_current_thread_query(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (k_tid_t) arch_syscall_invoke0(K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY); + } +#endif + compiler_barrier(); + return z_impl_k_sched_current_thread_query(); +} + + +extern void z_impl_k_thread_abort(k_tid_t thread); + +__pinned_func +static inline void k_thread_abort(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_ABORT); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_abort(thread); +} + + +extern k_ticks_t z_impl_k_thread_timeout_expires_ticks(const struct k_thread * thread); + +__pinned_func +static inline k_ticks_t k_thread_timeout_expires_ticks(const struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_thread_timeout_expires_ticks(thread); +} + + +extern k_ticks_t z_impl_k_thread_timeout_remaining_ticks(const struct k_thread * thread); + +__pinned_func +static inline k_ticks_t k_thread_timeout_remaining_ticks(const struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_thread_timeout_remaining_ticks(thread); +} + + +extern int z_impl_k_thread_priority_get(k_tid_t thread); + +__pinned_func +static inline int k_thread_priority_get(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_PRIORITY_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_priority_get(thread); +} + + +extern void z_impl_k_thread_priority_set(k_tid_t thread, int prio); + +__pinned_func +static inline void k_thread_priority_set(k_tid_t thread, int prio) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = prio }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_PRIORITY_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_priority_set(thread, prio); +} + + +extern void z_impl_k_thread_deadline_set(k_tid_t thread, int deadline); + +__pinned_func +static inline void k_thread_deadline_set(k_tid_t thread, int deadline) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = deadline }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_DEADLINE_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_deadline_set(thread, deadline); +} + + +extern void z_impl_k_thread_absolute_deadline_set(k_tid_t thread, int deadline); + +__pinned_func +static inline void k_thread_absolute_deadline_set(k_tid_t thread, int deadline) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = deadline }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_absolute_deadline_set(thread, deadline); +} + + +extern void z_impl_k_reschedule(void); + +__pinned_func +static inline void k_reschedule(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_K_RESCHEDULE); + return; + } +#endif + compiler_barrier(); + z_impl_k_reschedule(); +} + + +extern void z_impl_k_thread_suspend(k_tid_t thread); + +__pinned_func +static inline void k_thread_suspend(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_SUSPEND); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_suspend(thread); +} + + +extern void z_impl_k_thread_resume(k_tid_t thread); + +__pinned_func +static inline void k_thread_resume(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_RESUME); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_resume(thread); +} + + +extern int z_impl_k_is_preempt_thread(void); + +__pinned_func +static inline int k_is_preempt_thread(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_K_IS_PREEMPT_THREAD); + } +#endif + compiler_barrier(); + return z_impl_k_is_preempt_thread(); +} + + +extern void z_impl_k_thread_custom_data_set(void * value); + +__pinned_func +static inline void k_thread_custom_data_set(void * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = value }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_CUSTOM_DATA_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_custom_data_set(value); +} + + +extern void * z_impl_k_thread_custom_data_get(void); + +__pinned_func +static inline void * k_thread_custom_data_get(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (void *) arch_syscall_invoke0(K_SYSCALL_K_THREAD_CUSTOM_DATA_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_custom_data_get(); +} + + +extern int z_impl_k_thread_name_set(k_tid_t thread, const char * str); + +__pinned_func +static inline int k_thread_name_set(k_tid_t thread, const char * str) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; const char * val; } parm1 = { .val = str }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_NAME_SET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_name_set(thread, str); +} + + +extern int z_impl_k_thread_name_copy(k_tid_t thread, char * buf, size_t size); + +__pinned_func +static inline int k_thread_name_copy(k_tid_t thread, char * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; char * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_THREAD_NAME_COPY); + } +#endif + compiler_barrier(); + return z_impl_k_thread_name_copy(thread, buf, size); +} + + +extern void z_impl_k_timer_start(struct k_timer * timer, k_timeout_t duration, k_timeout_t period); + +__pinned_func +static inline void k_timer_start(struct k_timer * timer, k_timeout_t duration, k_timeout_t period) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = duration }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = period }; + (void) arch_syscall_invoke5(parm0.x, parm1.split.lo, parm1.split.hi, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_TIMER_START); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_start(timer, duration, period); +} + + +extern void z_impl_k_timer_stop(struct k_timer * timer); + +__pinned_func +static inline void k_timer_stop(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STOP); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_stop(timer); +} + + +extern uint32_t z_impl_k_timer_status_get(struct k_timer * timer); + +__pinned_func +static inline uint32_t k_timer_status_get(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STATUS_GET); + } +#endif + compiler_barrier(); + return z_impl_k_timer_status_get(timer); +} + + +extern uint32_t z_impl_k_timer_status_sync(struct k_timer * timer); + +__pinned_func +static inline uint32_t k_timer_status_sync(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STATUS_SYNC); + } +#endif + compiler_barrier(); + return z_impl_k_timer_status_sync(timer); +} + + +extern k_ticks_t z_impl_k_timer_expires_ticks(const struct k_timer * timer); + +__pinned_func +static inline k_ticks_t k_timer_expires_ticks(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_TIMER_EXPIRES_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_timer_expires_ticks(timer); +} + + +extern k_ticks_t z_impl_k_timer_remaining_ticks(const struct k_timer * timer); + +__pinned_func +static inline k_ticks_t k_timer_remaining_ticks(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_TIMER_REMAINING_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_timer_remaining_ticks(timer); +} + + +extern void z_impl_k_timer_user_data_set(struct k_timer * timer, void * user_data); + +__pinned_func +static inline void k_timer_user_data_set(struct k_timer * timer, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + union { uintptr_t x; void * val; } parm1 = { .val = user_data }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_TIMER_USER_DATA_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_user_data_set(timer, user_data); +} + + +extern void * z_impl_k_timer_user_data_get(const struct k_timer * timer); + +__pinned_func +static inline void * k_timer_user_data_get(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_USER_DATA_GET); + } +#endif + compiler_barrier(); + return z_impl_k_timer_user_data_get(timer); +} + + +extern int64_t z_impl_k_uptime_ticks(void); + +__pinned_func +static inline int64_t k_uptime_ticks(void) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + (void) arch_syscall_invoke1((uintptr_t)&ret64, K_SYSCALL_K_UPTIME_TICKS); + return (int64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_uptime_ticks(); +} + + +extern void z_impl_k_queue_init(struct k_queue * queue); + +__pinned_func +static inline void k_queue_init(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_queue_init(queue); +} + + +extern void z_impl_k_queue_cancel_wait(struct k_queue * queue); + +__pinned_func +static inline void k_queue_cancel_wait(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_CANCEL_WAIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_queue_cancel_wait(queue); +} + + +extern int32_t z_impl_k_queue_alloc_append(struct k_queue * queue, void * data); + +__pinned_func +static inline int32_t k_queue_alloc_append(struct k_queue * queue, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_QUEUE_ALLOC_APPEND); + } +#endif + compiler_barrier(); + return z_impl_k_queue_alloc_append(queue, data); +} + + +extern int32_t z_impl_k_queue_alloc_prepend(struct k_queue * queue, void * data); + +__pinned_func +static inline int32_t k_queue_alloc_prepend(struct k_queue * queue, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_QUEUE_ALLOC_PREPEND); + } +#endif + compiler_barrier(); + return z_impl_k_queue_alloc_prepend(queue, data); +} + + +extern void * z_impl_k_queue_get(struct k_queue * queue, k_timeout_t timeout); + +__pinned_func +static inline void * k_queue_get(struct k_queue * queue, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (void *) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_QUEUE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_queue_get(queue, timeout); +} + + +extern int z_impl_k_queue_is_empty(struct k_queue * queue); + +__pinned_func +static inline int k_queue_is_empty(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_IS_EMPTY); + } +#endif + compiler_barrier(); + return z_impl_k_queue_is_empty(queue); +} + + +extern void * z_impl_k_queue_peek_head(struct k_queue * queue); + +__pinned_func +static inline void * k_queue_peek_head(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_PEEK_HEAD); + } +#endif + compiler_barrier(); + return z_impl_k_queue_peek_head(queue); +} + + +extern void * z_impl_k_queue_peek_tail(struct k_queue * queue); + +__pinned_func +static inline void * k_queue_peek_tail(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_PEEK_TAIL); + } +#endif + compiler_barrier(); + return z_impl_k_queue_peek_tail(queue); +} + + +extern int z_impl_k_futex_wait(struct k_futex * futex, int expected, k_timeout_t timeout); + +__pinned_func +static inline int k_futex_wait(struct k_futex * futex, int expected, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_futex * val; } parm0 = { .val = futex }; + union { uintptr_t x; int val; } parm1 = { .val = expected }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_FUTEX_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_futex_wait(futex, expected, timeout); +} + + +extern int z_impl_k_futex_wake(struct k_futex * futex, bool wake_all); + +__pinned_func +static inline int k_futex_wake(struct k_futex * futex, bool wake_all) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_futex * val; } parm0 = { .val = futex }; + union { uintptr_t x; bool val; } parm1 = { .val = wake_all }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_FUTEX_WAKE); + } +#endif + compiler_barrier(); + return z_impl_k_futex_wake(futex, wake_all); +} + + +extern void z_impl_k_event_init(struct k_event * event); + +__pinned_func +static inline void k_event_init(struct k_event * event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_EVENT_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_event_init(event); +} + + +extern uint32_t z_impl_k_event_post(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_post(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_POST); + } +#endif + compiler_barrier(); + return z_impl_k_event_post(event, events); +} + + +extern uint32_t z_impl_k_event_set(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_set(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_SET); + } +#endif + compiler_barrier(); + return z_impl_k_event_set(event, events); +} + + +extern uint32_t z_impl_k_event_set_masked(struct k_event * event, uint32_t events, uint32_t events_mask); + +__pinned_func +static inline uint32_t k_event_set_masked(struct k_event * event, uint32_t events, uint32_t events_mask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = events_mask }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_EVENT_SET_MASKED); + } +#endif + compiler_barrier(); + return z_impl_k_event_set_masked(event, events, events_mask); +} + + +extern uint32_t z_impl_k_event_clear(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_clear(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_k_event_clear(event, events); +} + + +extern uint32_t z_impl_k_event_wait(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_all(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_all(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_ALL); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_all(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_SAFE); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_safe(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_all_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_all_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_ALL_SAFE); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_all_safe(event, events, reset, timeout); +} + + +extern int32_t z_impl_k_stack_alloc_init(struct k_stack * stack, uint32_t num_entries); + +__pinned_func +static inline int32_t k_stack_alloc_init(struct k_stack * stack, uint32_t num_entries) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = num_entries }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STACK_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_stack_alloc_init(stack, num_entries); +} + + +extern int z_impl_k_stack_push(struct k_stack * stack, stack_data_t data); + +__pinned_func +static inline int k_stack_push(struct k_stack * stack, stack_data_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; stack_data_t val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STACK_PUSH); + } +#endif + compiler_barrier(); + return z_impl_k_stack_push(stack, data); +} + + +extern int z_impl_k_stack_pop(struct k_stack * stack, stack_data_t * data, k_timeout_t timeout); + +__pinned_func +static inline int k_stack_pop(struct k_stack * stack, stack_data_t * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; stack_data_t * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_STACK_POP); + } +#endif + compiler_barrier(); + return z_impl_k_stack_pop(stack, data, timeout); +} + + +extern int z_impl_k_mutex_init(struct k_mutex * mutex); + +__pinned_func +static inline int k_mutex_init(struct k_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MUTEX_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_init(mutex); +} + + +extern int z_impl_k_mutex_lock(struct k_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int k_mutex_lock(struct k_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_MUTEX_LOCK); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_lock(mutex, timeout); +} + + +extern int z_impl_k_mutex_unlock(struct k_mutex * mutex); + +__pinned_func +static inline int k_mutex_unlock(struct k_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MUTEX_UNLOCK); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_unlock(mutex); +} + + +extern int z_impl_k_condvar_init(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_init(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_init(condvar); +} + + +extern int z_impl_k_condvar_signal(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_signal(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_SIGNAL); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_signal(condvar); +} + + +extern int z_impl_k_condvar_broadcast(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_broadcast(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_BROADCAST); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_broadcast(condvar); +} + + +extern int z_impl_k_condvar_wait(struct k_condvar * condvar, struct k_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int k_condvar_wait(struct k_condvar * condvar, struct k_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + union { uintptr_t x; struct k_mutex * val; } parm1 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_CONDVAR_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_wait(condvar, mutex, timeout); +} + + +extern int z_impl_k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit); + +__pinned_func +static inline int k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = initial_count }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = limit }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_SEM_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_sem_init(sem, initial_count, limit); +} + + +extern int z_impl_k_sem_take(struct k_sem * sem, k_timeout_t timeout); + +__pinned_func +static inline int k_sem_take(struct k_sem * sem, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_SEM_TAKE); + } +#endif + compiler_barrier(); + return z_impl_k_sem_take(sem, timeout); +} + + +extern void z_impl_k_sem_give(struct k_sem * sem); + +__pinned_func +static inline void k_sem_give(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_GIVE); + return; + } +#endif + compiler_barrier(); + z_impl_k_sem_give(sem); +} + + +extern void z_impl_k_sem_reset(struct k_sem * sem); + +__pinned_func +static inline void k_sem_reset(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_sem_reset(sem); +} + + +extern unsigned int z_impl_k_sem_count_get(struct k_sem * sem); + +__pinned_func +static inline unsigned int k_sem_count_get(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + return (unsigned int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_COUNT_GET); + } +#endif + compiler_barrier(); + return z_impl_k_sem_count_get(sem); +} + + +extern int z_impl_k_msgq_alloc_init(struct k_msgq * msgq, size_t msg_size, uint32_t max_msgs); + +__pinned_func +static inline int k_msgq_alloc_init(struct k_msgq * msgq, size_t msg_size, uint32_t max_msgs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; size_t val; } parm1 = { .val = msg_size }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = max_msgs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_MSGQ_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_alloc_init(msgq, msg_size, max_msgs); +} + + +extern int z_impl_k_msgq_put(struct k_msgq * msgq, const void * data, k_timeout_t timeout); + +__pinned_func +static inline int k_msgq_put(struct k_msgq * msgq, const void * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; const void * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_MSGQ_PUT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_put(msgq, data, timeout); +} + + +extern int z_impl_k_msgq_put_front(struct k_msgq * msgq, const void * data); + +__pinned_func +static inline int k_msgq_put_front(struct k_msgq * msgq, const void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; const void * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_PUT_FRONT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_put_front(msgq, data); +} + + +extern int z_impl_k_msgq_get(struct k_msgq * msgq, void * data, k_timeout_t timeout); + +__pinned_func +static inline int k_msgq_get(struct k_msgq * msgq, void * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_MSGQ_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_get(msgq, data, timeout); +} + + +extern int z_impl_k_msgq_peek(struct k_msgq * msgq, void * data); + +__pinned_func +static inline int k_msgq_peek(struct k_msgq * msgq, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_PEEK); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_peek(msgq, data); +} + + +extern int z_impl_k_msgq_peek_at(struct k_msgq * msgq, void * data, uint32_t idx); + +__pinned_func +static inline int k_msgq_peek_at(struct k_msgq * msgq, void * data, uint32_t idx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = idx }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_MSGQ_PEEK_AT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_peek_at(msgq, data, idx); +} + + +extern void z_impl_k_msgq_purge(struct k_msgq * msgq); + +__pinned_func +static inline void k_msgq_purge(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_PURGE); + return; + } +#endif + compiler_barrier(); + z_impl_k_msgq_purge(msgq); +} + + +extern uint32_t z_impl_k_msgq_num_free_get(struct k_msgq * msgq); + +__pinned_func +static inline uint32_t k_msgq_num_free_get(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_NUM_FREE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_num_free_get(msgq); +} + + +extern void z_impl_k_msgq_get_attrs(struct k_msgq * msgq, struct k_msgq_attrs * attrs); + +__pinned_func +static inline void k_msgq_get_attrs(struct k_msgq * msgq, struct k_msgq_attrs * attrs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; struct k_msgq_attrs * val; } parm1 = { .val = attrs }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_GET_ATTRS); + return; + } +#endif + compiler_barrier(); + z_impl_k_msgq_get_attrs(msgq, attrs); +} + + +extern uint32_t z_impl_k_msgq_num_used_get(struct k_msgq * msgq); + +__pinned_func +static inline uint32_t k_msgq_num_used_get(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_NUM_USED_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_num_used_get(msgq); +} + + +extern void z_impl_k_pipe_init(struct k_pipe * pipe, uint8_t * buffer, size_t buffer_size); + +__pinned_func +static inline void k_pipe_init(struct k_pipe * pipe, uint8_t * buffer, size_t buffer_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = buffer_size }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_PIPE_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_init(pipe, buffer, buffer_size); +} + + +extern int z_impl_k_pipe_write(struct k_pipe * pipe, const uint8_t * data, size_t len, k_timeout_t timeout); + +__pinned_func +static inline int k_pipe_write(struct k_pipe * pipe, const uint8_t * data, size_t len, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_PIPE_WRITE); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_write(pipe, data, len, timeout); +} + + +extern int z_impl_k_pipe_read(struct k_pipe * pipe, uint8_t * data, size_t len, k_timeout_t timeout); + +__pinned_func +static inline int k_pipe_read(struct k_pipe * pipe, uint8_t * data, size_t len, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_PIPE_READ); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_read(pipe, data, len, timeout); +} + + +extern void z_impl_k_pipe_reset(struct k_pipe * pipe); + +__pinned_func +static inline void k_pipe_reset(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_reset(pipe); +} + + +extern void z_impl_k_pipe_close(struct k_pipe * pipe); + +__pinned_func +static inline void k_pipe_close(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_CLOSE); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_close(pipe); +} + + +extern int z_impl_k_poll(struct k_poll_event * events, int num_events, k_timeout_t timeout); + +__pinned_func +static inline int k_poll(struct k_poll_event * events, int num_events, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_event * val; } parm0 = { .val = events }; + union { uintptr_t x; int val; } parm1 = { .val = num_events }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_POLL); + } +#endif + compiler_barrier(); + return z_impl_k_poll(events, num_events, timeout); +} + + +extern void z_impl_k_poll_signal_init(struct k_poll_signal * sig); + +__pinned_func +static inline void k_poll_signal_init(struct k_poll_signal * sig) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_POLL_SIGNAL_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_init(sig); +} + + +extern void z_impl_k_poll_signal_reset(struct k_poll_signal * sig); + +__pinned_func +static inline void k_poll_signal_reset(struct k_poll_signal * sig) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_POLL_SIGNAL_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_reset(sig); +} + + +extern void z_impl_k_poll_signal_check(struct k_poll_signal * sig, unsigned int * signaled, int * result); + +__pinned_func +static inline void k_poll_signal_check(struct k_poll_signal * sig, unsigned int * signaled, int * result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + union { uintptr_t x; unsigned int * val; } parm1 = { .val = signaled }; + union { uintptr_t x; int * val; } parm2 = { .val = result }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_POLL_SIGNAL_CHECK); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_check(sig, signaled, result); +} + + +extern int z_impl_k_poll_signal_raise(struct k_poll_signal * sig, int result); + +__pinned_func +static inline int k_poll_signal_raise(struct k_poll_signal * sig, int result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + union { uintptr_t x; int val; } parm1 = { .val = result }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_POLL_SIGNAL_RAISE); + } +#endif + compiler_barrier(); + return z_impl_k_poll_signal_raise(sig, result); +} + + +extern void z_impl_k_str_out(char * c, size_t n); + +__pinned_func +static inline void k_str_out(char * c, size_t n) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = c }; + union { uintptr_t x; size_t val; } parm1 = { .val = n }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STR_OUT); + return; + } +#endif + compiler_barrier(); + z_impl_k_str_out(c, n); +} + + +extern int z_impl_k_float_disable(struct k_thread * thread); + +__pinned_func +static inline int k_float_disable(struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_FLOAT_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_k_float_disable(thread); +} + + +extern int z_impl_k_float_enable(struct k_thread * thread, unsigned int options); + +__pinned_func +static inline int k_float_enable(struct k_thread * thread, unsigned int options) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = options }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_FLOAT_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_k_float_enable(thread, options); +} + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/kobject.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/kobject.h new file mode 100644 index 0000000..7935be8 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/kobject.h @@ -0,0 +1,124 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KOBJECT_H +#define Z_INCLUDE_SYSCALLS_KOBJECT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_k_object_access_grant(const void * object, struct k_thread * thread); + +__pinned_func +static inline void k_object_access_grant(const void * object, struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + union { uintptr_t x; struct k_thread * val; } parm1 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_OBJECT_ACCESS_GRANT); + return; + } +#endif + compiler_barrier(); + z_impl_k_object_access_grant(object, thread); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_access_grant(object, thread) do { sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ACCESS_GRANT, k_object_access_grant, object, thread); k_object_access_grant(object, thread); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ACCESS_GRANT, k_object_access_grant, object, thread); } while(false) +#endif +#endif + + +extern void z_impl_k_object_release(const void * object); + +__pinned_func +static inline void k_object_release(const void * object) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_RELEASE); + return; + } +#endif + compiler_barrier(); + z_impl_k_object_release(object); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_release(object) do { sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_RELEASE, k_object_release, object); k_object_release(object); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_RELEASE, k_object_release, object); } while(false) +#endif +#endif + + +extern void * z_impl_k_object_alloc(enum k_objects otype); + +__pinned_func +static inline void * k_object_alloc(enum k_objects otype) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; enum k_objects val; } parm0 = { .val = otype }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_k_object_alloc(otype); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_alloc(otype) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ALLOC, k_object_alloc, otype); syscall__retval = k_object_alloc(otype); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ALLOC, k_object_alloc, otype, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void * z_impl_k_object_alloc_size(enum k_objects otype, size_t size); + +__pinned_func +static inline void * k_object_alloc_size(enum k_objects otype, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; enum k_objects val; } parm0 = { .val = otype }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (void *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_OBJECT_ALLOC_SIZE); + } +#endif + compiler_barrier(); + return z_impl_k_object_alloc_size(otype, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_alloc_size(otype, size) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ALLOC_SIZE, k_object_alloc_size, otype, size); syscall__retval = k_object_alloc_size(otype, size); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ALLOC_SIZE, k_object_alloc_size, otype, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/led.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/led.h new file mode 100644 index 0000000..ab2d074 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/led.h @@ -0,0 +1,229 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LED_H +#define Z_INCLUDE_SYSCALLS_LED_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_led_blink(const struct device * dev, uint32_t led, uint32_t delay_on, uint32_t delay_off); + +__pinned_func +static inline int led_blink(const struct device * dev, uint32_t led, uint32_t delay_on, uint32_t delay_off) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = delay_on }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = delay_off }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_BLINK); + } +#endif + compiler_barrier(); + return z_impl_led_blink(dev, led, delay_on, delay_off); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_blink(dev, led, delay_on, delay_off) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_BLINK, led_blink, dev, led, delay_on, delay_off); syscall__retval = led_blink(dev, led, delay_on, delay_off); sys_port_trace_syscall_exit(K_SYSCALL_LED_BLINK, led_blink, dev, led, delay_on, delay_off, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_get_info(const struct device * dev, uint32_t led, const struct led_info ** info); + +__pinned_func +static inline int led_get_info(const struct device * dev, uint32_t led, const struct led_info ** info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; const struct led_info ** val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_GET_INFO); + } +#endif + compiler_barrier(); + return z_impl_led_get_info(dev, led, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_get_info(dev, led, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_GET_INFO, led_get_info, dev, led, info); syscall__retval = led_get_info(dev, led, info); sys_port_trace_syscall_exit(K_SYSCALL_LED_GET_INFO, led_get_info, dev, led, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_brightness(const struct device * dev, uint32_t led, uint8_t value); + +__pinned_func +static inline int led_set_brightness(const struct device * dev, uint32_t led, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_SET_BRIGHTNESS); + } +#endif + compiler_barrier(); + return z_impl_led_set_brightness(dev, led, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_brightness(dev, led, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_BRIGHTNESS, led_set_brightness, dev, led, value); syscall__retval = led_set_brightness(dev, led, value); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_BRIGHTNESS, led_set_brightness, dev, led, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_write_channels(const struct device * dev, uint32_t start_channel, uint32_t num_channels, const uint8_t * buf); + +__pinned_func +static inline int led_write_channels(const struct device * dev, uint32_t start_channel, uint32_t num_channels, const uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = start_channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = num_channels }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = buf }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_WRITE_CHANNELS); + } +#endif + compiler_barrier(); + return z_impl_led_write_channels(dev, start_channel, num_channels, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_write_channels(dev, start_channel, num_channels, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_WRITE_CHANNELS, led_write_channels, dev, start_channel, num_channels, buf); syscall__retval = led_write_channels(dev, start_channel, num_channels, buf); sys_port_trace_syscall_exit(K_SYSCALL_LED_WRITE_CHANNELS, led_write_channels, dev, start_channel, num_channels, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_channel(const struct device * dev, uint32_t channel, uint8_t value); + +__pinned_func +static inline int led_set_channel(const struct device * dev, uint32_t channel, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_SET_CHANNEL); + } +#endif + compiler_barrier(); + return z_impl_led_set_channel(dev, channel, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_channel(dev, channel, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_CHANNEL, led_set_channel, dev, channel, value); syscall__retval = led_set_channel(dev, channel, value); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_CHANNEL, led_set_channel, dev, channel, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_color(const struct device * dev, uint32_t led, uint8_t num_colors, const uint8_t * color); + +__pinned_func +static inline int led_set_color(const struct device * dev, uint32_t led, uint8_t num_colors, const uint8_t * color) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_colors }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = color }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_SET_COLOR); + } +#endif + compiler_barrier(); + return z_impl_led_set_color(dev, led, num_colors, color); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_color(dev, led, num_colors, color) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_COLOR, led_set_color, dev, led, num_colors, color); syscall__retval = led_set_color(dev, led, num_colors, color); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_COLOR, led_set_color, dev, led, num_colors, color, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_on(const struct device * dev, uint32_t led); + +__pinned_func +static inline int led_on(const struct device * dev, uint32_t led) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LED_ON); + } +#endif + compiler_barrier(); + return z_impl_led_on(dev, led); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_on(dev, led) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_ON, led_on, dev, led); syscall__retval = led_on(dev, led); sys_port_trace_syscall_exit(K_SYSCALL_LED_ON, led_on, dev, led, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_off(const struct device * dev, uint32_t led); + +__pinned_func +static inline int led_off(const struct device * dev, uint32_t led) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LED_OFF); + } +#endif + compiler_barrier(); + return z_impl_led_off(dev, led); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_off(dev, led) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_OFF, led_off, dev, led); syscall__retval = led_off(dev, led); sys_port_trace_syscall_exit(K_SYSCALL_LED_OFF, led_off, dev, led, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/libc-hooks.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/libc-hooks.h new file mode 100644 index 0000000..f6f5042 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/libc-hooks.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LIBC_HOOKS_H +#define Z_INCLUDE_SYSCALLS_LIBC_HOOKS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_zephyr_read_stdin(char * buf, int nbytes); + +__pinned_func +static inline int zephyr_read_stdin(char * buf, int nbytes) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = buf }; + union { uintptr_t x; int val; } parm1 = { .val = nbytes }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_READ_STDIN); + } +#endif + compiler_barrier(); + return z_impl_zephyr_read_stdin(buf, nbytes); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_read_stdin(buf, nbytes) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_READ_STDIN, zephyr_read_stdin, buf, nbytes); syscall__retval = zephyr_read_stdin(buf, nbytes); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_READ_STDIN, zephyr_read_stdin, buf, nbytes, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zephyr_write_stdout(const void * buf, int nbytes); + +__pinned_func +static inline int zephyr_write_stdout(const void * buf, int nbytes) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = buf }; + union { uintptr_t x; int val; } parm1 = { .val = nbytes }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_WRITE_STDOUT); + } +#endif + compiler_barrier(); + return z_impl_zephyr_write_stdout(buf, nbytes); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_write_stdout(buf, nbytes) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_WRITE_STDOUT, zephyr_write_stdout, buf, nbytes); syscall__retval = zephyr_write_stdout(buf, nbytes); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_WRITE_STDOUT, zephyr_write_stdout, buf, nbytes, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zephyr_fputc(int c, FILE * stream); + +__pinned_func +static inline int zephyr_fputc(int c, FILE * stream) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = c }; + union { uintptr_t x; FILE * val; } parm1 = { .val = stream }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_FPUTC); + } +#endif + compiler_barrier(); + return z_impl_zephyr_fputc(c, stream); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_fputc(c, stream) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_FPUTC, zephyr_fputc, c, stream); syscall__retval = zephyr_fputc(c, stream); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_FPUTC, zephyr_fputc, c, stream, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream); + +__pinned_func +static inline size_t zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void *ZRESTRICT val; } parm0 = { .val = ptr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + union { uintptr_t x; size_t val; } parm2 = { .val = nitems }; + union { uintptr_t x; FILE *ZRESTRICT val; } parm3 = { .val = stream }; + return (size_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_ZEPHYR_FWRITE); + } +#endif + compiler_barrier(); + return z_impl_zephyr_fwrite(ptr, size, nitems, stream); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_fwrite(ptr, size, nitems, stream) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_FWRITE, zephyr_fwrite, ptr, size, nitems, stream); syscall__retval = zephyr_fwrite(ptr, size, nitems, stream); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_FWRITE, zephyr_fwrite, ptr, size, nitems, stream, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/llext.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/llext.h new file mode 100644 index 0000000..72ba359 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/llext.h @@ -0,0 +1,54 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LLEXT_H +#define Z_INCLUDE_SYSCALLS_LLEXT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_llext_get_fn_table(struct llext * ext, bool is_init, void * buf, size_t size); + +__pinned_func +static inline ssize_t llext_get_fn_table(struct llext * ext, bool is_init, void * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct llext * val; } parm0 = { .val = ext }; + union { uintptr_t x; bool val; } parm1 = { .val = is_init }; + union { uintptr_t x; void * val; } parm2 = { .val = buf }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (ssize_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LLEXT_GET_FN_TABLE); + } +#endif + compiler_barrier(); + return z_impl_llext_get_fn_table(ext, is_init, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define llext_get_fn_table(ext, is_init, buf, size) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LLEXT_GET_FN_TABLE, llext_get_fn_table, ext, is_init, buf, size); syscall__retval = llext_get_fn_table(ext, is_init, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_LLEXT_GET_FN_TABLE, llext_get_fn_table, ext, is_init, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/log_ctrl.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/log_ctrl.h new file mode 100644 index 0000000..e4061a2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/log_ctrl.h @@ -0,0 +1,145 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LOG_CTRL_H +#define Z_INCLUDE_SYSCALLS_LOG_CTRL_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_log_panic(void); + +__pinned_func +static inline void log_panic(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_LOG_PANIC); + return; + } +#endif + compiler_barrier(); + z_impl_log_panic(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_panic() do { sys_port_trace_syscall_enter(K_SYSCALL_LOG_PANIC, log_panic); log_panic(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_PANIC, log_panic); } while(false) +#endif +#endif + + +extern bool z_impl_log_process(void); + +__pinned_func +static inline bool log_process(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (bool) arch_syscall_invoke0(K_SYSCALL_LOG_PROCESS); + } +#endif + compiler_barrier(); + return z_impl_log_process(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_process() ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_PROCESS, log_process); syscall__retval = log_process(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_PROCESS, log_process, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_buffered_cnt(void); + +__pinned_func +static inline uint32_t log_buffered_cnt(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (uint32_t) arch_syscall_invoke0(K_SYSCALL_LOG_BUFFERED_CNT); + } +#endif + compiler_barrier(); + return z_impl_log_buffered_cnt(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_buffered_cnt() ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_BUFFERED_CNT, log_buffered_cnt); syscall__retval = log_buffered_cnt(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_BUFFERED_CNT, log_buffered_cnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_filter_set(struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level); + +__pinned_func +static inline uint32_t log_filter_set(struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct log_backend const *const val; } parm0 = { .val = backend }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = domain_id }; + union { uintptr_t x; int16_t val; } parm2 = { .val = source_id }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = level }; + return (uint32_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LOG_FILTER_SET); + } +#endif + compiler_barrier(); + return z_impl_log_filter_set(backend, domain_id, source_id, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_filter_set(backend, domain_id, source_id, level) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_FILTER_SET, log_filter_set, backend, domain_id, source_id, level); syscall__retval = log_filter_set(backend, domain_id, source_id, level); sys_port_trace_syscall_exit(K_SYSCALL_LOG_FILTER_SET, log_filter_set, backend, domain_id, source_id, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_frontend_filter_set(int16_t source_id, uint32_t level); + +__pinned_func +static inline uint32_t log_frontend_filter_set(int16_t source_id, uint32_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int16_t val; } parm0 = { .val = source_id }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LOG_FRONTEND_FILTER_SET); + } +#endif + compiler_barrier(); + return z_impl_log_frontend_filter_set(source_id, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_frontend_filter_set(source_id, level) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_FRONTEND_FILTER_SET, log_frontend_filter_set, source_id, level); syscall__retval = log_frontend_filter_set(source_id, level); sys_port_trace_syscall_exit(K_SYSCALL_LOG_FRONTEND_FILTER_SET, log_frontend_filter_set, source_id, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/log_msg.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/log_msg.h new file mode 100644 index 0000000..9b8bab5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/log_msg.h @@ -0,0 +1,136 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LOG_MSG_H +#define Z_INCLUDE_SYSCALLS_LOG_MSG_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_z_log_msg_simple_create_0(const void * source, uint32_t level, const char * fmt); + +__pinned_func +static inline void z_log_msg_simple_create_0(const void * source, uint32_t level, const char * fmt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_0(source, level, fmt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_0(source, level, fmt) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0, z_log_msg_simple_create_0, source, level, fmt); z_log_msg_simple_create_0(source, level, fmt); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0, z_log_msg_simple_create_0, source, level, fmt); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_simple_create_1(const void * source, uint32_t level, const char * fmt, uint32_t arg); + +__pinned_func +static inline void z_log_msg_simple_create_1(const void * source, uint32_t level, const char * fmt, uint32_t arg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = arg }; + (void) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_1(source, level, fmt, arg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_1(source, level, fmt, arg) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1, z_log_msg_simple_create_1, source, level, fmt, arg); z_log_msg_simple_create_1(source, level, fmt, arg); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1, z_log_msg_simple_create_1, source, level, fmt, arg); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_simple_create_2(const void * source, uint32_t level, const char * fmt, uint32_t arg0, uint32_t arg1); + +__pinned_func +static inline void z_log_msg_simple_create_2(const void * source, uint32_t level, const char * fmt, uint32_t arg0, uint32_t arg1) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = arg0 }; + union { uintptr_t x; uint32_t val; } parm4 = { .val = arg1 }; + (void) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_2(source, level, fmt, arg0, arg1); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_2(source, level, fmt, arg0, arg1) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2, z_log_msg_simple_create_2, source, level, fmt, arg0, arg1); z_log_msg_simple_create_2(source, level, fmt, arg0, arg1); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2, z_log_msg_simple_create_2, source, level, fmt, arg0, arg1); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_static_create(const void * source, const struct log_msg_desc desc, uint8_t * package, const void * data); + +__pinned_func +static inline void z_log_msg_static_create(const void * source, const struct log_msg_desc desc, uint8_t * package, const void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; const struct log_msg_desc val; } parm1 = { .val = desc }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = package }; + union { uintptr_t x; const void * val; } parm3 = { .val = data }; + (void) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_LOG_MSG_STATIC_CREATE); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_static_create(source, desc, package, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_static_create(source, desc, package, data) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_STATIC_CREATE, z_log_msg_static_create, source, desc, package, data); z_log_msg_static_create(source, desc, package, data); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_STATIC_CREATE, z_log_msg_static_create, source, desc, package, data); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h new file mode 100644 index 0000000..d6e399d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h @@ -0,0 +1,76 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MAXIM_DS3231_H +#define Z_INCLUDE_SYSCALLS_MAXIM_DS3231_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_maxim_ds3231_req_syncpoint(const struct device * dev, struct k_poll_signal * signal); + +__pinned_func +static inline int maxim_ds3231_req_syncpoint(const struct device * dev, struct k_poll_signal * signal) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_poll_signal * val; } parm1 = { .val = signal }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT); + } +#endif + compiler_barrier(); + return z_impl_maxim_ds3231_req_syncpoint(dev, signal); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define maxim_ds3231_req_syncpoint(dev, signal) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT, maxim_ds3231_req_syncpoint, dev, signal); syscall__retval = maxim_ds3231_req_syncpoint(dev, signal); sys_port_trace_syscall_exit(K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT, maxim_ds3231_req_syncpoint, dev, signal, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_maxim_ds3231_get_syncpoint(const struct device * dev, struct maxim_ds3231_syncpoint * syncpoint); + +__pinned_func +static inline int maxim_ds3231_get_syncpoint(const struct device * dev, struct maxim_ds3231_syncpoint * syncpoint) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct maxim_ds3231_syncpoint * val; } parm1 = { .val = syncpoint }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT); + } +#endif + compiler_barrier(); + return z_impl_maxim_ds3231_get_syncpoint(dev, syncpoint); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define maxim_ds3231_get_syncpoint(dev, syncpoint) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT, maxim_ds3231_get_syncpoint, dev, syncpoint); syscall__retval = maxim_ds3231_get_syncpoint(dev, syncpoint); sys_port_trace_syscall_exit(K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT, maxim_ds3231_get_syncpoint, dev, syncpoint, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mbox.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mbox.h new file mode 100644 index 0000000..53ef70b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mbox.h @@ -0,0 +1,124 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MBOX_H +#define Z_INCLUDE_SYSCALLS_MBOX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mbox_send(const struct device * dev, mbox_channel_id_t channel_id, const struct mbox_msg * msg); + +__pinned_func +static inline int mbox_send(const struct device * dev, mbox_channel_id_t channel_id, const struct mbox_msg * msg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; mbox_channel_id_t val; } parm1 = { .val = channel_id }; + union { uintptr_t x; const struct mbox_msg * val; } parm2 = { .val = msg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MBOX_SEND); + } +#endif + compiler_barrier(); + return z_impl_mbox_send(dev, channel_id, msg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_send(dev, channel_id, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_SEND, mbox_send, dev, channel_id, msg); syscall__retval = mbox_send(dev, channel_id, msg); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_SEND, mbox_send, dev, channel_id, msg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mbox_mtu_get(const struct device * dev); + +__pinned_func +static inline int mbox_mtu_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_MBOX_MTU_GET); + } +#endif + compiler_barrier(); + return z_impl_mbox_mtu_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_mtu_get(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_MTU_GET, mbox_mtu_get, dev); syscall__retval = mbox_mtu_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_MTU_GET, mbox_mtu_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mbox_set_enabled(const struct device * dev, mbox_channel_id_t channel_id, bool enabled); + +__pinned_func +static inline int mbox_set_enabled(const struct device * dev, mbox_channel_id_t channel_id, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; mbox_channel_id_t val; } parm1 = { .val = channel_id }; + union { uintptr_t x; bool val; } parm2 = { .val = enabled }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MBOX_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_mbox_set_enabled(dev, channel_id, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_set_enabled(dev, channel_id, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_SET_ENABLED, mbox_set_enabled, dev, channel_id, enabled); syscall__retval = mbox_set_enabled(dev, channel_id, enabled); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_SET_ENABLED, mbox_set_enabled, dev, channel_id, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_mbox_max_channels_get(const struct device * dev); + +__pinned_func +static inline uint32_t mbox_max_channels_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_MBOX_MAX_CHANNELS_GET); + } +#endif + compiler_barrier(); + return z_impl_mbox_max_channels_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_max_channels_get(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_MAX_CHANNELS_GET, mbox_max_channels_get, dev); syscall__retval = mbox_max_channels_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_MAX_CHANNELS_GET, mbox_max_channels_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mdio.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mdio.h new file mode 100644 index 0000000..c00fefe --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mdio.h @@ -0,0 +1,182 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MDIO_H +#define Z_INCLUDE_SYSCALLS_MDIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_mdio_bus_enable(const struct device * dev); + +__pinned_func +static inline void mdio_bus_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_MDIO_BUS_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_mdio_bus_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_bus_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_MDIO_BUS_ENABLE, mdio_bus_enable, dev); mdio_bus_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_BUS_ENABLE, mdio_bus_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_mdio_bus_disable(const struct device * dev); + +__pinned_func +static inline void mdio_bus_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_MDIO_BUS_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_mdio_bus_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_bus_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_MDIO_BUS_DISABLE, mdio_bus_disable, dev); mdio_bus_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_BUS_DISABLE, mdio_bus_disable, dev); } while(false) +#endif +#endif + + +extern int z_impl_mdio_read(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t * data); + +__pinned_func +static inline int mdio_read(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = regad }; + union { uintptr_t x; uint16_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MDIO_READ); + } +#endif + compiler_barrier(); + return z_impl_mdio_read(dev, prtad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_read(dev, prtad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_READ, mdio_read, dev, prtad, regad, data); syscall__retval = mdio_read(dev, prtad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_READ, mdio_read, dev, prtad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_write(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t data); + +__pinned_func +static inline int mdio_write(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = regad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MDIO_WRITE); + } +#endif + compiler_barrier(); + return z_impl_mdio_write(dev, prtad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_write(dev, prtad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_WRITE, mdio_write, dev, prtad, regad, data); syscall__retval = mdio_write(dev, prtad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_WRITE, mdio_write, dev, prtad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_read_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t * data); + +__pinned_func +static inline int mdio_read_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = devad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = regad }; + union { uintptr_t x; uint16_t * val; } parm4 = { .val = data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_MDIO_READ_C45); + } +#endif + compiler_barrier(); + return z_impl_mdio_read_c45(dev, prtad, devad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_read_c45(dev, prtad, devad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_READ_C45, mdio_read_c45, dev, prtad, devad, regad, data); syscall__retval = mdio_read_c45(dev, prtad, devad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_READ_C45, mdio_read_c45, dev, prtad, devad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_write_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data); + +__pinned_func +static inline int mdio_write_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = devad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = regad }; + union { uintptr_t x; uint16_t val; } parm4 = { .val = data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_MDIO_WRITE_C45); + } +#endif + compiler_barrier(); + return z_impl_mdio_write_c45(dev, prtad, devad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_write_c45(dev, prtad, devad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_WRITE_C45, mdio_write_c45, dev, prtad, devad, regad, data); syscall__retval = mdio_write_c45(dev, prtad, devad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_WRITE_C45, mdio_write_c45, dev, prtad, devad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mspi.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mspi.h new file mode 100644 index 0000000..6a72b61 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mspi.h @@ -0,0 +1,202 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MSPI_H +#define Z_INCLUDE_SYSCALLS_MSPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mspi_config(const struct mspi_dt_spec * spec); + +__pinned_func +static inline int mspi_config(const struct mspi_dt_spec * spec) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct mspi_dt_spec * val; } parm0 = { .val = spec }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_MSPI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_config(spec); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_config(spec) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_CONFIG, mspi_config, spec); syscall__retval = mspi_config(spec); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_CONFIG, mspi_config, spec, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_dev_config(const struct device * controller, const struct mspi_dev_id * dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg * cfg); + +__pinned_func +static inline int mspi_dev_config(const struct device * controller, const struct mspi_dev_id * dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const enum mspi_dev_cfg_mask val; } parm2 = { .val = param_mask }; + union { uintptr_t x; const struct mspi_dev_cfg * val; } parm3 = { .val = cfg }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MSPI_DEV_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_dev_config(controller, dev_id, param_mask, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_dev_config(controller, dev_id, param_mask, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_DEV_CONFIG, mspi_dev_config, controller, dev_id, param_mask, cfg); syscall__retval = mspi_dev_config(controller, dev_id, param_mask, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_DEV_CONFIG, mspi_dev_config, controller, dev_id, param_mask, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_get_channel_status(const struct device * controller, uint8_t ch); + +__pinned_func +static inline int mspi_get_channel_status(const struct device * controller, uint8_t ch) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = ch }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MSPI_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_mspi_get_channel_status(controller, ch); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_get_channel_status(controller, ch) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_GET_CHANNEL_STATUS, mspi_get_channel_status, controller, ch); syscall__retval = mspi_get_channel_status(controller, ch); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_GET_CHANNEL_STATUS, mspi_get_channel_status, controller, ch, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_transceive(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xfer * req); + +__pinned_func +static inline int mspi_transceive(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xfer * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_xfer * val; } parm2 = { .val = req }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_TRANSCEIVE); + } +#endif + compiler_barrier(); + return z_impl_mspi_transceive(controller, dev_id, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_transceive(controller, dev_id, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_TRANSCEIVE, mspi_transceive, controller, dev_id, req); syscall__retval = mspi_transceive(controller, dev_id, req); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_TRANSCEIVE, mspi_transceive, controller, dev_id, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_xip_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xip_cfg * cfg); + +__pinned_func +static inline int mspi_xip_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xip_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_xip_cfg * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_XIP_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_xip_config(controller, dev_id, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_xip_config(controller, dev_id, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_XIP_CONFIG, mspi_xip_config, controller, dev_id, cfg); syscall__retval = mspi_xip_config(controller, dev_id, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_XIP_CONFIG, mspi_xip_config, controller, dev_id, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_scramble_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_scramble_cfg * cfg); + +__pinned_func +static inline int mspi_scramble_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_scramble_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_scramble_cfg * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_SCRAMBLE_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_scramble_config(controller, dev_id, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_scramble_config(controller, dev_id, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_SCRAMBLE_CONFIG, mspi_scramble_config, controller, dev_id, cfg); syscall__retval = mspi_scramble_config(controller, dev_id, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_SCRAMBLE_CONFIG, mspi_scramble_config, controller, dev_id, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_timing_config(const struct device * controller, const struct mspi_dev_id * dev_id, const uint32_t param_mask, void * cfg); + +__pinned_func +static inline int mspi_timing_config(const struct device * controller, const struct mspi_dev_id * dev_id, const uint32_t param_mask, void * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const uint32_t val; } parm2 = { .val = param_mask }; + union { uintptr_t x; void * val; } parm3 = { .val = cfg }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MSPI_TIMING_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_timing_config(controller, dev_id, param_mask, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_timing_config(controller, dev_id, param_mask, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_TIMING_CONFIG, mspi_timing_config, controller, dev_id, param_mask, cfg); syscall__retval = mspi_timing_config(controller, dev_id, param_mask, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_TIMING_CONFIG, mspi_timing_config, controller, dev_id, param_mask, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mutex.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mutex.h new file mode 100644 index 0000000..1e90425 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/mutex.h @@ -0,0 +1,75 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MUTEX_H +#define Z_INCLUDE_SYSCALLS_MUTEX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK); + } +#endif + compiler_barrier(); + return z_impl_z_sys_mutex_kernel_lock(mutex, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_sys_mutex_kernel_lock(mutex, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout); syscall__retval = z_sys_mutex_kernel_lock(mutex, timeout); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_z_sys_mutex_kernel_unlock(struct sys_mutex * mutex); + +__pinned_func +static inline int z_sys_mutex_kernel_unlock(struct sys_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK); + } +#endif + compiler_barrier(); + return z_impl_z_sys_mutex_kernel_unlock(mutex); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_sys_mutex_kernel_unlock(mutex) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex); syscall__retval = z_sys_mutex_kernel_unlock(mutex); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/net_if.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/net_if.h new file mode 100644 index 0000000..89c78f5 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/net_if.h @@ -0,0 +1,270 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NET_IF_H +#define Z_INCLUDE_SYSCALLS_NET_IF_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_if_ipv6_addr_lookup_by_index(const struct in6_addr * addr); + +__pinned_func +static inline int net_if_ipv6_addr_lookup_by_index(const struct in6_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct in6_addr * val; } parm0 = { .val = addr }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_lookup_by_index(addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_lookup_by_index(addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX, net_if_ipv6_addr_lookup_by_index, addr); syscall__retval = net_if_ipv6_addr_lookup_by_index(addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX, net_if_ipv6_addr_lookup_by_index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv6_addr_add_by_index(int index, const struct in6_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime); + +__pinned_func +static inline bool net_if_ipv6_addr_add_by_index(int index, const struct in6_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in6_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; enum net_addr_type val; } parm2 = { .val = addr_type }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = vlifetime }; + return (bool) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX, net_if_ipv6_addr_add_by_index, index, addr, addr_type, vlifetime); syscall__retval = net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX, net_if_ipv6_addr_add_by_index, index, addr, addr_type, vlifetime, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr * addr); + +__pinned_func +static inline bool net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in6_addr * val; } parm1 = { .val = addr }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_rm_by_index(index, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_rm_by_index(index, addr) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX, net_if_ipv6_addr_rm_by_index, index, addr); syscall__retval = net_if_ipv6_addr_rm_by_index(index, addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX, net_if_ipv6_addr_rm_by_index, index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_net_if_ipv4_addr_lookup_by_index(const struct in_addr * addr); + +__pinned_func +static inline int net_if_ipv4_addr_lookup_by_index(const struct in_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct in_addr * val; } parm0 = { .val = addr }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_lookup_by_index(addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_lookup_by_index(addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX, net_if_ipv4_addr_lookup_by_index, addr); syscall__retval = net_if_ipv4_addr_lookup_by_index(addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX, net_if_ipv4_addr_lookup_by_index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_addr_add_by_index(int index, const struct in_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime); + +__pinned_func +static inline bool net_if_ipv4_addr_add_by_index(int index, const struct in_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; enum net_addr_type val; } parm2 = { .val = addr_type }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = vlifetime }; + return (bool) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX, net_if_ipv4_addr_add_by_index, index, addr, addr_type, vlifetime); syscall__retval = net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX, net_if_ipv4_addr_add_by_index, index, addr, addr_type, vlifetime, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_addr_rm_by_index(int index, const struct in_addr * addr); + +__pinned_func +static inline bool net_if_ipv4_addr_rm_by_index(int index, const struct in_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = addr }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_rm_by_index(index, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_rm_by_index(index, addr) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX, net_if_ipv4_addr_rm_by_index, index, addr); syscall__retval = net_if_ipv4_addr_rm_by_index(index, addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX, net_if_ipv4_addr_rm_by_index, index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_netmask_by_index(int index, const struct in_addr * netmask); + +__pinned_func +static inline bool net_if_ipv4_set_netmask_by_index(int index, const struct in_addr * netmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = netmask }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_netmask_by_index(index, netmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_netmask_by_index(index, netmask) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX, net_if_ipv4_set_netmask_by_index, index, netmask); syscall__retval = net_if_ipv4_set_netmask_by_index(index, netmask); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX, net_if_ipv4_set_netmask_by_index, index, netmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct in_addr * addr, const struct in_addr * netmask); + +__pinned_func +static inline bool net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct in_addr * addr, const struct in_addr * netmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; const struct in_addr * val; } parm2 = { .val = netmask }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX, net_if_ipv4_set_netmask_by_addr_by_index, index, addr, netmask); syscall__retval = net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX, net_if_ipv4_set_netmask_by_addr_by_index, index, addr, netmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_gw_by_index(int index, const struct in_addr * gw); + +__pinned_func +static inline bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr * gw) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct in_addr * val; } parm1 = { .val = gw }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_gw_by_index(index, gw); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_gw_by_index(index, gw) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX, net_if_ipv4_set_gw_by_index, index, gw); syscall__retval = net_if_ipv4_set_gw_by_index(index, gw); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX, net_if_ipv4_set_gw_by_index, index, gw, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern struct net_if * z_impl_net_if_get_by_index(int index); + +__pinned_func +static inline struct net_if * net_if_get_by_index(int index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + return (struct net_if *) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_GET_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_get_by_index(index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_get_by_index(index) ({ struct net_if * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_GET_BY_INDEX, net_if_get_by_index, index); syscall__retval = net_if_get_by_index(index); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_GET_BY_INDEX, net_if_get_by_index, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/net_ip.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/net_ip.h new file mode 100644 index 0000000..aeed478 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/net_ip.h @@ -0,0 +1,79 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NET_IP_H +#define Z_INCLUDE_SYSCALLS_NET_IP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_addr_pton(sa_family_t family, const char * src, void * dst); + +__pinned_func +static inline int net_addr_pton(sa_family_t family, const char * src, void * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const char * val; } parm1 = { .val = src }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_NET_ADDR_PTON); + } +#endif + compiler_barrier(); + return z_impl_net_addr_pton(family, src, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_addr_pton(family, src, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ADDR_PTON, net_addr_pton, family, src, dst); syscall__retval = net_addr_pton(family, src, dst); sys_port_trace_syscall_exit(K_SYSCALL_NET_ADDR_PTON, net_addr_pton, family, src, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern char * z_impl_net_addr_ntop(sa_family_t family, const void * src, char * dst, size_t size); + +__pinned_func +static inline char * net_addr_ntop(sa_family_t family, const void * src, char * dst, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const void * val; } parm1 = { .val = src }; + union { uintptr_t x; char * val; } parm2 = { .val = dst }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (char *) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_ADDR_NTOP); + } +#endif + compiler_barrier(); + return z_impl_net_addr_ntop(family, src, dst, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_addr_ntop(family, src, dst, size) ({ char * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ADDR_NTOP, net_addr_ntop, family, src, dst, size); syscall__retval = net_addr_ntop(family, src, dst, size); sys_port_trace_syscall_exit(K_SYSCALL_NET_ADDR_NTOP, net_addr_ntop, family, src, dst, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h new file mode 100644 index 0000000..ea0c654 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h @@ -0,0 +1,53 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NRF_QSPI_NOR_H +#define Z_INCLUDE_SYSCALLS_NRF_QSPI_NOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_nrf_qspi_nor_xip_enable(const struct device * dev, bool enable); + +__pinned_func +static inline void nrf_qspi_nor_xip_enable(const struct device * dev, bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enable }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_nrf_qspi_nor_xip_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define nrf_qspi_nor_xip_enable(dev, enable) do { sys_port_trace_syscall_enter(K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE, nrf_qspi_nor_xip_enable, dev, enable); nrf_qspi_nor_xip_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE, nrf_qspi_nor_xip_enable, dev, enable); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/opamp.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/opamp.h new file mode 100644 index 0000000..5c45de9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/opamp.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_OPAMP_H +#define Z_INCLUDE_SYSCALLS_OPAMP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_opamp_set_gain(const struct device * dev, enum opamp_gain gain); + +__pinned_func +static inline int opamp_set_gain(const struct device * dev, enum opamp_gain gain) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum opamp_gain val; } parm1 = { .val = gain }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_OPAMP_SET_GAIN); + } +#endif + compiler_barrier(); + return z_impl_opamp_set_gain(dev, gain); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define opamp_set_gain(dev, gain) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_OPAMP_SET_GAIN, opamp_set_gain, dev, gain); syscall__retval = opamp_set_gain(dev, gain); sys_port_trace_syscall_exit(K_SYSCALL_OPAMP_SET_GAIN, opamp_set_gain, dev, gain, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/peci.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/peci.h new file mode 100644 index 0000000..17acef0 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/peci.h @@ -0,0 +1,122 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PECI_H +#define Z_INCLUDE_SYSCALLS_PECI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_peci_config(const struct device * dev, uint32_t bitrate); + +__pinned_func +static inline int peci_config(const struct device * dev, uint32_t bitrate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_peci_config(dev, bitrate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_config(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate); syscall__retval = peci_config(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_enable(const struct device * dev); + +__pinned_func +static inline int peci_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_peci_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_ENABLE, peci_enable, dev); syscall__retval = peci_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_ENABLE, peci_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_disable(const struct device * dev); + +__pinned_func +static inline int peci_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_peci_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_DISABLE, peci_disable, dev); syscall__retval = peci_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_DISABLE, peci_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_transfer(const struct device * dev, struct peci_msg * msg); + +__pinned_func +static inline int peci_transfer(const struct device * dev, struct peci_msg * msg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct peci_msg * val; } parm1 = { .val = msg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_peci_transfer(dev, msg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_transfer(dev, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg); syscall__retval = peci_transfer(dev, msg); sys_port_trace_syscall_exit(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ps2.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ps2.h new file mode 100644 index 0000000..4b94318 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ps2.h @@ -0,0 +1,146 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PS2_H +#define Z_INCLUDE_SYSCALLS_PS2_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ps2_config(const struct device * dev, ps2_callback_t callback_isr); + +__pinned_func +static inline int ps2_config(const struct device * dev, ps2_callback_t callback_isr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; ps2_callback_t val; } parm1 = { .val = callback_isr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_ps2_config(dev, callback_isr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_config(dev, callback_isr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_CONFIG, ps2_config, dev, callback_isr); syscall__retval = ps2_config(dev, callback_isr); sys_port_trace_syscall_exit(K_SYSCALL_PS2_CONFIG, ps2_config, dev, callback_isr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_write(const struct device * dev, uint8_t value); + +__pinned_func +static inline int ps2_write(const struct device * dev, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_WRITE); + } +#endif + compiler_barrier(); + return z_impl_ps2_write(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_write(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_WRITE, ps2_write, dev, value); syscall__retval = ps2_write(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_PS2_WRITE, ps2_write, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_read(const struct device * dev, uint8_t * value); + +__pinned_func +static inline int ps2_read(const struct device * dev, uint8_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_READ); + } +#endif + compiler_barrier(); + return z_impl_ps2_read(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_read(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_READ, ps2_read, dev, value); syscall__retval = ps2_read(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_PS2_READ, ps2_read, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_enable_callback(const struct device * dev); + +__pinned_func +static inline int ps2_enable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PS2_ENABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_ps2_enable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_enable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_ENABLE_CALLBACK, ps2_enable_callback, dev); syscall__retval = ps2_enable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_PS2_ENABLE_CALLBACK, ps2_enable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_disable_callback(const struct device * dev); + +__pinned_func +static inline int ps2_disable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PS2_DISABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_ps2_disable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_disable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_DISABLE_CALLBACK, ps2_disable_callback, dev); syscall__retval = ps2_disable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_PS2_DISABLE_CALLBACK, ps2_disable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/psi5.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/psi5.h new file mode 100644 index 0000000..d990afc --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/psi5.h @@ -0,0 +1,133 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PSI5_H +#define Z_INCLUDE_SYSCALLS_PSI5_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_psi5_start_sync(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int psi5_start_sync(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PSI5_START_SYNC); + } +#endif + compiler_barrier(); + return z_impl_psi5_start_sync(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_start_sync(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_START_SYNC, psi5_start_sync, dev, channel); syscall__retval = psi5_start_sync(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_START_SYNC, psi5_start_sync, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_psi5_stop_sync(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int psi5_stop_sync(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PSI5_STOP_SYNC); + } +#endif + compiler_barrier(); + return z_impl_psi5_stop_sync(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_stop_sync(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_STOP_SYNC, psi5_stop_sync, dev, channel); syscall__retval = psi5_stop_sync(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_STOP_SYNC, psi5_stop_sync, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_psi5_send(const struct device * dev, uint8_t channel, const uint64_t data, k_timeout_t timeout, psi5_tx_callback_t callback, void * user_data); + +__pinned_func +static inline int psi5_send(const struct device * dev, uint8_t channel, const uint64_t data, k_timeout_t timeout, psi5_tx_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; const uint64_t val; } parm2 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + union { uintptr_t x; psi5_tx_callback_t val; } parm4 = { .val = callback }; + union { uintptr_t x; void * val; } parm5 = { .val = user_data }; + uintptr_t more[] = { + parm4.x, + parm5.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, (uintptr_t) &more, K_SYSCALL_PSI5_SEND); + } +#endif + compiler_barrier(); + return z_impl_psi5_send(dev, channel, data, timeout, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_send(dev, channel, data, timeout, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_SEND, psi5_send, dev, channel, data, timeout, callback, user_data); syscall__retval = psi5_send(dev, channel, data, timeout, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_SEND, psi5_send, dev, channel, data, timeout, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_psi5_register_callback(const struct device * dev, uint8_t channel, struct psi5_rx_callback_configs callback_configs); + +__pinned_func +static inline int psi5_register_callback(const struct device * dev, uint8_t channel, struct psi5_rx_callback_configs callback_configs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; struct psi5_rx_callback_configs val; } parm2 = { .val = callback_configs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_PSI5_REGISTER_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_psi5_register_callback(dev, channel, callback_configs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_register_callback(dev, channel, callback_configs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_REGISTER_CALLBACK, psi5_register_callback, dev, channel, callback_configs); syscall__retval = psi5_register_callback(dev, channel, callback_configs); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_REGISTER_CALLBACK, psi5_register_callback, dev, channel, callback_configs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ptp_clock.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ptp_clock.h new file mode 100644 index 0000000..399019c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/ptp_clock.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PTP_CLOCK_H +#define Z_INCLUDE_SYSCALLS_PTP_CLOCK_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ptp_clock_get(const struct device * dev, struct net_ptp_time * tm); + +__pinned_func +static inline int ptp_clock_get(const struct device * dev, struct net_ptp_time * tm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct net_ptp_time * val; } parm1 = { .val = tm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PTP_CLOCK_GET); + } +#endif + compiler_barrier(); + return z_impl_ptp_clock_get(dev, tm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ptp_clock_get(dev, tm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PTP_CLOCK_GET, ptp_clock_get, dev, tm); syscall__retval = ptp_clock_get(dev, tm); sys_port_trace_syscall_exit(K_SYSCALL_PTP_CLOCK_GET, ptp_clock_get, dev, tm, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/pwm.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/pwm.h new file mode 100644 index 0000000..49d249f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/pwm.h @@ -0,0 +1,160 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PWM_H +#define Z_INCLUDE_SYSCALLS_PWM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_pwm_set_cycles(const struct device * dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags); + +__pinned_func +static inline int pwm_set_cycles(const struct device * dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = period }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = pulse }; + union { uintptr_t x; pwm_flags_t val; } parm4 = { .val = flags }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_PWM_SET_CYCLES); + } +#endif + compiler_barrier(); + return z_impl_pwm_set_cycles(dev, channel, period, pulse, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_set_cycles(dev, channel, period, pulse, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_SET_CYCLES, pwm_set_cycles, dev, channel, period, pulse, flags); syscall__retval = pwm_set_cycles(dev, channel, period, pulse, flags); sys_port_trace_syscall_exit(K_SYSCALL_PWM_SET_CYCLES, pwm_set_cycles, dev, channel, period, pulse, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_get_cycles_per_sec(const struct device * dev, uint32_t channel, uint64_t * cycles); + +__pinned_func +static inline int pwm_get_cycles_per_sec(const struct device * dev, uint32_t channel, uint64_t * cycles) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint64_t * val; } parm2 = { .val = cycles }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_PWM_GET_CYCLES_PER_SEC); + } +#endif + compiler_barrier(); + return z_impl_pwm_get_cycles_per_sec(dev, channel, cycles); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_get_cycles_per_sec(dev, channel, cycles) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_GET_CYCLES_PER_SEC, pwm_get_cycles_per_sec, dev, channel, cycles); syscall__retval = pwm_get_cycles_per_sec(dev, channel, cycles); sys_port_trace_syscall_exit(K_SYSCALL_PWM_GET_CYCLES_PER_SEC, pwm_get_cycles_per_sec, dev, channel, cycles, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_enable_capture(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_enable_capture(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_ENABLE_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_pwm_enable_capture(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_enable_capture(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_ENABLE_CAPTURE, pwm_enable_capture, dev, channel); syscall__retval = pwm_enable_capture(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_ENABLE_CAPTURE, pwm_enable_capture, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_disable_capture(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_disable_capture(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_DISABLE_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_pwm_disable_capture(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_disable_capture(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_DISABLE_CAPTURE, pwm_disable_capture, dev, channel); syscall__retval = pwm_disable_capture(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_DISABLE_CAPTURE, pwm_disable_capture, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_capture_cycles(const struct device * dev, uint32_t channel, pwm_flags_t flags, uint32_t * period, uint32_t * pulse, k_timeout_t timeout); + +__pinned_func +static inline int pwm_capture_cycles(const struct device * dev, uint32_t channel, pwm_flags_t flags, uint32_t * period, uint32_t * pulse, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; pwm_flags_t val; } parm2 = { .val = flags }; + union { uintptr_t x; uint32_t * val; } parm3 = { .val = period }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = pulse }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm5 = { .val = timeout }; + uintptr_t more[] = { + parm5.split.lo, + parm5.split.hi + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_PWM_CAPTURE_CYCLES); + } +#endif + compiler_barrier(); + return z_impl_pwm_capture_cycles(dev, channel, flags, period, pulse, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_capture_cycles(dev, channel, flags, period, pulse, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_CAPTURE_CYCLES, pwm_capture_cycles, dev, channel, flags, period, pulse, timeout); syscall__retval = pwm_capture_cycles(dev, channel, flags, period, pulse, timeout); sys_port_trace_syscall_exit(K_SYSCALL_PWM_CAPTURE_CYCLES, pwm_capture_cycles, dev, channel, flags, period, pulse, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/random.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/random.h new file mode 100644 index 0000000..0e0a77c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/random.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RANDOM_H +#define Z_INCLUDE_SYSCALLS_RANDOM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sys_rand_get(void * dst, size_t len); + +__pinned_func +static inline void sys_rand_get(void * dst, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = dst }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_RAND_GET); + return; + } +#endif + compiler_barrier(); + z_impl_sys_rand_get(dst, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_rand_get(dst, len) do { sys_port_trace_syscall_enter(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); sys_rand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); } while(false) +#endif +#endif + + +extern int z_impl_sys_csrand_get(void * dst, size_t len); + +__pinned_func +static inline int sys_csrand_get(void * dst, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = dst }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CSRAND_GET); + } +#endif + compiler_barrier(); + return z_impl_sys_csrand_get(dst, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_csrand_get(dst, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len); syscall__retval = sys_csrand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/renesas_elc.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/renesas_elc.h new file mode 100644 index 0000000..be08066 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/renesas_elc.h @@ -0,0 +1,147 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RENESAS_ELC_H +#define Z_INCLUDE_SYSCALLS_RENESAS_ELC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_renesas_elc_software_event_generate(const struct device * dev, uint32_t event); + +__pinned_func +static inline int renesas_elc_software_event_generate(const struct device * dev, uint32_t event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = event }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_software_event_generate(dev, event); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_software_event_generate(dev, event) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE, renesas_elc_software_event_generate, dev, event); syscall__retval = renesas_elc_software_event_generate(dev, event); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE, renesas_elc_software_event_generate, dev, event, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_link_set(const struct device * dev, uint32_t peripheral, uint32_t event); + +__pinned_func +static inline int renesas_elc_link_set(const struct device * dev, uint32_t peripheral, uint32_t event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peripheral }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = event }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RENESAS_ELC_LINK_SET); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_link_set(dev, peripheral, event); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_link_set(dev, peripheral, event) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_LINK_SET, renesas_elc_link_set, dev, peripheral, event); syscall__retval = renesas_elc_link_set(dev, peripheral, event); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_LINK_SET, renesas_elc_link_set, dev, peripheral, event, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_link_break(const struct device * dev, uint32_t peripheral); + +__pinned_func +static inline int renesas_elc_link_break(const struct device * dev, uint32_t peripheral) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peripheral }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_ELC_LINK_BREAK); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_link_break(dev, peripheral); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_link_break(dev, peripheral) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_LINK_BREAK, renesas_elc_link_break, dev, peripheral); syscall__retval = renesas_elc_link_break(dev, peripheral); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_LINK_BREAK, renesas_elc_link_break, dev, peripheral, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_enable(const struct device * dev); + +__pinned_func +static inline int renesas_elc_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RENESAS_ELC_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_ENABLE, renesas_elc_enable, dev); syscall__retval = renesas_elc_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_ENABLE, renesas_elc_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_disable(const struct device * dev); + +__pinned_func +static inline int renesas_elc_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RENESAS_ELC_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_DISABLE, renesas_elc_disable, dev); syscall__retval = renesas_elc_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_DISABLE, renesas_elc_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/reset.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/reset.h new file mode 100644 index 0000000..c6be6fd --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/reset.h @@ -0,0 +1,125 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RESET_H +#define Z_INCLUDE_SYSCALLS_RESET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_reset_status(const struct device * dev, uint32_t id, uint8_t * status); + +__pinned_func +static inline int reset_status(const struct device * dev, uint32_t id, uint8_t * status) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = status }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RESET_STATUS); + } +#endif + compiler_barrier(); + return z_impl_reset_status(dev, id, status); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_status(dev, id, status) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_STATUS, reset_status, dev, id, status); syscall__retval = reset_status(dev, id, status); sys_port_trace_syscall_exit(K_SYSCALL_RESET_STATUS, reset_status, dev, id, status, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_assert(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_assert(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_ASSERT); + } +#endif + compiler_barrier(); + return z_impl_reset_line_assert(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_assert(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_ASSERT, reset_line_assert, dev, id); syscall__retval = reset_line_assert(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_ASSERT, reset_line_assert, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_deassert(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_deassert(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_DEASSERT); + } +#endif + compiler_barrier(); + return z_impl_reset_line_deassert(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_deassert(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_DEASSERT, reset_line_deassert, dev, id); syscall__retval = reset_line_deassert(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_DEASSERT, reset_line_deassert, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_toggle(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_toggle(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_TOGGLE); + } +#endif + compiler_barrier(); + return z_impl_reset_line_toggle(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_toggle(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_TOGGLE, reset_line_toggle, dev, id); syscall__retval = reset_line_toggle(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_TOGGLE, reset_line_toggle, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/retained_mem.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/retained_mem.h new file mode 100644 index 0000000..b3725f1 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/retained_mem.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RETAINED_MEM_H +#define Z_INCLUDE_SYSCALLS_RETAINED_MEM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_retained_mem_size(const struct device * dev); + +__pinned_func +static inline ssize_t retained_mem_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (ssize_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_RETAINED_MEM_SIZE); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_size(dev) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_SIZE, retained_mem_size, dev); syscall__retval = retained_mem_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_SIZE, retained_mem_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_read(const struct device * dev, off_t offset, uint8_t * buffer, size_t size); + +__pinned_func +static inline int retained_mem_read(const struct device * dev, off_t offset, uint8_t * buffer, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RETAINED_MEM_READ); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_read(dev, offset, buffer, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_read(dev, offset, buffer, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_READ, retained_mem_read, dev, offset, buffer, size); syscall__retval = retained_mem_read(dev, offset, buffer, size); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_READ, retained_mem_read, dev, offset, buffer, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_write(const struct device * dev, off_t offset, const uint8_t * buffer, size_t size); + +__pinned_func +static inline int retained_mem_write(const struct device * dev, off_t offset, const uint8_t * buffer, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const uint8_t * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RETAINED_MEM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_write(dev, offset, buffer, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_write(dev, offset, buffer, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_WRITE, retained_mem_write, dev, offset, buffer, size); syscall__retval = retained_mem_write(dev, offset, buffer, size); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_WRITE, retained_mem_write, dev, offset, buffer, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_clear(const struct device * dev); + +__pinned_func +static inline int retained_mem_clear(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RETAINED_MEM_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_clear(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_clear(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_CLEAR, retained_mem_clear, dev); syscall__retval = retained_mem_clear(dev); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_CLEAR, retained_mem_clear, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/rtc.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/rtc.h new file mode 100644 index 0000000..460c4e6 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/rtc.h @@ -0,0 +1,225 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RTC_H +#define Z_INCLUDE_SYSCALLS_RTC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_rtc_set_time(const struct device * dev, const struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_set_time(const struct device * dev, const struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct rtc_time * val; } parm1 = { .val = timeptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_SET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_set_time(dev, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_set_time(dev, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_SET_TIME, rtc_set_time, dev, timeptr); syscall__retval = rtc_set_time(dev, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_SET_TIME, rtc_set_time, dev, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_get_time(const struct device * dev, struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_get_time(const struct device * dev, struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct rtc_time * val; } parm1 = { .val = timeptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_get_time(dev, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_get_time(dev, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_GET_TIME, rtc_get_time, dev, timeptr); syscall__retval = rtc_get_time(dev, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_GET_TIME, rtc_get_time, dev, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_get_supported_fields(const struct device * dev, uint16_t id, uint16_t * mask); + +__pinned_func +static inline int rtc_alarm_get_supported_fields(const struct device * dev, uint16_t id, uint16_t * mask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t * val; } parm2 = { .val = mask }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_get_supported_fields(dev, id, mask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_get_supported_fields(dev, id, mask) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS, rtc_alarm_get_supported_fields, dev, id, mask); syscall__retval = rtc_alarm_get_supported_fields(dev, id, mask); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS, rtc_alarm_get_supported_fields, dev, id, mask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_set_time(const struct device * dev, uint16_t id, uint16_t mask, const struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_alarm_set_time(const struct device * dev, uint16_t id, uint16_t mask, const struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = mask }; + union { uintptr_t x; const struct rtc_time * val; } parm3 = { .val = timeptr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_SET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_set_time(dev, id, mask, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_set_time(dev, id, mask, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_SET_TIME, rtc_alarm_set_time, dev, id, mask, timeptr); syscall__retval = rtc_alarm_set_time(dev, id, mask, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_SET_TIME, rtc_alarm_set_time, dev, id, mask, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_get_time(const struct device * dev, uint16_t id, uint16_t * mask, struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_alarm_get_time(const struct device * dev, uint16_t id, uint16_t * mask, struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t * val; } parm2 = { .val = mask }; + union { uintptr_t x; struct rtc_time * val; } parm3 = { .val = timeptr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_get_time(dev, id, mask, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_get_time(dev, id, mask, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_GET_TIME, rtc_alarm_get_time, dev, id, mask, timeptr); syscall__retval = rtc_alarm_get_time(dev, id, mask, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_GET_TIME, rtc_alarm_get_time, dev, id, mask, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_is_pending(const struct device * dev, uint16_t id); + +__pinned_func +static inline int rtc_alarm_is_pending(const struct device * dev, uint16_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_ALARM_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_is_pending(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_is_pending(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_IS_PENDING, rtc_alarm_is_pending, dev, id); syscall__retval = rtc_alarm_is_pending(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_IS_PENDING, rtc_alarm_is_pending, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_set_calibration(const struct device * dev, int32_t calibration); + +__pinned_func +static inline int rtc_set_calibration(const struct device * dev, int32_t calibration) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = calibration }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_SET_CALIBRATION); + } +#endif + compiler_barrier(); + return z_impl_rtc_set_calibration(dev, calibration); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_set_calibration(dev, calibration) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_SET_CALIBRATION, rtc_set_calibration, dev, calibration); syscall__retval = rtc_set_calibration(dev, calibration); sys_port_trace_syscall_exit(K_SYSCALL_RTC_SET_CALIBRATION, rtc_set_calibration, dev, calibration, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_get_calibration(const struct device * dev, int32_t * calibration); + +__pinned_func +static inline int rtc_get_calibration(const struct device * dev, int32_t * calibration) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t * val; } parm1 = { .val = calibration }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_GET_CALIBRATION); + } +#endif + compiler_barrier(); + return z_impl_rtc_get_calibration(dev, calibration); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_get_calibration(dev, calibration) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_GET_CALIBRATION, rtc_get_calibration, dev, calibration); syscall__retval = rtc_get_calibration(dev, calibration); sys_port_trace_syscall_exit(K_SYSCALL_RTC_GET_CALIBRATION, rtc_get_calibration, dev, calibration, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/rtio.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/rtio.h new file mode 100644 index 0000000..5bea156 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/rtio.h @@ -0,0 +1,251 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RTIO_H +#define Z_INCLUDE_SYSCALLS_RTIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_rtio_cqe_get_mempool_buffer(const struct rtio * r, struct rtio_cqe * cqe, uint8_t ** buff, uint32_t * buff_len); + +__pinned_func +static inline int rtio_cqe_get_mempool_buffer(const struct rtio * r, struct rtio_cqe * cqe, uint8_t ** buff, uint32_t * buff_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; struct rtio_cqe * val; } parm1 = { .val = cqe }; + union { uintptr_t x; uint8_t ** val; } parm2 = { .val = buff }; + union { uintptr_t x; uint32_t * val; } parm3 = { .val = buff_len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER); + } +#endif + compiler_barrier(); + return z_impl_rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER, rtio_cqe_get_mempool_buffer, r, cqe, buff, buff_len); syscall__retval = rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER, rtio_cqe_get_mempool_buffer, r, cqe, buff, buff_len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_rtio_release_buffer(struct rtio * r, void * buff, uint32_t buff_len); + +__pinned_func +static inline void rtio_release_buffer(struct rtio * r, void * buff, uint32_t buff_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; void * val; } parm1 = { .val = buff }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = buff_len }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTIO_RELEASE_BUFFER); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_release_buffer(r, buff, buff_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_release_buffer(r, buff, buff_len) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_RELEASE_BUFFER, rtio_release_buffer, r, buff, buff_len); rtio_release_buffer(r, buff, buff_len); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_RELEASE_BUFFER, rtio_release_buffer, r, buff, buff_len); } while(false) +#endif +#endif + + +extern int z_impl_rtio_sqe_cancel(struct rtio_sqe * sqe); + +__pinned_func +static inline int rtio_sqe_cancel(struct rtio_sqe * sqe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_sqe * val; } parm0 = { .val = sqe }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_SQE_CANCEL); + } +#endif + compiler_barrier(); + return z_impl_rtio_sqe_cancel(sqe); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_cancel(sqe) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_CANCEL, rtio_sqe_cancel, sqe); syscall__retval = rtio_sqe_cancel(sqe); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_CANCEL, rtio_sqe_cancel, sqe, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_rtio_sqe_signal(struct rtio_sqe * sqe); + +__pinned_func +static inline void rtio_sqe_signal(struct rtio_sqe * sqe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_sqe * val; } parm0 = { .val = sqe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_SQE_SIGNAL); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_sqe_signal(sqe); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_signal(sqe) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_SIGNAL, rtio_sqe_signal, sqe); rtio_sqe_signal(sqe); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_SIGNAL, rtio_sqe_signal, sqe); } while(false) +#endif +#endif + + +extern int z_impl_rtio_sqe_copy_in_get_handles(struct rtio * r, const struct rtio_sqe * sqes, struct rtio_sqe ** handle, size_t sqe_count); + +__pinned_func +static inline int rtio_sqe_copy_in_get_handles(struct rtio * r, const struct rtio_sqe * sqes, struct rtio_sqe ** handle, size_t sqe_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; const struct rtio_sqe * val; } parm1 = { .val = sqes }; + union { uintptr_t x; struct rtio_sqe ** val; } parm2 = { .val = handle }; + union { uintptr_t x; size_t val; } parm3 = { .val = sqe_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES); + } +#endif + compiler_barrier(); + return z_impl_rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES, rtio_sqe_copy_in_get_handles, r, sqes, handle, sqe_count); syscall__retval = rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES, rtio_sqe_copy_in_get_handles, r, sqes, handle, sqe_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_cqe_copy_out(struct rtio * r, struct rtio_cqe * cqes, size_t cqe_count, k_timeout_t timeout); + +__pinned_func +static inline int rtio_cqe_copy_out(struct rtio * r, struct rtio_cqe * cqes, size_t cqe_count, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; struct rtio_cqe * val; } parm1 = { .val = cqes }; + union { uintptr_t x; size_t val; } parm2 = { .val = cqe_count }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_RTIO_CQE_COPY_OUT); + } +#endif + compiler_barrier(); + return z_impl_rtio_cqe_copy_out(r, cqes, cqe_count, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_cqe_copy_out(r, cqes, cqe_count, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_CQE_COPY_OUT, rtio_cqe_copy_out, r, cqes, cqe_count, timeout); syscall__retval = rtio_cqe_copy_out(r, cqes, cqe_count, timeout); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_CQE_COPY_OUT, rtio_cqe_copy_out, r, cqes, cqe_count, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_submit(struct rtio * r, uint32_t wait_count); + +__pinned_func +static inline int rtio_submit(struct rtio * r, uint32_t wait_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = wait_count }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTIO_SUBMIT); + } +#endif + compiler_barrier(); + return z_impl_rtio_submit(r, wait_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_submit(r, wait_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SUBMIT, rtio_submit, r, wait_count); syscall__retval = rtio_submit(r, wait_count); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SUBMIT, rtio_submit, r, wait_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern struct rtio * z_impl_rtio_pool_acquire(struct rtio_pool * pool); + +__pinned_func +static inline struct rtio * rtio_pool_acquire(struct rtio_pool * pool) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_pool * val; } parm0 = { .val = pool }; + return (struct rtio *) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_POOL_ACQUIRE); + } +#endif + compiler_barrier(); + return z_impl_rtio_pool_acquire(pool); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_pool_acquire(pool) ({ struct rtio * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_POOL_ACQUIRE, rtio_pool_acquire, pool); syscall__retval = rtio_pool_acquire(pool); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_POOL_ACQUIRE, rtio_pool_acquire, pool, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_rtio_pool_release(struct rtio_pool * pool, struct rtio * r); + +__pinned_func +static inline void rtio_pool_release(struct rtio_pool * pool, struct rtio * r) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_pool * val; } parm0 = { .val = pool }; + union { uintptr_t x; struct rtio * val; } parm1 = { .val = r }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTIO_POOL_RELEASE); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_pool_release(pool, r); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_pool_release(pool, r) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_POOL_RELEASE, rtio_pool_release, pool, r); rtio_pool_release(pool, r); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_POOL_RELEASE, rtio_pool_release, pool, r); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sdhc.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sdhc.h new file mode 100644 index 0000000..5e0ec48 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sdhc.h @@ -0,0 +1,243 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SDHC_H +#define Z_INCLUDE_SYSCALLS_SDHC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sdhc_hw_reset(const struct device * dev); + +__pinned_func +static inline int sdhc_hw_reset(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_HW_RESET); + } +#endif + compiler_barrier(); + return z_impl_sdhc_hw_reset(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_hw_reset(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_HW_RESET, sdhc_hw_reset, dev); syscall__retval = sdhc_hw_reset(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_HW_RESET, sdhc_hw_reset, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_request(const struct device * dev, struct sdhc_command * cmd, struct sdhc_data * data); + +__pinned_func +static inline int sdhc_request(const struct device * dev, struct sdhc_command * cmd, struct sdhc_data * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_command * val; } parm1 = { .val = cmd }; + union { uintptr_t x; struct sdhc_data * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SDHC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_sdhc_request(dev, cmd, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_request(dev, cmd, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_REQUEST, sdhc_request, dev, cmd, data); syscall__retval = sdhc_request(dev, cmd, data); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_REQUEST, sdhc_request, dev, cmd, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_set_io(const struct device * dev, struct sdhc_io * io); + +__pinned_func +static inline int sdhc_set_io(const struct device * dev, struct sdhc_io * io) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_io * val; } parm1 = { .val = io }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_SET_IO); + } +#endif + compiler_barrier(); + return z_impl_sdhc_set_io(dev, io); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_set_io(dev, io) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_SET_IO, sdhc_set_io, dev, io); syscall__retval = sdhc_set_io(dev, io); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_SET_IO, sdhc_set_io, dev, io, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_card_present(const struct device * dev); + +__pinned_func +static inline int sdhc_card_present(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_CARD_PRESENT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_card_present(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_card_present(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_CARD_PRESENT, sdhc_card_present, dev); syscall__retval = sdhc_card_present(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_CARD_PRESENT, sdhc_card_present, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_execute_tuning(const struct device * dev); + +__pinned_func +static inline int sdhc_execute_tuning(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_EXECUTE_TUNING); + } +#endif + compiler_barrier(); + return z_impl_sdhc_execute_tuning(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_execute_tuning(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_EXECUTE_TUNING, sdhc_execute_tuning, dev); syscall__retval = sdhc_execute_tuning(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_EXECUTE_TUNING, sdhc_execute_tuning, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_card_busy(const struct device * dev); + +__pinned_func +static inline int sdhc_card_busy(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_CARD_BUSY); + } +#endif + compiler_barrier(); + return z_impl_sdhc_card_busy(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_card_busy(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_CARD_BUSY, sdhc_card_busy, dev); syscall__retval = sdhc_card_busy(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_CARD_BUSY, sdhc_card_busy, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_get_host_props(const struct device * dev, struct sdhc_host_props * props); + +__pinned_func +static inline int sdhc_get_host_props(const struct device * dev, struct sdhc_host_props * props) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_host_props * val; } parm1 = { .val = props }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_GET_HOST_PROPS); + } +#endif + compiler_barrier(); + return z_impl_sdhc_get_host_props(dev, props); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_get_host_props(dev, props) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_GET_HOST_PROPS, sdhc_get_host_props, dev, props); syscall__retval = sdhc_get_host_props(dev, props); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_GET_HOST_PROPS, sdhc_get_host_props, dev, props, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_enable_interrupt(const struct device * dev, sdhc_interrupt_cb_t callback, int sources, void * user_data); + +__pinned_func +static inline int sdhc_enable_interrupt(const struct device * dev, sdhc_interrupt_cb_t callback, int sources, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; sdhc_interrupt_cb_t val; } parm1 = { .val = callback }; + union { uintptr_t x; int val; } parm2 = { .val = sources }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SDHC_ENABLE_INTERRUPT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_enable_interrupt(dev, callback, sources, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_enable_interrupt(dev, callback, sources, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_ENABLE_INTERRUPT, sdhc_enable_interrupt, dev, callback, sources, user_data); syscall__retval = sdhc_enable_interrupt(dev, callback, sources, user_data); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_ENABLE_INTERRUPT, sdhc_enable_interrupt, dev, callback, sources, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_disable_interrupt(const struct device * dev, int sources); + +__pinned_func +static inline int sdhc_disable_interrupt(const struct device * dev, int sources) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = sources }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_DISABLE_INTERRUPT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_disable_interrupt(dev, sources); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_disable_interrupt(dev, sources) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_DISABLE_INTERRUPT, sdhc_disable_interrupt, dev, sources); syscall__retval = sdhc_disable_interrupt(dev, sources); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_DISABLE_INTERRUPT, sdhc_disable_interrupt, dev, sources, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sensor.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sensor.h new file mode 100644 index 0000000..582a83a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sensor.h @@ -0,0 +1,202 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SENSOR_H +#define Z_INCLUDE_SYSCALLS_SENSOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sensor_attr_set(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value * val); + +__pinned_func +static inline int sensor_attr_set(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; enum sensor_attribute val; } parm2 = { .val = attr }; + union { uintptr_t x; const struct sensor_value * val; } parm3 = { .val = val }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_ATTR_SET); + } +#endif + compiler_barrier(); + return z_impl_sensor_attr_set(dev, chan, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_attr_set(dev, chan, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_ATTR_SET, sensor_attr_set, dev, chan, attr, val); syscall__retval = sensor_attr_set(dev, chan, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_ATTR_SET, sensor_attr_set, dev, chan, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_attr_get(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value * val); + +__pinned_func +static inline int sensor_attr_get(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; enum sensor_attribute val; } parm2 = { .val = attr }; + union { uintptr_t x; struct sensor_value * val; } parm3 = { .val = val }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_ATTR_GET); + } +#endif + compiler_barrier(); + return z_impl_sensor_attr_get(dev, chan, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_attr_get(dev, chan, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_ATTR_GET, sensor_attr_get, dev, chan, attr, val); syscall__retval = sensor_attr_get(dev, chan, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_ATTR_GET, sensor_attr_get, dev, chan, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_sample_fetch(const struct device * dev); + +__pinned_func +static inline int sensor_sample_fetch(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SENSOR_SAMPLE_FETCH); + } +#endif + compiler_barrier(); + return z_impl_sensor_sample_fetch(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_sample_fetch(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_SAMPLE_FETCH, sensor_sample_fetch, dev); syscall__retval = sensor_sample_fetch(dev); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_SAMPLE_FETCH, sensor_sample_fetch, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_sample_fetch_chan(const struct device * dev, enum sensor_channel type); + +__pinned_func +static inline int sensor_sample_fetch_chan(const struct device * dev, enum sensor_channel type) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = type }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN); + } +#endif + compiler_barrier(); + return z_impl_sensor_sample_fetch_chan(dev, type); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_sample_fetch_chan(dev, type) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN, sensor_sample_fetch_chan, dev, type); syscall__retval = sensor_sample_fetch_chan(dev, type); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN, sensor_sample_fetch_chan, dev, type, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_channel_get(const struct device * dev, enum sensor_channel chan, struct sensor_value * val); + +__pinned_func +static inline int sensor_channel_get(const struct device * dev, enum sensor_channel chan, struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; struct sensor_value * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SENSOR_CHANNEL_GET); + } +#endif + compiler_barrier(); + return z_impl_sensor_channel_get(dev, chan, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_channel_get(dev, chan, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_CHANNEL_GET, sensor_channel_get, dev, chan, val); syscall__retval = sensor_channel_get(dev, chan, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_CHANNEL_GET, sensor_channel_get, dev, chan, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_get_decoder(const struct device * dev, const struct sensor_decoder_api ** decoder); + +__pinned_func +static inline int sensor_get_decoder(const struct device * dev, const struct sensor_decoder_api ** decoder) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct sensor_decoder_api ** val; } parm1 = { .val = decoder }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENSOR_GET_DECODER); + } +#endif + compiler_barrier(); + return z_impl_sensor_get_decoder(dev, decoder); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_get_decoder(dev, decoder) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_GET_DECODER, sensor_get_decoder, dev, decoder); syscall__retval = sensor_get_decoder(dev, decoder); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_GET_DECODER, sensor_get_decoder, dev, decoder, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_reconfigure_read_iodev(const struct rtio_iodev * iodev, const struct device * sensor, const struct sensor_chan_spec * channels, size_t num_channels); + +__pinned_func +static inline int sensor_reconfigure_read_iodev(const struct rtio_iodev * iodev, const struct device * sensor, const struct sensor_chan_spec * channels, size_t num_channels) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct rtio_iodev * val; } parm0 = { .val = iodev }; + union { uintptr_t x; const struct device * val; } parm1 = { .val = sensor }; + union { uintptr_t x; const struct sensor_chan_spec * val; } parm2 = { .val = channels }; + union { uintptr_t x; size_t val; } parm3 = { .val = num_channels }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV); + } +#endif + compiler_barrier(); + return z_impl_sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV, sensor_reconfigure_read_iodev, iodev, sensor, channels, num_channels); syscall__retval = sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV, sensor_reconfigure_read_iodev, iodev, sensor, channels, num_channels, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sent.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sent.h new file mode 100644 index 0000000..81d5487 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sent.h @@ -0,0 +1,101 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SENT_H +#define Z_INCLUDE_SYSCALLS_SENT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sent_start_listening(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int sent_start_listening(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENT_START_LISTENING); + } +#endif + compiler_barrier(); + return z_impl_sent_start_listening(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sent_start_listening(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENT_START_LISTENING, sent_start_listening, dev, channel); syscall__retval = sent_start_listening(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_SENT_START_LISTENING, sent_start_listening, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sent_stop_listening(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int sent_stop_listening(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENT_STOP_LISTENING); + } +#endif + compiler_barrier(); + return z_impl_sent_stop_listening(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sent_stop_listening(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENT_STOP_LISTENING, sent_stop_listening, dev, channel); syscall__retval = sent_stop_listening(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_SENT_STOP_LISTENING, sent_stop_listening, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sent_register_callback(const struct device * dev, uint8_t channel, struct sent_rx_callback_configs callback_configs); + +__pinned_func +static inline int sent_register_callback(const struct device * dev, uint8_t channel, struct sent_rx_callback_configs callback_configs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; struct sent_rx_callback_configs val; } parm2 = { .val = callback_configs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SENT_REGISTER_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_sent_register_callback(dev, channel, callback_configs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sent_register_callback(dev, channel, callback_configs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENT_REGISTER_CALLBACK, sent_register_callback, dev, channel, callback_configs); syscall__retval = sent_register_callback(dev, channel, callback_configs); sys_port_trace_syscall_exit(K_SYSCALL_SENT_REGISTER_CALLBACK, sent_register_callback, dev, channel, callback_configs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h new file mode 100644 index 0000000..7d306e7 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h @@ -0,0 +1,285 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SIP_SVC_DRIVER_H +#define Z_INCLUDE_SYSCALLS_SIP_SVC_DRIVER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sip_supervisory_call(const struct device * dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res * res); + +__pinned_func +static inline void sip_supervisory_call(const struct device * dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned long val; } parm1 = { .val = function_id }; + union { uintptr_t x; unsigned long val; } parm2 = { .val = arg0 }; + union { uintptr_t x; unsigned long val; } parm3 = { .val = arg1 }; + union { uintptr_t x; unsigned long val; } parm4 = { .val = arg2 }; + union { uintptr_t x; unsigned long val; } parm5 = { .val = arg3 }; + union { uintptr_t x; unsigned long val; } parm6 = { .val = arg4 }; + union { uintptr_t x; unsigned long val; } parm7 = { .val = arg5 }; + union { uintptr_t x; unsigned long val; } parm8 = { .val = arg6 }; + union { uintptr_t x; struct arm_smccc_res * val; } parm9 = { .val = res }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.x + }; + (void) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SIP_SUPERVISORY_CALL); + return; + } +#endif + compiler_barrier(); + z_impl_sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SUPERVISORY_CALL, sip_supervisory_call, dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SUPERVISORY_CALL, sip_supervisory_call, dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); } while(false) +#endif +#endif + + +extern bool z_impl_sip_svc_plat_func_id_valid(const struct device * dev, uint32_t command, uint32_t func_id); + +__pinned_func +static inline bool sip_svc_plat_func_id_valid(const struct device * dev, uint32_t command, uint32_t func_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = command }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = func_id }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_func_id_valid(dev, command, func_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_func_id_valid(dev, command, func_id) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID, sip_svc_plat_func_id_valid, dev, command, func_id); syscall__retval = sip_svc_plat_func_id_valid(dev, command, func_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID, sip_svc_plat_func_id_valid, dev, command, func_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_format_trans_id(const struct device * dev, uint32_t client_idx, uint32_t trans_idx); + +__pinned_func +static inline uint32_t sip_svc_plat_format_trans_id(const struct device * dev, uint32_t client_idx, uint32_t trans_idx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = client_idx }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = trans_idx }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_format_trans_id(dev, client_idx, trans_idx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_format_trans_id(dev, client_idx, trans_idx) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID, sip_svc_plat_format_trans_id, dev, client_idx, trans_idx); syscall__retval = sip_svc_plat_format_trans_id(dev, client_idx, trans_idx); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID, sip_svc_plat_format_trans_id, dev, client_idx, trans_idx, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_get_trans_idx(const struct device * dev, uint32_t trans_id); + +__pinned_func +static inline uint32_t sip_svc_plat_get_trans_idx(const struct device * dev, uint32_t trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = trans_id }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_get_trans_idx(dev, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_get_trans_idx(dev, trans_id) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX, sip_svc_plat_get_trans_idx, dev, trans_id); syscall__retval = sip_svc_plat_get_trans_idx(dev, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX, sip_svc_plat_get_trans_idx, dev, trans_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_sip_svc_plat_update_trans_id(const struct device * dev, struct sip_svc_request * request, uint32_t trans_id); + +__pinned_func +static inline void sip_svc_plat_update_trans_id(const struct device * dev, struct sip_svc_request * request, uint32_t trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sip_svc_request * val; } parm1 = { .val = request }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = trans_id }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID); + return; + } +#endif + compiler_barrier(); + z_impl_sip_svc_plat_update_trans_id(dev, request, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_update_trans_id(dev, request, trans_id) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID, sip_svc_plat_update_trans_id, dev, request, trans_id); sip_svc_plat_update_trans_id(dev, request, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID, sip_svc_plat_update_trans_id, dev, request, trans_id); } while(false) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_get_error_code(const struct device * dev, struct arm_smccc_res * res); + +__pinned_func +static inline uint32_t sip_svc_plat_get_error_code(const struct device * dev, struct arm_smccc_res * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct arm_smccc_res * val; } parm1 = { .val = res }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_get_error_code(dev, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_get_error_code(dev, res) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE, sip_svc_plat_get_error_code, dev, res); syscall__retval = sip_svc_plat_get_error_code(dev, res); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE, sip_svc_plat_get_error_code, dev, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sip_svc_plat_async_res_req(const struct device * dev, unsigned long * a0, unsigned long * a1, unsigned long * a2, unsigned long * a3, unsigned long * a4, unsigned long * a5, unsigned long * a6, unsigned long * a7, char * buf, size_t size); + +__pinned_func +static inline int sip_svc_plat_async_res_req(const struct device * dev, unsigned long * a0, unsigned long * a1, unsigned long * a2, unsigned long * a3, unsigned long * a4, unsigned long * a5, unsigned long * a6, unsigned long * a7, char * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned long * val; } parm1 = { .val = a0 }; + union { uintptr_t x; unsigned long * val; } parm2 = { .val = a1 }; + union { uintptr_t x; unsigned long * val; } parm3 = { .val = a2 }; + union { uintptr_t x; unsigned long * val; } parm4 = { .val = a3 }; + union { uintptr_t x; unsigned long * val; } parm5 = { .val = a4 }; + union { uintptr_t x; unsigned long * val; } parm6 = { .val = a5 }; + union { uintptr_t x; unsigned long * val; } parm7 = { .val = a6 }; + union { uintptr_t x; unsigned long * val; } parm8 = { .val = a7 }; + union { uintptr_t x; char * val; } parm9 = { .val = buf }; + union { uintptr_t x; size_t val; } parm10 = { .val = size }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.x, + parm10.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ, sip_svc_plat_async_res_req, dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); syscall__retval = sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ, sip_svc_plat_async_res_req, dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sip_svc_plat_async_res_res(const struct device * dev, struct arm_smccc_res * res, char * buf, size_t * size, uint32_t * trans_id); + +__pinned_func +static inline int sip_svc_plat_async_res_res(const struct device * dev, struct arm_smccc_res * res, char * buf, size_t * size, uint32_t * trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct arm_smccc_res * val; } parm1 = { .val = res }; + union { uintptr_t x; char * val; } parm2 = { .val = buf }; + union { uintptr_t x; size_t * val; } parm3 = { .val = size }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = trans_id }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_async_res_res(dev, res, buf, size, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_async_res_res(dev, res, buf, size, trans_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES, sip_svc_plat_async_res_res, dev, res, buf, size, trans_id); syscall__retval = sip_svc_plat_async_res_res(dev, res, buf, size, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES, sip_svc_plat_async_res_res, dev, res, buf, size, trans_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_sip_svc_plat_free_async_memory(const struct device * dev, struct sip_svc_request * request); + +__pinned_func +static inline void sip_svc_plat_free_async_memory(const struct device * dev, struct sip_svc_request * request) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sip_svc_request * val; } parm1 = { .val = request }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY); + return; + } +#endif + compiler_barrier(); + z_impl_sip_svc_plat_free_async_memory(dev, request); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_free_async_memory(dev, request) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY, sip_svc_plat_free_async_memory, dev, request); sip_svc_plat_free_async_memory(dev, request); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY, sip_svc_plat_free_async_memory, dev, request); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/smbus.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/smbus.h new file mode 100644 index 0000000..ff86135 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/smbus.h @@ -0,0 +1,417 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SMBUS_H +#define Z_INCLUDE_SYSCALLS_SMBUS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_smbus_configure(const struct device * dev, uint32_t dev_config); + +__pinned_func +static inline int smbus_configure(const struct device * dev, uint32_t dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_smbus_configure(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_configure(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_CONFIGURE, smbus_configure, dev, dev_config); syscall__retval = smbus_configure(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_CONFIGURE, smbus_configure, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_get_config(const struct device * dev, uint32_t * dev_config); + +__pinned_func +static inline int smbus_get_config(const struct device * dev, uint32_t * dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_smbus_get_config(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_get_config(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_GET_CONFIG, smbus_get_config, dev, dev_config); syscall__retval = smbus_get_config(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_GET_CONFIG, smbus_get_config, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_smbalert_remove_cb(const struct device * dev, struct smbus_callback * cb); + +__pinned_func +static inline int smbus_smbalert_remove_cb(const struct device * dev, struct smbus_callback * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct smbus_callback * val; } parm1 = { .val = cb }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB); + } +#endif + compiler_barrier(); + return z_impl_smbus_smbalert_remove_cb(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_smbalert_remove_cb(dev, cb) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB, smbus_smbalert_remove_cb, dev, cb); syscall__retval = smbus_smbalert_remove_cb(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB, smbus_smbalert_remove_cb, dev, cb, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_host_notify_remove_cb(const struct device * dev, struct smbus_callback * cb); + +__pinned_func +static inline int smbus_host_notify_remove_cb(const struct device * dev, struct smbus_callback * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct smbus_callback * val; } parm1 = { .val = cb }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB); + } +#endif + compiler_barrier(); + return z_impl_smbus_host_notify_remove_cb(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_host_notify_remove_cb(dev, cb) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB, smbus_host_notify_remove_cb, dev, cb); syscall__retval = smbus_host_notify_remove_cb(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB, smbus_host_notify_remove_cb, dev, cb, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_quick(const struct device * dev, uint16_t addr, enum smbus_direction direction); + +__pinned_func +static inline int smbus_quick(const struct device * dev, uint16_t addr, enum smbus_direction direction) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; enum smbus_direction val; } parm2 = { .val = direction }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_QUICK); + } +#endif + compiler_barrier(); + return z_impl_smbus_quick(dev, addr, direction); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_quick(dev, addr, direction) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_QUICK, smbus_quick, dev, addr, direction); syscall__retval = smbus_quick(dev, addr, direction); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_QUICK, smbus_quick, dev, addr, direction, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_write(const struct device * dev, uint16_t addr, uint8_t byte); + +__pinned_func +static inline int smbus_byte_write(const struct device * dev, uint16_t addr, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = byte }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_BYTE_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_write(dev, addr, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_write(dev, addr, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_WRITE, smbus_byte_write, dev, addr, byte); syscall__retval = smbus_byte_write(dev, addr, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_WRITE, smbus_byte_write, dev, addr, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_read(const struct device * dev, uint16_t addr, uint8_t * byte); + +__pinned_func +static inline int smbus_byte_read(const struct device * dev, uint16_t addr, uint8_t * byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = byte }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_BYTE_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_read(dev, addr, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_read(dev, addr, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_READ, smbus_byte_read, dev, addr, byte); syscall__retval = smbus_byte_read(dev, addr, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_READ, smbus_byte_read, dev, addr, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t byte); + +__pinned_func +static inline int smbus_byte_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = byte }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_BYTE_DATA_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_data_write(dev, addr, cmd, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_data_write(dev, addr, cmd, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_DATA_WRITE, smbus_byte_data_write, dev, addr, cmd, byte); syscall__retval = smbus_byte_data_write(dev, addr, cmd, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_DATA_WRITE, smbus_byte_data_write, dev, addr, cmd, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * byte); + +__pinned_func +static inline int smbus_byte_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = byte }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_BYTE_DATA_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_data_read(dev, addr, cmd, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_data_read(dev, addr, cmd, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_DATA_READ, smbus_byte_data_read, dev, addr, cmd, byte); syscall__retval = smbus_byte_data_read(dev, addr, cmd, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_DATA_READ, smbus_byte_data_read, dev, addr, cmd, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_word_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t word); + +__pinned_func +static inline int smbus_word_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = word }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_WORD_DATA_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_word_data_write(dev, addr, cmd, word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_word_data_write(dev, addr, cmd, word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_WORD_DATA_WRITE, smbus_word_data_write, dev, addr, cmd, word); syscall__retval = smbus_word_data_write(dev, addr, cmd, word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_WORD_DATA_WRITE, smbus_word_data_write, dev, addr, cmd, word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_word_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t * word); + +__pinned_func +static inline int smbus_word_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t * word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t * val; } parm3 = { .val = word }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_WORD_DATA_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_word_data_read(dev, addr, cmd, word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_word_data_read(dev, addr, cmd, word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_WORD_DATA_READ, smbus_word_data_read, dev, addr, cmd, word); syscall__retval = smbus_word_data_read(dev, addr, cmd, word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_WORD_DATA_READ, smbus_word_data_read, dev, addr, cmd, word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t * recv_word); + +__pinned_func +static inline int smbus_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t * recv_word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = send_word }; + union { uintptr_t x; uint16_t * val; } parm4 = { .val = recv_word }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_PCALL); + } +#endif + compiler_barrier(); + return z_impl_smbus_pcall(dev, addr, cmd, send_word, recv_word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_pcall(dev, addr, cmd, send_word, recv_word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_PCALL, smbus_pcall, dev, addr, cmd, send_word, recv_word); syscall__retval = smbus_pcall(dev, addr, cmd, send_word, recv_word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_PCALL, smbus_pcall, dev, addr, cmd, send_word, recv_word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t * buf); + +__pinned_func +static inline int smbus_block_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = buf }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_BLOCK_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_write(dev, addr, cmd, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_write(dev, addr, cmd, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_WRITE, smbus_block_write, dev, addr, cmd, count, buf); syscall__retval = smbus_block_write(dev, addr, cmd, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_WRITE, smbus_block_write, dev, addr, cmd, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * count, uint8_t * buf); + +__pinned_func +static inline int smbus_block_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * count, uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = buf }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_BLOCK_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_read(dev, addr, cmd, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_read(dev, addr, cmd, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_READ, smbus_block_read, dev, addr, cmd, count, buf); syscall__retval = smbus_block_read(dev, addr, cmd, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_READ, smbus_block_read, dev, addr, cmd, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t * snd_buf, uint8_t * rcv_count, uint8_t * rcv_buf); + +__pinned_func +static inline int smbus_block_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t * snd_buf, uint8_t * rcv_count, uint8_t * rcv_buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = snd_count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = snd_buf }; + union { uintptr_t x; uint8_t * val; } parm5 = { .val = rcv_count }; + union { uintptr_t x; uint8_t * val; } parm6 = { .val = rcv_buf }; + uintptr_t more[] = { + parm5.x, + parm6.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SMBUS_BLOCK_PCALL); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_PCALL, smbus_block_pcall, dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); syscall__retval = smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_PCALL, smbus_block_pcall, dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/socket.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/socket.h new file mode 100644 index 0000000..548884c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/socket.h @@ -0,0 +1,586 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SOCKET_H +#define Z_INCLUDE_SYSCALLS_SOCKET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void * z_impl_zsock_get_context_object(int sock); + +__pinned_func +static inline void * zsock_get_context_object(int sock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT); + } +#endif + compiler_barrier(); + return z_impl_zsock_get_context_object(sock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_get_context_object(sock) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT, zsock_get_context_object, sock); syscall__retval = zsock_get_context_object(sock); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT, zsock_get_context_object, sock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_socket(int family, int type, int proto); + +__pinned_func +static inline int zsock_socket(int family, int type, int proto) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = family }; + union { uintptr_t x; int val; } parm1 = { .val = type }; + union { uintptr_t x; int val; } parm2 = { .val = proto }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_SOCKET); + } +#endif + compiler_barrier(); + return z_impl_zsock_socket(family, type, proto); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_socket(family, type, proto) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SOCKET, zsock_socket, family, type, proto); syscall__retval = zsock_socket(family, type, proto); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SOCKET, zsock_socket, family, type, proto, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_socketpair(int family, int type, int proto, int * sv); + +__pinned_func +static inline int zsock_socketpair(int family, int type, int proto, int * sv) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = family }; + union { uintptr_t x; int val; } parm1 = { .val = type }; + union { uintptr_t x; int val; } parm2 = { .val = proto }; + union { uintptr_t x; int * val; } parm3 = { .val = sv }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_ZSOCK_SOCKETPAIR); + } +#endif + compiler_barrier(); + return z_impl_zsock_socketpair(family, type, proto, sv); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_socketpair(family, type, proto, sv) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SOCKETPAIR, zsock_socketpair, family, type, proto, sv); syscall__retval = zsock_socketpair(family, type, proto, sv); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SOCKETPAIR, zsock_socketpair, family, type, proto, sv, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_close(int sock); + +__pinned_func +static inline int zsock_close(int sock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_ZSOCK_CLOSE); + } +#endif + compiler_barrier(); + return z_impl_zsock_close(sock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_close(sock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_CLOSE, zsock_close, sock); syscall__retval = zsock_close(sock); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_CLOSE, zsock_close, sock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_shutdown(int sock, int how); + +__pinned_func +static inline int zsock_shutdown(int sock, int how) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = how }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_SHUTDOWN); + } +#endif + compiler_barrier(); + return z_impl_zsock_shutdown(sock, how); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_shutdown(sock, how) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SHUTDOWN, zsock_shutdown, sock, how); syscall__retval = zsock_shutdown(sock, how); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SHUTDOWN, zsock_shutdown, sock, how, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_bind(int sock, const struct sockaddr * addr, socklen_t addrlen); + +__pinned_func +static inline int zsock_bind(int sock, const struct sockaddr * addr, socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_BIND); + } +#endif + compiler_barrier(); + return z_impl_zsock_bind(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_bind(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_BIND, zsock_bind, sock, addr, addrlen); syscall__retval = zsock_bind(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_BIND, zsock_bind, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_connect(int sock, const struct sockaddr * addr, socklen_t addrlen); + +__pinned_func +static inline int zsock_connect(int sock, const struct sockaddr * addr, socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_CONNECT); + } +#endif + compiler_barrier(); + return z_impl_zsock_connect(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_connect(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_CONNECT, zsock_connect, sock, addr, addrlen); syscall__retval = zsock_connect(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_CONNECT, zsock_connect, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_listen(int sock, int backlog); + +__pinned_func +static inline int zsock_listen(int sock, int backlog) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = backlog }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_LISTEN); + } +#endif + compiler_barrier(); + return z_impl_zsock_listen(sock, backlog); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_listen(sock, backlog) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_LISTEN, zsock_listen, sock, backlog); syscall__retval = zsock_listen(sock, backlog); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_LISTEN, zsock_listen, sock, backlog, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_accept(int sock, struct sockaddr * addr, socklen_t * addrlen); + +__pinned_func +static inline int zsock_accept(int sock, struct sockaddr * addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_ACCEPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_accept(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_accept(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_ACCEPT, zsock_accept, sock, addr, addrlen); syscall__retval = zsock_accept(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_ACCEPT, zsock_accept, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_sendto(int sock, const void * buf, size_t len, int flags, const struct sockaddr * dest_addr, socklen_t addrlen); + +__pinned_func +static inline ssize_t zsock_sendto(int sock, const void * buf, size_t len, int flags, const struct sockaddr * dest_addr, socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int val; } parm3 = { .val = flags }; + union { uintptr_t x; const struct sockaddr * val; } parm4 = { .val = dest_addr }; + union { uintptr_t x; socklen_t val; } parm5 = { .val = addrlen }; + return (ssize_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZSOCK_SENDTO); + } +#endif + compiler_barrier(); + return z_impl_zsock_sendto(sock, buf, len, flags, dest_addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_sendto(sock, buf, len, flags, dest_addr, addrlen) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SENDTO, zsock_sendto, sock, buf, len, flags, dest_addr, addrlen); syscall__retval = zsock_sendto(sock, buf, len, flags, dest_addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SENDTO, zsock_sendto, sock, buf, len, flags, dest_addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_sendmsg(int sock, const struct msghdr * msg, int flags); + +__pinned_func +static inline ssize_t zsock_sendmsg(int sock, const struct msghdr * msg, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct msghdr * val; } parm1 = { .val = msg }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (ssize_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_SENDMSG); + } +#endif + compiler_barrier(); + return z_impl_zsock_sendmsg(sock, msg, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_sendmsg(sock, msg, flags) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SENDMSG, zsock_sendmsg, sock, msg, flags); syscall__retval = zsock_sendmsg(sock, msg, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SENDMSG, zsock_sendmsg, sock, msg, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_recvfrom(int sock, void * buf, size_t max_len, int flags, struct sockaddr * src_addr, socklen_t * addrlen); + +__pinned_func +static inline ssize_t zsock_recvfrom(int sock, void * buf, size_t max_len, int flags, struct sockaddr * src_addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = max_len }; + union { uintptr_t x; int val; } parm3 = { .val = flags }; + union { uintptr_t x; struct sockaddr * val; } parm4 = { .val = src_addr }; + union { uintptr_t x; socklen_t * val; } parm5 = { .val = addrlen }; + return (ssize_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZSOCK_RECVFROM); + } +#endif + compiler_barrier(); + return z_impl_zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_RECVFROM, zsock_recvfrom, sock, buf, max_len, flags, src_addr, addrlen); syscall__retval = zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_RECVFROM, zsock_recvfrom, sock, buf, max_len, flags, src_addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_recvmsg(int sock, struct msghdr * msg, int flags); + +__pinned_func +static inline ssize_t zsock_recvmsg(int sock, struct msghdr * msg, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct msghdr * val; } parm1 = { .val = msg }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (ssize_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_RECVMSG); + } +#endif + compiler_barrier(); + return z_impl_zsock_recvmsg(sock, msg, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_recvmsg(sock, msg, flags) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_RECVMSG, zsock_recvmsg, sock, msg, flags); syscall__retval = zsock_recvmsg(sock, msg, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_RECVMSG, zsock_recvmsg, sock, msg, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_fcntl_impl(int sock, int cmd, int flags); + +__pinned_func +static inline int zsock_fcntl_impl(int sock, int cmd, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = cmd }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_FCNTL_IMPL); + } +#endif + compiler_barrier(); + return z_impl_zsock_fcntl_impl(sock, cmd, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_fcntl_impl(sock, cmd, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_FCNTL_IMPL, zsock_fcntl_impl, sock, cmd, flags); syscall__retval = zsock_fcntl_impl(sock, cmd, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_FCNTL_IMPL, zsock_fcntl_impl, sock, cmd, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_ioctl_impl(int sock, unsigned long request, va_list ap); + +__pinned_func +static inline int zsock_ioctl_impl(int sock, unsigned long request, va_list ap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; unsigned long val; } parm1 = { .val = request }; + union { uintptr_t x; va_list val; } parm2; + va_copy(parm2.val, ap); + int invoke__retval = arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_IOCTL_IMPL); + va_end(parm2.val); + return invoke__retval; + } +#endif + compiler_barrier(); + return z_impl_zsock_ioctl_impl(sock, request, ap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_ioctl_impl(sock, request, ap) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_IOCTL_IMPL, zsock_ioctl_impl, sock, request, ap); syscall__retval = zsock_ioctl_impl(sock, request, ap); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_IOCTL_IMPL, zsock_ioctl_impl, sock, request, ap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getsockopt(int sock, int level, int optname, void * optval, socklen_t * optlen); + +__pinned_func +static inline int zsock_getsockopt(int sock, int level, int optname, void * optval, socklen_t * optlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = level }; + union { uintptr_t x; int val; } parm2 = { .val = optname }; + union { uintptr_t x; void * val; } parm3 = { .val = optval }; + union { uintptr_t x; socklen_t * val; } parm4 = { .val = optlen }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_ZSOCK_GETSOCKOPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_getsockopt(sock, level, optname, optval, optlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getsockopt(sock, level, optname, optval, optlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETSOCKOPT, zsock_getsockopt, sock, level, optname, optval, optlen); syscall__retval = zsock_getsockopt(sock, level, optname, optval, optlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETSOCKOPT, zsock_getsockopt, sock, level, optname, optval, optlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_setsockopt(int sock, int level, int optname, const void * optval, socklen_t optlen); + +__pinned_func +static inline int zsock_setsockopt(int sock, int level, int optname, const void * optval, socklen_t optlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = level }; + union { uintptr_t x; int val; } parm2 = { .val = optname }; + union { uintptr_t x; const void * val; } parm3 = { .val = optval }; + union { uintptr_t x; socklen_t val; } parm4 = { .val = optlen }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_ZSOCK_SETSOCKOPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_setsockopt(sock, level, optname, optval, optlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_setsockopt(sock, level, optname, optval, optlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SETSOCKOPT, zsock_setsockopt, sock, level, optname, optval, optlen); syscall__retval = zsock_setsockopt(sock, level, optname, optval, optlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SETSOCKOPT, zsock_setsockopt, sock, level, optname, optval, optlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getpeername(int sock, struct sockaddr * addr, socklen_t * addrlen); + +__pinned_func +static inline int zsock_getpeername(int sock, struct sockaddr * addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_GETPEERNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_getpeername(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getpeername(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETPEERNAME, zsock_getpeername, sock, addr, addrlen); syscall__retval = zsock_getpeername(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETPEERNAME, zsock_getpeername, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getsockname(int sock, struct sockaddr * addr, socklen_t * addrlen); + +__pinned_func +static inline int zsock_getsockname(int sock, struct sockaddr * addr, socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_GETSOCKNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_getsockname(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getsockname(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETSOCKNAME, zsock_getsockname, sock, addr, addrlen); syscall__retval = zsock_getsockname(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETSOCKNAME, zsock_getsockname, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_gethostname(char * buf, size_t len); + +__pinned_func +static inline int zsock_gethostname(char * buf, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = buf }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_GETHOSTNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_gethostname(buf, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_gethostname(buf, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETHOSTNAME, zsock_gethostname, buf, len); syscall__retval = zsock_gethostname(buf, len); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETHOSTNAME, zsock_gethostname, buf, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_inet_pton(sa_family_t family, const char * src, void * dst); + +__pinned_func +static inline int zsock_inet_pton(sa_family_t family, const char * src, void * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const char * val; } parm1 = { .val = src }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_INET_PTON); + } +#endif + compiler_barrier(); + return z_impl_zsock_inet_pton(family, src, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_inet_pton(family, src, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_INET_PTON, zsock_inet_pton, family, src, dst); syscall__retval = zsock_inet_pton(family, src, dst); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_INET_PTON, zsock_inet_pton, family, src, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_z_zsock_getaddrinfo_internal(const char * host, const char * service, const struct zsock_addrinfo * hints, struct zsock_addrinfo * res); + +__pinned_func +static inline int z_zsock_getaddrinfo_internal(const char * host, const char * service, const struct zsock_addrinfo * hints, struct zsock_addrinfo * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = host }; + union { uintptr_t x; const char * val; } parm1 = { .val = service }; + union { uintptr_t x; const struct zsock_addrinfo * val; } parm2 = { .val = hints }; + union { uintptr_t x; struct zsock_addrinfo * val; } parm3 = { .val = res }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL); + } +#endif + compiler_barrier(); + return z_impl_z_zsock_getaddrinfo_internal(host, service, hints, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_zsock_getaddrinfo_internal(host, service, hints, res) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL, z_zsock_getaddrinfo_internal, host, service, hints, res); syscall__retval = z_zsock_getaddrinfo_internal(host, service, hints, res); sys_port_trace_syscall_exit(K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL, z_zsock_getaddrinfo_internal, host, service, hints, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/socket_service.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/socket_service.h new file mode 100644 index 0000000..6660b91 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/socket_service.h @@ -0,0 +1,54 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SOCKET_SERVICE_H +#define Z_INCLUDE_SYSCALLS_SOCKET_SERVICE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_socket_service_register(const struct net_socket_service_desc * service, struct zsock_pollfd * fds, int len, void * user_data); + +__pinned_func +static inline int net_socket_service_register(const struct net_socket_service_desc * service, struct zsock_pollfd * fds, int len, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct net_socket_service_desc * val; } parm0 = { .val = service }; + union { uintptr_t x; struct zsock_pollfd * val; } parm1 = { .val = fds }; + union { uintptr_t x; int val; } parm2 = { .val = len }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_SOCKET_SERVICE_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_net_socket_service_register(service, fds, len, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_socket_service_register(service, fds, len, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_SOCKET_SERVICE_REGISTER, net_socket_service_register, service, fds, len, user_data); syscall__retval = net_socket_service_register(service, fds, len, user_data); sys_port_trace_syscall_exit(K_SYSCALL_NET_SOCKET_SERVICE_REGISTER, net_socket_service_register, service, fds, len, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/spi.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/spi.h new file mode 100644 index 0000000..0737a35 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/spi.h @@ -0,0 +1,78 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SPI_H +#define Z_INCLUDE_SYSCALLS_SPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_spi_transceive(const struct device * dev, const struct spi_config * config, const struct spi_buf_set * tx_bufs, const struct spi_buf_set * rx_bufs); + +__pinned_func +static inline int spi_transceive(const struct device * dev, const struct spi_config * config, const struct spi_buf_set * tx_bufs, const struct spi_buf_set * rx_bufs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct spi_config * val; } parm1 = { .val = config }; + union { uintptr_t x; const struct spi_buf_set * val; } parm2 = { .val = tx_bufs }; + union { uintptr_t x; const struct spi_buf_set * val; } parm3 = { .val = rx_bufs }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SPI_TRANSCEIVE); + } +#endif + compiler_barrier(); + return z_impl_spi_transceive(dev, config, tx_bufs, rx_bufs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define spi_transceive(dev, config, tx_bufs, rx_bufs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SPI_TRANSCEIVE, spi_transceive, dev, config, tx_bufs, rx_bufs); syscall__retval = spi_transceive(dev, config, tx_bufs, rx_bufs); sys_port_trace_syscall_exit(K_SYSCALL_SPI_TRANSCEIVE, spi_transceive, dev, config, tx_bufs, rx_bufs, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_spi_release(const struct device * dev, const struct spi_config * config); + +__pinned_func +static inline int spi_release(const struct device * dev, const struct spi_config * config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct spi_config * val; } parm1 = { .val = config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SPI_RELEASE); + } +#endif + compiler_barrier(); + return z_impl_spi_release(dev, config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define spi_release(dev, config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SPI_RELEASE, spi_release, dev, config); syscall__retval = spi_release(dev, config); sys_port_trace_syscall_exit(K_SYSCALL_SPI_RELEASE, spi_release, dev, config, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/stepper.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/stepper.h new file mode 100644 index 0000000..bea15b4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/stepper.h @@ -0,0 +1,338 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_STEPPER_H +#define Z_INCLUDE_SYSCALLS_STEPPER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_stepper_enable(const struct device * dev); + +__pinned_func +static inline int stepper_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_STEPPER_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_stepper_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_ENABLE, stepper_enable, dev); syscall__retval = stepper_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_ENABLE, stepper_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_disable(const struct device * dev); + +__pinned_func +static inline int stepper_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_STEPPER_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_stepper_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_DISABLE, stepper_disable, dev); syscall__retval = stepper_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_DISABLE, stepper_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution resolution); + +__pinned_func +static inline int stepper_set_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution resolution) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_micro_step_resolution val; } parm1 = { .val = resolution }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_SET_MICRO_STEP_RES); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_micro_step_res(dev, resolution); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_micro_step_res(dev, resolution) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_MICRO_STEP_RES, stepper_set_micro_step_res, dev, resolution); syscall__retval = stepper_set_micro_step_res(dev, resolution); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_MICRO_STEP_RES, stepper_set_micro_step_res, dev, resolution, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_get_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution * resolution); + +__pinned_func +static inline int stepper_get_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution * resolution) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_micro_step_resolution * val; } parm1 = { .val = resolution }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_GET_MICRO_STEP_RES); + } +#endif + compiler_barrier(); + return z_impl_stepper_get_micro_step_res(dev, resolution); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_get_micro_step_res(dev, resolution) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_GET_MICRO_STEP_RES, stepper_get_micro_step_res, dev, resolution); syscall__retval = stepper_get_micro_step_res(dev, resolution); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_GET_MICRO_STEP_RES, stepper_get_micro_step_res, dev, resolution, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_reference_position(const struct device * dev, int32_t value); + +__pinned_func +static inline int stepper_set_reference_position(const struct device * dev, int32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_SET_REFERENCE_POSITION); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_reference_position(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_reference_position(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_REFERENCE_POSITION, stepper_set_reference_position, dev, value); syscall__retval = stepper_set_reference_position(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_REFERENCE_POSITION, stepper_set_reference_position, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_get_actual_position(const struct device * dev, int32_t * value); + +__pinned_func +static inline int stepper_get_actual_position(const struct device * dev, int32_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_GET_ACTUAL_POSITION); + } +#endif + compiler_barrier(); + return z_impl_stepper_get_actual_position(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_get_actual_position(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_GET_ACTUAL_POSITION, stepper_get_actual_position, dev, value); syscall__retval = stepper_get_actual_position(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_GET_ACTUAL_POSITION, stepper_get_actual_position, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_event_callback(const struct device * dev, stepper_event_callback_t callback, void * user_data); + +__pinned_func +static inline int stepper_set_event_callback(const struct device * dev, stepper_event_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; stepper_event_callback_t val; } parm1 = { .val = callback }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_STEPPER_SET_EVENT_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_event_callback(dev, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_event_callback(dev, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_EVENT_CALLBACK, stepper_set_event_callback, dev, callback, user_data); syscall__retval = stepper_set_event_callback(dev, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_EVENT_CALLBACK, stepper_set_event_callback, dev, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_microstep_interval(const struct device * dev, uint64_t microstep_interval_ns); + +__pinned_func +static inline int stepper_set_microstep_interval(const struct device * dev, uint64_t microstep_interval_ns) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = microstep_interval_ns }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_STEPPER_SET_MICROSTEP_INTERVAL); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_microstep_interval(dev, microstep_interval_ns); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_microstep_interval(dev, microstep_interval_ns) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_MICROSTEP_INTERVAL, stepper_set_microstep_interval, dev, microstep_interval_ns); syscall__retval = stepper_set_microstep_interval(dev, microstep_interval_ns); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_MICROSTEP_INTERVAL, stepper_set_microstep_interval, dev, microstep_interval_ns, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_move_by(const struct device * dev, int32_t micro_steps); + +__pinned_func +static inline int stepper_move_by(const struct device * dev, int32_t micro_steps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = micro_steps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_MOVE_BY); + } +#endif + compiler_barrier(); + return z_impl_stepper_move_by(dev, micro_steps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_move_by(dev, micro_steps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_MOVE_BY, stepper_move_by, dev, micro_steps); syscall__retval = stepper_move_by(dev, micro_steps); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_MOVE_BY, stepper_move_by, dev, micro_steps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_move_to(const struct device * dev, int32_t micro_steps); + +__pinned_func +static inline int stepper_move_to(const struct device * dev, int32_t micro_steps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = micro_steps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_MOVE_TO); + } +#endif + compiler_barrier(); + return z_impl_stepper_move_to(dev, micro_steps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_move_to(dev, micro_steps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_MOVE_TO, stepper_move_to, dev, micro_steps); syscall__retval = stepper_move_to(dev, micro_steps); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_MOVE_TO, stepper_move_to, dev, micro_steps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_run(const struct device * dev, enum stepper_direction direction); + +__pinned_func +static inline int stepper_run(const struct device * dev, enum stepper_direction direction) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_direction val; } parm1 = { .val = direction }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_RUN); + } +#endif + compiler_barrier(); + return z_impl_stepper_run(dev, direction); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_run(dev, direction) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_RUN, stepper_run, dev, direction); syscall__retval = stepper_run(dev, direction); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_RUN, stepper_run, dev, direction, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_stop(const struct device * dev); + +__pinned_func +static inline int stepper_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_STEPPER_STOP); + } +#endif + compiler_barrier(); + return z_impl_stepper_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_STOP, stepper_stop, dev); syscall__retval = stepper_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_STOP, stepper_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_is_moving(const struct device * dev, bool * is_moving); + +__pinned_func +static inline int stepper_is_moving(const struct device * dev, bool * is_moving) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool * val; } parm1 = { .val = is_moving }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_IS_MOVING); + } +#endif + compiler_barrier(); + return z_impl_stepper_is_moving(dev, is_moving); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_is_moving(dev, is_moving) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_IS_MOVING, stepper_is_moving, dev, is_moving); syscall__retval = stepper_is_moving(dev, is_moving); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_IS_MOVING, stepper_is_moving, dev, is_moving, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/syscon.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/syscon.h new file mode 100644 index 0000000..3f0eaba --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/syscon.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SYSCON_H +#define Z_INCLUDE_SYSCALLS_SYSCON_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_syscon_get_base(const struct device * dev, uintptr_t * addr); + +__pinned_func +static inline int syscon_get_base(const struct device * dev, uintptr_t * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = addr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYSCON_GET_BASE); + } +#endif + compiler_barrier(); + return z_impl_syscon_get_base(dev, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_get_base(dev, addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_GET_BASE, syscon_get_base, dev, addr); syscall__retval = syscon_get_base(dev, addr); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_GET_BASE, syscon_get_base, dev, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_read_reg(const struct device * dev, uint16_t reg, uint32_t * val); + +__pinned_func +static inline int syscon_read_reg(const struct device * dev, uint16_t reg, uint32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = reg }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SYSCON_READ_REG); + } +#endif + compiler_barrier(); + return z_impl_syscon_read_reg(dev, reg, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_read_reg(dev, reg, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_READ_REG, syscon_read_reg, dev, reg, val); syscall__retval = syscon_read_reg(dev, reg, val); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_READ_REG, syscon_read_reg, dev, reg, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_write_reg(const struct device * dev, uint16_t reg, uint32_t val); + +__pinned_func +static inline int syscon_write_reg(const struct device * dev, uint16_t reg, uint32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = reg }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SYSCON_WRITE_REG); + } +#endif + compiler_barrier(); + return z_impl_syscon_write_reg(dev, reg, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_write_reg(dev, reg, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_WRITE_REG, syscon_write_reg, dev, reg, val); syscall__retval = syscon_write_reg(dev, reg, val); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_WRITE_REG, syscon_write_reg, dev, reg, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_get_size(const struct device * dev, size_t * size); + +__pinned_func +static inline int syscon_get_size(const struct device * dev, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYSCON_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_syscon_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_GET_SIZE, syscon_get_size, dev, size); syscall__retval = syscon_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_GET_SIZE, syscon_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/tee.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/tee.h new file mode 100644 index 0000000..e579353 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/tee.h @@ -0,0 +1,307 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TEE_H +#define Z_INCLUDE_SYSCALLS_TEE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_tee_get_version(const struct device * dev, struct tee_version_info * info); + +__pinned_func +static inline int tee_get_version(const struct device * dev, struct tee_version_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_version_info * val; } parm1 = { .val = info }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_GET_VERSION); + } +#endif + compiler_barrier(); + return z_impl_tee_get_version(dev, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_get_version(dev, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_GET_VERSION, tee_get_version, dev, info); syscall__retval = tee_get_version(dev, info); sys_port_trace_syscall_exit(K_SYSCALL_TEE_GET_VERSION, tee_get_version, dev, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_open_session(const struct device * dev, struct tee_open_session_arg * arg, unsigned int num_param, struct tee_param * param, uint32_t * session_id); + +__pinned_func +static inline int tee_open_session(const struct device * dev, struct tee_open_session_arg * arg, unsigned int num_param, struct tee_param * param, uint32_t * session_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_open_session_arg * val; } parm1 = { .val = arg }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_param }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = session_id }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_TEE_OPEN_SESSION); + } +#endif + compiler_barrier(); + return z_impl_tee_open_session(dev, arg, num_param, param, session_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_open_session(dev, arg, num_param, param, session_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_OPEN_SESSION, tee_open_session, dev, arg, num_param, param, session_id); syscall__retval = tee_open_session(dev, arg, num_param, param, session_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_OPEN_SESSION, tee_open_session, dev, arg, num_param, param, session_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_close_session(const struct device * dev, uint32_t session_id); + +__pinned_func +static inline int tee_close_session(const struct device * dev, uint32_t session_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = session_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_CLOSE_SESSION); + } +#endif + compiler_barrier(); + return z_impl_tee_close_session(dev, session_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_close_session(dev, session_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_CLOSE_SESSION, tee_close_session, dev, session_id); syscall__retval = tee_close_session(dev, session_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_CLOSE_SESSION, tee_close_session, dev, session_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_cancel(const struct device * dev, uint32_t session_id, uint32_t cancel_id); + +__pinned_func +static inline int tee_cancel(const struct device * dev, uint32_t session_id, uint32_t cancel_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = session_id }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = cancel_id }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_TEE_CANCEL); + } +#endif + compiler_barrier(); + return z_impl_tee_cancel(dev, session_id, cancel_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_cancel(dev, session_id, cancel_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_CANCEL, tee_cancel, dev, session_id, cancel_id); syscall__retval = tee_cancel(dev, session_id, cancel_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_CANCEL, tee_cancel, dev, session_id, cancel_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_invoke_func(const struct device * dev, struct tee_invoke_func_arg * arg, unsigned int num_param, struct tee_param * param); + +__pinned_func +static inline int tee_invoke_func(const struct device * dev, struct tee_invoke_func_arg * arg, unsigned int num_param, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_invoke_func_arg * val; } parm1 = { .val = arg }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_param }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_INVOKE_FUNC); + } +#endif + compiler_barrier(); + return z_impl_tee_invoke_func(dev, arg, num_param, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_invoke_func(dev, arg, num_param, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_INVOKE_FUNC, tee_invoke_func, dev, arg, num_param, param); syscall__retval = tee_invoke_func(dev, arg, num_param, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_INVOKE_FUNC, tee_invoke_func, dev, arg, num_param, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_register(const struct device * dev, void * addr, size_t size, uint32_t flags, struct tee_shm ** shm); + +__pinned_func +static inline int tee_shm_register(const struct device * dev, void * addr, size_t size, uint32_t flags, struct tee_shm ** shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = addr }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = flags }; + union { uintptr_t x; struct tee_shm ** val; } parm4 = { .val = shm }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_TEE_SHM_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_register(dev, addr, size, flags, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_register(dev, addr, size, flags, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_REGISTER, tee_shm_register, dev, addr, size, flags, shm); syscall__retval = tee_shm_register(dev, addr, size, flags, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_REGISTER, tee_shm_register, dev, addr, size, flags, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_unregister(const struct device * dev, struct tee_shm * shm); + +__pinned_func +static inline int tee_shm_unregister(const struct device * dev, struct tee_shm * shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_shm * val; } parm1 = { .val = shm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_SHM_UNREGISTER); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_unregister(dev, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_unregister(dev, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_UNREGISTER, tee_shm_unregister, dev, shm); syscall__retval = tee_shm_unregister(dev, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_UNREGISTER, tee_shm_unregister, dev, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_alloc(const struct device * dev, size_t size, uint32_t flags, struct tee_shm ** shm); + +__pinned_func +static inline int tee_shm_alloc(const struct device * dev, size_t size, uint32_t flags, struct tee_shm ** shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + union { uintptr_t x; struct tee_shm ** val; } parm3 = { .val = shm }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SHM_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_alloc(dev, size, flags, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_alloc(dev, size, flags, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_ALLOC, tee_shm_alloc, dev, size, flags, shm); syscall__retval = tee_shm_alloc(dev, size, flags, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_ALLOC, tee_shm_alloc, dev, size, flags, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_free(const struct device * dev, struct tee_shm * shm); + +__pinned_func +static inline int tee_shm_free(const struct device * dev, struct tee_shm * shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_shm * val; } parm1 = { .val = shm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_SHM_FREE); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_free(dev, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_free(dev, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_FREE, tee_shm_free, dev, shm); syscall__retval = tee_shm_free(dev, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_FREE, tee_shm_free, dev, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_suppl_recv(const struct device * dev, uint32_t * func, unsigned int * num_params, struct tee_param * param); + +__pinned_func +static inline int tee_suppl_recv(const struct device * dev, uint32_t * func, unsigned int * num_params, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = func }; + union { uintptr_t x; unsigned int * val; } parm2 = { .val = num_params }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SUPPL_RECV); + } +#endif + compiler_barrier(); + return z_impl_tee_suppl_recv(dev, func, num_params, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_suppl_recv(dev, func, num_params, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SUPPL_RECV, tee_suppl_recv, dev, func, num_params, param); syscall__retval = tee_suppl_recv(dev, func, num_params, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SUPPL_RECV, tee_suppl_recv, dev, func, num_params, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_suppl_send(const struct device * dev, unsigned int ret, unsigned int num_params, struct tee_param * param); + +__pinned_func +static inline int tee_suppl_send(const struct device * dev, unsigned int ret, unsigned int num_params, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = ret }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_params }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SUPPL_SEND); + } +#endif + compiler_barrier(); + return z_impl_tee_suppl_send(dev, ret, num_params, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_suppl_send(dev, ret, num_params, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SUPPL_SEND, tee_suppl_send, dev, ret, num_params, param); syscall__retval = tee_suppl_send(dev, ret, num_params, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SUPPL_SEND, tee_suppl_send, dev, ret, num_params, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/time_units.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/time_units.h new file mode 100644 index 0000000..4d6fb28 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/time_units.h @@ -0,0 +1,50 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TIME_UNITS_H +#define Z_INCLUDE_SYSCALLS_TIME_UNITS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern unsigned int z_impl_sys_clock_hw_cycles_per_sec_runtime_get(void); + +__pinned_func +static inline unsigned int sys_clock_hw_cycles_per_sec_runtime_get(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (unsigned int) arch_syscall_invoke0(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_hw_cycles_per_sec_runtime_get(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_hw_cycles_per_sec_runtime_get() ({ unsigned int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET, sys_clock_hw_cycles_per_sec_runtime_get); syscall__retval = sys_clock_hw_cycles_per_sec_runtime_get(); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET, sys_clock_hw_cycles_per_sec_runtime_get, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h new file mode 100644 index 0000000..2b97560 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h @@ -0,0 +1,182 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TIMEAWARE_GPIO_H +#define Z_INCLUDE_SYSCALLS_TIMEAWARE_GPIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_tgpio_port_get_time(const struct device * dev, uint64_t * current_time); + +__pinned_func +static inline int tgpio_port_get_time(const struct device * dev, uint64_t * current_time) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = current_time }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PORT_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_tgpio_port_get_time(dev, current_time); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_port_get_time(dev, current_time) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PORT_GET_TIME, tgpio_port_get_time, dev, current_time); syscall__retval = tgpio_port_get_time(dev, current_time); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PORT_GET_TIME, tgpio_port_get_time, dev, current_time, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_port_get_cycles_per_second(const struct device * dev, uint32_t * cycles); + +__pinned_func +static inline int tgpio_port_get_cycles_per_second(const struct device * dev, uint32_t * cycles) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = cycles }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND); + } +#endif + compiler_barrier(); + return z_impl_tgpio_port_get_cycles_per_second(dev, cycles); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_port_get_cycles_per_second(dev, cycles) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND, tgpio_port_get_cycles_per_second, dev, cycles); syscall__retval = tgpio_port_get_cycles_per_second(dev, cycles); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND, tgpio_port_get_cycles_per_second, dev, cycles, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_disable(const struct device * dev, uint32_t pin); + +__pinned_func +static inline int tgpio_pin_disable(const struct device * dev, uint32_t pin) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PIN_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_disable(dev, pin); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_disable(dev, pin) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_DISABLE, tgpio_pin_disable, dev, pin); syscall__retval = tgpio_pin_disable(dev, pin); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_DISABLE, tgpio_pin_disable, dev, pin, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_config_ext_timestamp(const struct device * dev, uint32_t pin, uint32_t event_polarity); + +__pinned_func +static inline int tgpio_pin_config_ext_timestamp(const struct device * dev, uint32_t pin, uint32_t event_polarity) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = event_polarity }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_config_ext_timestamp(dev, pin, event_polarity); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_config_ext_timestamp(dev, pin, event_polarity) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP, tgpio_pin_config_ext_timestamp, dev, pin, event_polarity); syscall__retval = tgpio_pin_config_ext_timestamp(dev, pin, event_polarity); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP, tgpio_pin_config_ext_timestamp, dev, pin, event_polarity, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_periodic_output(const struct device * dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable); + +__pinned_func +static inline int tgpio_pin_periodic_output(const struct device * dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm2 = { .val = start_time }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm3 = { .val = repeat_interval }; + union { uintptr_t x; bool val; } parm4 = { .val = periodic_enable }; + uintptr_t more[] = { + parm3.split.hi, + parm4.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, parm3.split.lo, (uintptr_t) &more, K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT, tgpio_pin_periodic_output, dev, pin, start_time, repeat_interval, periodic_enable); syscall__retval = tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT, tgpio_pin_periodic_output, dev, pin, start_time, repeat_interval, periodic_enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_read_ts_ec(const struct device * dev, uint32_t pin, uint64_t * timestamp, uint64_t * event_count); + +__pinned_func +static inline int tgpio_pin_read_ts_ec(const struct device * dev, uint32_t pin, uint64_t * timestamp, uint64_t * event_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { uintptr_t x; uint64_t * val; } parm2 = { .val = timestamp }; + union { uintptr_t x; uint64_t * val; } parm3 = { .val = event_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TGPIO_PIN_READ_TS_EC); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_READ_TS_EC, tgpio_pin_read_ts_ec, dev, pin, timestamp, event_count); syscall__retval = tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_READ_TS_EC, tgpio_pin_read_ts_ec, dev, pin, timestamp, event_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/uart.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/uart.h new file mode 100644 index 0000000..d7094ca --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/uart.h @@ -0,0 +1,612 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_UART_H +#define Z_INCLUDE_SYSCALLS_UART_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_uart_err_check(const struct device * dev); + +__pinned_func +static inline int uart_err_check(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_ERR_CHECK); + } +#endif + compiler_barrier(); + return z_impl_uart_err_check(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_err_check(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_ERR_CHECK, uart_err_check, dev); syscall__retval = uart_err_check(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_ERR_CHECK, uart_err_check, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_poll_in(const struct device * dev, unsigned char * p_char); + +__pinned_func +static inline int uart_poll_in(const struct device * dev, unsigned char * p_char) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned char * val; } parm1 = { .val = p_char }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_IN); + } +#endif + compiler_barrier(); + return z_impl_uart_poll_in(dev, p_char); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_in(dev, p_char) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_IN, uart_poll_in, dev, p_char); syscall__retval = uart_poll_in(dev, p_char); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_IN, uart_poll_in, dev, p_char, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_poll_in_u16(const struct device * dev, uint16_t * p_u16); + +__pinned_func +static inline int uart_poll_in_u16(const struct device * dev, uint16_t * p_u16) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = p_u16 }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_IN_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_poll_in_u16(dev, p_u16); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_in_u16(dev, p_u16) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_IN_U16, uart_poll_in_u16, dev, p_u16); syscall__retval = uart_poll_in_u16(dev, p_u16); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_IN_U16, uart_poll_in_u16, dev, p_u16, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_uart_poll_out(const struct device * dev, unsigned char out_char); + +__pinned_func +static inline void uart_poll_out(const struct device * dev, unsigned char out_char) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned char val; } parm1 = { .val = out_char }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_OUT); + return; + } +#endif + compiler_barrier(); + z_impl_uart_poll_out(dev, out_char); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_out(dev, out_char) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_OUT, uart_poll_out, dev, out_char); uart_poll_out(dev, out_char); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_OUT, uart_poll_out, dev, out_char); } while(false) +#endif +#endif + + +extern void z_impl_uart_poll_out_u16(const struct device * dev, uint16_t out_u16); + +__pinned_func +static inline void uart_poll_out_u16(const struct device * dev, uint16_t out_u16) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = out_u16 }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_OUT_U16); + return; + } +#endif + compiler_barrier(); + z_impl_uart_poll_out_u16(dev, out_u16); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_out_u16(dev, out_u16) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_OUT_U16, uart_poll_out_u16, dev, out_u16); uart_poll_out_u16(dev, out_u16); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_OUT_U16, uart_poll_out_u16, dev, out_u16); } while(false) +#endif +#endif + + +extern int z_impl_uart_configure(const struct device * dev, const struct uart_config * cfg); + +__pinned_func +static inline int uart_configure(const struct device * dev, const struct uart_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct uart_config * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_uart_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_CONFIGURE, uart_configure, dev, cfg); syscall__retval = uart_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_UART_CONFIGURE, uart_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_config_get(const struct device * dev, struct uart_config * cfg); + +__pinned_func +static inline int uart_config_get(const struct device * dev, struct uart_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct uart_config * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_CONFIG_GET); + } +#endif + compiler_barrier(); + return z_impl_uart_config_get(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_config_get(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_CONFIG_GET, uart_config_get, dev, cfg); syscall__retval = uart_config_get(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_UART_CONFIG_GET, uart_config_get, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_uart_irq_tx_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_tx_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_TX_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_tx_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_tx_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_TX_ENABLE, uart_irq_tx_enable, dev); uart_irq_tx_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_TX_ENABLE, uart_irq_tx_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_tx_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_tx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_TX_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_tx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_tx_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_TX_DISABLE, uart_irq_tx_disable, dev); uart_irq_tx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_TX_DISABLE, uart_irq_tx_disable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_rx_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_rx_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_RX_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_rx_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_rx_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_RX_ENABLE, uart_irq_rx_enable, dev); uart_irq_rx_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_RX_ENABLE, uart_irq_rx_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_rx_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_rx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_RX_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_rx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_rx_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_RX_DISABLE, uart_irq_rx_disable, dev); uart_irq_rx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_RX_DISABLE, uart_irq_rx_disable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_err_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_err_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_ERR_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_err_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_err_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_ERR_ENABLE, uart_irq_err_enable, dev); uart_irq_err_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_ERR_ENABLE, uart_irq_err_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_err_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_err_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_ERR_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_err_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_err_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_ERR_DISABLE, uart_irq_err_disable, dev); uart_irq_err_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_ERR_DISABLE, uart_irq_err_disable, dev); } while(false) +#endif +#endif + + +extern int z_impl_uart_irq_is_pending(const struct device * dev); + +__pinned_func +static inline int uart_irq_is_pending(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_uart_irq_is_pending(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_is_pending(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_IS_PENDING, uart_irq_is_pending, dev); syscall__retval = uart_irq_is_pending(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_IS_PENDING, uart_irq_is_pending, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_irq_update(const struct device * dev); + +__pinned_func +static inline int uart_irq_update(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_uart_irq_update(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_update(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_UPDATE, uart_irq_update, dev); syscall__retval = uart_irq_update(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_UPDATE, uart_irq_update, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx(const struct device * dev, const uint8_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_tx(const struct device * dev, const uint8_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_TX); + } +#endif + compiler_barrier(); + return z_impl_uart_tx(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX, uart_tx, dev, buf, len, timeout); syscall__retval = uart_tx(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX, uart_tx, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx_u16(const struct device * dev, const uint16_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_tx_u16(const struct device * dev, const uint16_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint16_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_TX_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_tx_u16(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx_u16(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX_U16, uart_tx_u16, dev, buf, len, timeout); syscall__retval = uart_tx_u16(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX_U16, uart_tx_u16, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx_abort(const struct device * dev); + +__pinned_func +static inline int uart_tx_abort(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_TX_ABORT); + } +#endif + compiler_barrier(); + return z_impl_uart_tx_abort(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx_abort(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX_ABORT, uart_tx_abort, dev); syscall__retval = uart_tx_abort(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX_ABORT, uart_tx_abort, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_enable(const struct device * dev, uint8_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_rx_enable(const struct device * dev, uint8_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_RX_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_enable(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_enable(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_ENABLE, uart_rx_enable, dev, buf, len, timeout); syscall__retval = uart_rx_enable(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_ENABLE, uart_rx_enable, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_enable_u16(const struct device * dev, uint16_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_rx_enable_u16(const struct device * dev, uint16_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_RX_ENABLE_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_enable_u16(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_enable_u16(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_ENABLE_U16, uart_rx_enable_u16, dev, buf, len, timeout); syscall__retval = uart_rx_enable_u16(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_ENABLE_U16, uart_rx_enable_u16, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_disable(const struct device * dev); + +__pinned_func +static inline int uart_rx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_RX_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_DISABLE, uart_rx_disable, dev); syscall__retval = uart_rx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_DISABLE, uart_rx_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_line_ctrl_set(const struct device * dev, uint32_t ctrl, uint32_t val); + +__pinned_func +static inline int uart_line_ctrl_set(const struct device * dev, uint32_t ctrl, uint32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ctrl }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_LINE_CTRL_SET); + } +#endif + compiler_barrier(); + return z_impl_uart_line_ctrl_set(dev, ctrl, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_line_ctrl_set(dev, ctrl, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_LINE_CTRL_SET, uart_line_ctrl_set, dev, ctrl, val); syscall__retval = uart_line_ctrl_set(dev, ctrl, val); sys_port_trace_syscall_exit(K_SYSCALL_UART_LINE_CTRL_SET, uart_line_ctrl_set, dev, ctrl, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_line_ctrl_get(const struct device * dev, uint32_t ctrl, uint32_t * val); + +__pinned_func +static inline int uart_line_ctrl_get(const struct device * dev, uint32_t ctrl, uint32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ctrl }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_LINE_CTRL_GET); + } +#endif + compiler_barrier(); + return z_impl_uart_line_ctrl_get(dev, ctrl, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_line_ctrl_get(dev, ctrl, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_LINE_CTRL_GET, uart_line_ctrl_get, dev, ctrl, val); syscall__retval = uart_line_ctrl_get(dev, ctrl, val); sys_port_trace_syscall_exit(K_SYSCALL_UART_LINE_CTRL_GET, uart_line_ctrl_get, dev, ctrl, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_drv_cmd(const struct device * dev, uint32_t cmd, uint32_t p); + +__pinned_func +static inline int uart_drv_cmd(const struct device * dev, uint32_t cmd, uint32_t p) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = cmd }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = p }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_DRV_CMD); + } +#endif + compiler_barrier(); + return z_impl_uart_drv_cmd(dev, cmd, p); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_drv_cmd(dev, cmd, p) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_DRV_CMD, uart_drv_cmd, dev, cmd, p); syscall__retval = uart_drv_cmd(dev, cmd, p); sys_port_trace_syscall_exit(K_SYSCALL_UART_DRV_CMD, uart_drv_cmd, dev, cmd, p, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/updatehub.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/updatehub.h new file mode 100644 index 0000000..1307ab4 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/updatehub.h @@ -0,0 +1,161 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_UPDATEHUB_H +#define Z_INCLUDE_SYSCALLS_UPDATEHUB_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_updatehub_autohandler(void); + +__pinned_func +static inline void updatehub_autohandler(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_AUTOHANDLER); + return; + } +#endif + compiler_barrier(); + z_impl_updatehub_autohandler(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_autohandler() do { sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_AUTOHANDLER, updatehub_autohandler); updatehub_autohandler(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_AUTOHANDLER, updatehub_autohandler); } while(false) +#endif +#endif + + +extern enum updatehub_response z_impl_updatehub_probe(void); + +__pinned_func +static inline enum updatehub_response updatehub_probe(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (enum updatehub_response) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_PROBE); + } +#endif + compiler_barrier(); + return z_impl_updatehub_probe(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_probe() ({ enum updatehub_response syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_PROBE, updatehub_probe); syscall__retval = updatehub_probe(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_PROBE, updatehub_probe, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern enum updatehub_response z_impl_updatehub_update(void); + +__pinned_func +static inline enum updatehub_response updatehub_update(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (enum updatehub_response) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_updatehub_update(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_update() ({ enum updatehub_response syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_UPDATE, updatehub_update); syscall__retval = updatehub_update(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_UPDATE, updatehub_update, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_confirm(void); + +__pinned_func +static inline int updatehub_confirm(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_CONFIRM); + } +#endif + compiler_barrier(); + return z_impl_updatehub_confirm(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_confirm() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_CONFIRM, updatehub_confirm); syscall__retval = updatehub_confirm(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_CONFIRM, updatehub_confirm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_reboot(void); + +__pinned_func +static inline int updatehub_reboot(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_REBOOT); + } +#endif + compiler_barrier(); + return z_impl_updatehub_reboot(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_reboot() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_REBOOT, updatehub_reboot); syscall__retval = updatehub_reboot(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_REBOOT, updatehub_reboot, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_report_error(void); + +__pinned_func +static inline int updatehub_report_error(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_REPORT_ERROR); + } +#endif + compiler_barrier(); + return z_impl_updatehub_report_error(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_report_error() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_REPORT_ERROR, updatehub_report_error); syscall__retval = updatehub_report_error(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_REPORT_ERROR, updatehub_report_error, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/usb_bc12.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/usb_bc12.h new file mode 100644 index 0000000..7a6ff29 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/usb_bc12.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_USB_BC12_H +#define Z_INCLUDE_SYSCALLS_USB_BC12_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_bc12_set_role(const struct device * dev, enum bc12_role role); + +__pinned_func +static inline int bc12_set_role(const struct device * dev, enum bc12_role role) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum bc12_role val; } parm1 = { .val = role }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BC12_SET_ROLE); + } +#endif + compiler_barrier(); + return z_impl_bc12_set_role(dev, role); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bc12_set_role(dev, role) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BC12_SET_ROLE, bc12_set_role, dev, role); syscall__retval = bc12_set_role(dev, role); sys_port_trace_syscall_exit(K_SYSCALL_BC12_SET_ROLE, bc12_set_role, dev, role, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bc12_set_result_cb(const struct device * dev, bc12_callback_t cb, void * user_data); + +__pinned_func +static inline int bc12_set_result_cb(const struct device * dev, bc12_callback_t cb, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bc12_callback_t val; } parm1 = { .val = cb }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_BC12_SET_RESULT_CB); + } +#endif + compiler_barrier(); + return z_impl_bc12_set_result_cb(dev, cb, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bc12_set_result_cb(dev, cb, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BC12_SET_RESULT_CB, bc12_set_result_cb, dev, cb, user_data); syscall__retval = bc12_set_result_cb(dev, cb, user_data); sys_port_trace_syscall_exit(K_SYSCALL_BC12_SET_RESULT_CB, bc12_set_result_cb, dev, cb, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/w1.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/w1.h new file mode 100644 index 0000000..4fdd7a9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/w1.h @@ -0,0 +1,294 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_W1_H +#define Z_INCLUDE_SYSCALLS_W1_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_w1_change_bus_lock(const struct device * dev, bool lock); + +__pinned_func +static inline int w1_change_bus_lock(const struct device * dev, bool lock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = lock }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_CHANGE_BUS_LOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_change_bus_lock(dev, lock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_change_bus_lock(dev, lock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_CHANGE_BUS_LOCK, w1_change_bus_lock, dev, lock); syscall__retval = w1_change_bus_lock(dev, lock); sys_port_trace_syscall_exit(K_SYSCALL_W1_CHANGE_BUS_LOCK, w1_change_bus_lock, dev, lock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_reset_bus(const struct device * dev); + +__pinned_func +static inline int w1_reset_bus(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_RESET_BUS); + } +#endif + compiler_barrier(); + return z_impl_w1_reset_bus(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_reset_bus(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_RESET_BUS, w1_reset_bus, dev); syscall__retval = w1_reset_bus(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_RESET_BUS, w1_reset_bus, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_bit(const struct device * dev); + +__pinned_func +static inline int w1_read_bit(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_READ_BIT); + } +#endif + compiler_barrier(); + return z_impl_w1_read_bit(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_bit(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BIT, w1_read_bit, dev); syscall__retval = w1_read_bit(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BIT, w1_read_bit, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_bit(const struct device * dev, const bool bit); + +__pinned_func +static inline int w1_write_bit(const struct device * dev, const bool bit) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = bit }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_WRITE_BIT); + } +#endif + compiler_barrier(); + return z_impl_w1_write_bit(dev, bit); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_bit(dev, bit) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BIT, w1_write_bit, dev, bit); syscall__retval = w1_write_bit(dev, bit); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BIT, w1_write_bit, dev, bit, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_byte(const struct device * dev); + +__pinned_func +static inline int w1_read_byte(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_READ_BYTE); + } +#endif + compiler_barrier(); + return z_impl_w1_read_byte(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_byte(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BYTE, w1_read_byte, dev); syscall__retval = w1_read_byte(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BYTE, w1_read_byte, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_byte(const struct device * dev, uint8_t byte); + +__pinned_func +static inline int w1_write_byte(const struct device * dev, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = byte }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_WRITE_BYTE); + } +#endif + compiler_barrier(); + return z_impl_w1_write_byte(dev, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_byte(dev, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BYTE, w1_write_byte, dev, byte); syscall__retval = w1_write_byte(dev, byte); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BYTE, w1_write_byte, dev, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_block(const struct device * dev, uint8_t * buffer, size_t len); + +__pinned_func +static inline int w1_read_block(const struct device * dev, uint8_t * buffer, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_READ_BLOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_read_block(dev, buffer, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_block(dev, buffer, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BLOCK, w1_read_block, dev, buffer, len); syscall__retval = w1_read_block(dev, buffer, len); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BLOCK, w1_read_block, dev, buffer, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_block(const struct device * dev, const uint8_t * buffer, size_t len); + +__pinned_func +static inline int w1_write_block(const struct device * dev, const uint8_t * buffer, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_WRITE_BLOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_write_block(dev, buffer, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_block(dev, buffer, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BLOCK, w1_write_block, dev, buffer, len); syscall__retval = w1_write_block(dev, buffer, len); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BLOCK, w1_write_block, dev, buffer, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_w1_get_slave_count(const struct device * dev); + +__pinned_func +static inline size_t w1_get_slave_count(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_GET_SLAVE_COUNT); + } +#endif + compiler_barrier(); + return z_impl_w1_get_slave_count(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_get_slave_count(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_GET_SLAVE_COUNT, w1_get_slave_count, dev); syscall__retval = w1_get_slave_count(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_GET_SLAVE_COUNT, w1_get_slave_count, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_configure(const struct device * dev, enum w1_settings_type type, uint32_t value); + +__pinned_func +static inline int w1_configure(const struct device * dev, enum w1_settings_type type, uint32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum w1_settings_type val; } parm1 = { .val = type }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_w1_configure(dev, type, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_configure(dev, type, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_CONFIGURE, w1_configure, dev, type, value); syscall__retval = w1_configure(dev, type, value); sys_port_trace_syscall_exit(K_SYSCALL_W1_CONFIGURE, w1_configure, dev, type, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_search_bus(const struct device * dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void * user_data); + +__pinned_func +static inline int w1_search_bus(const struct device * dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = command }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = family }; + union { uintptr_t x; w1_search_callback_t val; } parm3 = { .val = callback }; + union { uintptr_t x; void * val; } parm4 = { .val = user_data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_W1_SEARCH_BUS); + } +#endif + compiler_barrier(); + return z_impl_w1_search_bus(dev, command, family, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_search_bus(dev, command, family, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_SEARCH_BUS, w1_search_bus, dev, command, family, callback, user_data); syscall__retval = w1_search_bus(dev, command, family, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_W1_SEARCH_BUS, w1_search_bus, dev, command, family, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/watchdog.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/watchdog.h new file mode 100644 index 0000000..7bfc784 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/syscalls/watchdog.h @@ -0,0 +1,99 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_WATCHDOG_H +#define Z_INCLUDE_SYSCALLS_WATCHDOG_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_wdt_setup(const struct device * dev, uint8_t options); + +__pinned_func +static inline int wdt_setup(const struct device * dev, uint8_t options) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = options }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_WDT_SETUP); + } +#endif + compiler_barrier(); + return z_impl_wdt_setup(dev, options); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_setup(dev, options) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_SETUP, wdt_setup, dev, options); syscall__retval = wdt_setup(dev, options); sys_port_trace_syscall_exit(K_SYSCALL_WDT_SETUP, wdt_setup, dev, options, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_wdt_disable(const struct device * dev); + +__pinned_func +static inline int wdt_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_WDT_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_wdt_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_DISABLE, wdt_disable, dev); syscall__retval = wdt_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_WDT_DISABLE, wdt_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_wdt_feed(const struct device * dev, int channel_id); + +__pinned_func +static inline int wdt_feed(const struct device * dev, int channel_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = channel_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_WDT_FEED); + } +#endif + compiler_barrier(); + return z_impl_wdt_feed(dev, channel_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_feed(dev, channel_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_FEED, wdt_feed, dev, channel_id); syscall__retval = wdt_feed(dev, channel_id); sys_port_trace_syscall_exit(K_SYSCALL_WDT_FEED, wdt_feed, dev, channel_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/version.h b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/version.h new file mode 100644 index 0000000..918a9e7 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/version.h @@ -0,0 +1,25 @@ +#ifndef _KERNEL_VERSION_H_ +#define _KERNEL_VERSION_H_ + +/* The template values come from cmake/modules/version.cmake + * BUILD_VERSION related template values will be 'git describe', + * alternatively user defined BUILD_VERSION. + */ + +#define ZEPHYR_VERSION_CODE 262912 +#define ZEPHYR_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) + +#define KERNELVERSION 0x4030000 +#define KERNEL_VERSION_NUMBER 0x40300 +#define KERNEL_VERSION_MAJOR 4 +#define KERNEL_VERSION_MINOR 3 +#define KERNEL_PATCHLEVEL 0 +#define KERNEL_TWEAK 0 +#define KERNEL_VERSION_STRING "4.3.0" +#define KERNEL_VERSION_EXTENDED_STRING "4.3.0+0" +#define KERNEL_VERSION_TWEAK_STRING "4.3.0+0" + +#define BUILD_VERSION v4.3.0 + + +#endif /* _KERNEL_VERSION_H_ */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/isr_tables.c b/firmware/canfd_cdc_composite/build/zephyr/isr_tables.c new file mode 100644 index 0000000..74d401b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/isr_tables.c @@ -0,0 +1,75 @@ + +/* AUTO-GENERATED by gen_isr_tables.py, do not edit! */ + +#include +#include +#include +#include + +typedef void (* ISR)(const void *); +const uintptr_t __irq_vector_table _irq_vector_table[31] = { + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), + ((uintptr_t)&_isr_wrapper), +}; +const struct _isr_table_entry __sw_isr_table _sw_isr_table[31] = { + {(const void *)0x0, (ISR)z_irq_spurious}, /* 0 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 1 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 2 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 3 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 4 */ + {(const void *)0x800bb8e, (ISR)0x800321d}, /* 5 */ + {(const void *)0x800bb8c, (ISR)0x800321d}, /* 6 */ + {(const void *)0x800bb8a, (ISR)0x800321d}, /* 7 */ + {(const void *)0x0, (ISR)0x80034f1}, /* 8 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 9 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 10 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 11 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 12 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 13 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 14 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 15 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 16 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 17 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 18 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 19 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 20 */ + {(const void *)0x800ab70, (ISR)0x8004441}, /* 21 */ + {(const void *)0x800ab70, (ISR)0x80043b5}, /* 22 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 23 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 24 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 25 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 26 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 27 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 28 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 29 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 30 */ +}; diff --git a/firmware/canfd_cdc_composite/build/zephyr/isr_tables_swi.ld b/firmware/canfd_cdc_composite/build/zephyr/isr_tables_swi.ld new file mode 100644 index 0000000..710cecc --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/isr_tables_swi.ld @@ -0,0 +1 @@ +/* Empty */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/isr_tables_vt.ld b/firmware/canfd_cdc_composite/build/zephyr/isr_tables_vt.ld new file mode 100644 index 0000000..710cecc --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/isr_tables_vt.ld @@ -0,0 +1 @@ +/* Empty */ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kconfig/sources.txt b/firmware/canfd_cdc_composite/build/zephyr/kconfig/sources.txt new file mode 100644 index 0000000..cb39e6c --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/kconfig/sources.txt @@ -0,0 +1,4207 @@ +C:\Users\iteedi\zephyr-sdk-0.17.4\cmake\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\DFM\kernelports\Zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\DFM\kernelports\Zephyr\storageports\Filesystem\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\DFM\kernelports\Zephyr\storageports\Flash\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\config\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\kernelports\Zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\kernelports\Zephyr\streamports\Semihost\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\streamports\ARM_ITM\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\streamports\File\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\streamports\Jlink_RTT\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\TraceRecorder\streamports\RingBuffer\Kconfig +C:\Users\iteedi\zephyrproject\modules\debug\percepio\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\hal\espressif\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\hal\intel\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\hal\intel\zephyr\bsp_sedi\Kconfig +C:\Users\iteedi\zephyrproject\modules\hal\intel\zephyr\subsys\logging\backends\Kconfig.i2c +C:\Users\iteedi\zephyrproject\modules\hal\telink\Kconfig +C:\Users\iteedi\zephyrproject\modules\hal\telink\tlsr9\Kconfig +C:\Users\iteedi\zephyrproject\modules\lib\gui\lvgl\Kconfig +C:\Users\iteedi\zephyrproject\modules\lib\gui\lvgl\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\modules\lib\picolibc\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\Kconfig.ews +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\Kconfig.dts +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\Kconfig.modules +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\Kconfig.shield +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\Kconfig.shield.defconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\arch\Kconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\boards\Kconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\boards\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\boards\Kconfig.ews +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\soc\Kconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\soc\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\projects\EWS\firmware\canfd_cdc_composite\build\Kconfig\soc\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\Kconfig.constants +C:\Users\iteedi\zephyrproject\zephyr\Kconfig.zephyr +C:\Users\iteedi\zephyrproject\zephyr\arch\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arc\core\dsp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arc\core\mpu\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm64\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm64\core\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm64\core\cortex_r\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm64\core\xen\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\Kconfig.vfp +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\cortex_a_r\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\cortex_m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\cortex_m\tz\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\mmu\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\arm\core\mpu\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\mips\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\posix\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\posix\Kconfig.natsim_optional +C:\Users\iteedi\zephyrproject\zephyr\arch\riscv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\riscv\Kconfig.isa +C:\Users\iteedi\zephyrproject\zephyr\arch\riscv\custom\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\riscv\custom\andes\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\riscv\custom\thead\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\riscv\custom\thead\Kconfig.core +C:\Users\iteedi\zephyrproject\zephyr\arch\rx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\sparc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\x86\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\arch\x86\core\Kconfig.ia32 +C:\Users\iteedi\zephyrproject\zephyr\arch\x86\core\Kconfig.intel64 +C:\Users\iteedi\zephyrproject\zephyr\arch\xtensa\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\Kconfig.v2 +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\abrobot_esp32c3_oled\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_24lc32\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_2_8_tft_touch_v2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_2_8_tft_touch_v2\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_8chan_solenoid\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ad5693r\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_adalogger_featherwing\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_aht20\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_apds9960\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_aw9523\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_data_logger\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_dps310\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_drv2605l\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ds2484\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_featherwing_128x32_oled\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_featherwing_128x32_oled\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ht16k33\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ina219\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ina228\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ina237\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_lis2mdl\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_lis3dh\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_lis3mdl\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_lps22\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_ltr329\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_mcp9808\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_neopixel_grid_bff\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_neopixel_grid_bff\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_pca9685\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_pcf8523\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_sht4x\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_tsl2591\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_vcnl4040\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_veml7700\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_winc1500\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\adafruit_winc1500\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\amg88xx\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arceli_eth_w5500\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arceli_eth_w5500\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arducam_cu450_ov5640\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_giga_display_shield\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_giga_display_shield\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_modulino_buttons\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_modulino_movement\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_modulino_pixels\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_modulino_thermo\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\arduino_uno_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\atmel_rf2xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\atmel_rf2xx\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\boostxl_ulpsense\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\buydisplay_2_8_tft_touch_arduino\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\buydisplay_2_8_tft_touch_arduino\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\buydisplay_3_5_tft_touch_arduino\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\buydisplay_3_5_tft_touch_arduino\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\canis_canpico\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\dac80508_evm\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\dvp_20pin_ov7670\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\dvp_fpc24_mt9m114\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ek_ra8d1_rtk7eka6m3b00001bu\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\esp_8266\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\esp_8266\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\esp_8266\boards\disco_l475_iot1.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\esp_8266\boards\sam4e_xpro.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\eval_ad4052_ardz\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\eval_adxl362_ardz\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\eval_adxl367_ardz\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\eval_adxl372_ardz\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\frdm_cr20a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\frdm_cr20a\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\frdm_cr20a\boards\frdm_k64f.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\frdm_kw41z\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\frdm_stbc_agm01\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ftdi_vm800c\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\g1120b0mipi\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\g1120b0mipi\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\inventek_eswifi\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\inventek_eswifi\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\inventek_eswifi\boards\frdm_k64f.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\inventek_eswifi\boards\nucleo_f767zi.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\lcd_par_s035\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\lcd_par_s035\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\link_board_eth\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\link_board_eth\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\lmp90100_evb\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\lmp90100_evb\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ls0xx_generic\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ls0xx_generic\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\m5stack_cardputer\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\m5stack_cardputer\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\m5stack_core2_ext\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\max3421e\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\max7219\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mcp2515\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_3d_hall_3_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_accel13_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_adc_click\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_adc_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_air_quality_3_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_ambient_2_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_ble_tiny_click\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_ble_tiny_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_eth3_click\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_eth3_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_eth_click\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_eth_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_h_bridge_4_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_illuminance_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_ir_gesture_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_lsm6dsl_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_lte_iot10_click\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_lte_iot10_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_mcp2518fd_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_pressure_3_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_proximity_9_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_rtc_18_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_stepper_18_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_stepper_19_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_weather_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_wifi_bt_click\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\mikroe_wifi_bt_click\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\npm1100_ek\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\npm1300_ek\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\npm1304_ek\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\npm2100_ek\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\npm6001_ek\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\nrf7002eb\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\nrf7002ek\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\nxp_adtja1101\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\nxp_btb44_ov5640\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\nxp_m2_wifi_bt\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\nxp_m2_wifi_bt\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\olimex_shield_midi\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\openthread_rcp_arduino\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\openthread_rcp_arduino\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\p3t1755dp_ard_i2c\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\p3t1755dp_ard_i3c\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\pmod_acl\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\pmod_sd\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\renesas_us159_da14531evz\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\reyax_lora\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk043fn02h_ct\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk043fn02h_ct\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk043fn66hs_ctg\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk043fn66hs_ctg\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk055hdmipi4m\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk055hdmipi4m\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk055hdmipi4ma0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rk055hdmipi4ma0\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rpi_pico_uno_flexypin\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtk0eg0019b01002bj\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtk0eg0019b01002bj\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtk7eka6m3b00001bu\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtk7eka6m3b00001bu\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtklcdpar1s00001be\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtklcdpar1s00001be\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtklcdpar1s00001be\boards\ek_ra8d2_r7ka8d2kflcac_cm85.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtklcdpar1s00001be\boards\ek_ra8p1_r7ka8p1kflcac_cm85.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtkmipilcdb00000be\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\rtkmipilcdb00000be\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\seeed_w5500\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\seeed_w5500\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\seeed_xiao_expansion_board\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\seeed_xiao_expansion_board\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\seeed_xiao_round_display\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\seeed_xiao_round_display\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\semtech_sx1262mb2das\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\semtech_sx1272mb2das\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\semtech_sx1276mb1mas\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\sparkfun_carrier_asset_tracker\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\sparkfun_environmental_combo\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\sparkfun_rv8803\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\sparkfun_sara_r4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\sparkfun_sara_r4\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\sparkfun_shtc3\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ssd1306\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ssd1306\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st7735r\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st7735r\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st7789v_generic\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st7789v_generic\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_cams_imx_mb1854\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_cams_imx_mb1854\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_cams_omv_mb1683\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_lcd40_dsi1_mb1166\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_lcd40_dsi1_mb1166\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_lcd40_dsi1_mb1166\boards\stm32h747i_disco_stm32h747xx_m7.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_b_lcd40_dsi1_mb1166\boards\stm32h757i_eval_stm32h757xx_m7.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_lcd_dsi_mb1835\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_lcd_dsi_mb1835\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_mb1897_cam\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\st_stm32f4dis_cam\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\swir_hl78xx_ev_kit\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\tcan4550evm\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\ti_bp_bassensorsmkii\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\v2c_daplink\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_dsi_lcd\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_dsi_lcd\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_epaper\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_epaper\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_pico_lcd_1_14\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_pico_lcd_1_14\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_pico_oled_1_3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_pico_oled_1_3\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\waveshare_ups\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\weact_ov2640_cam_module\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\wnc_m14a2a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\wnc_m14a2a\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_53l0a1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_53l0a1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_bnrg2a1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_bnrg2a1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_eeprma2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_eeprma2\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_gfx01m2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_gfx01m2\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_idb05a1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_idb05a1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_iks01a1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_iks01a2\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_iks01a3\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_iks02a1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_iks4a1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_wb05kn1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\x_nucleo_wb05kn1\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\boards\shields\zc143ac72mipi\Kconfig.shield +C:\Users\iteedi\zephyrproject\zephyr\drivers\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ad405x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ad4114 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ad4130 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ad4170 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ad559x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ad7124 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.adc_emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ads1112 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ads1119 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ads131m02 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ads1x1x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ads1x4s0x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ads7052 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.cc32xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ch32v00x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ifx_autanalog_sar +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ifx_hppass_sar +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.lmp90xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ltc2451 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.max11102_17 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.max1125x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.mcp320x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.mcp356xr +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.sam_afec +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.ti_am335x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.tla202x +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.vf610 +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\adc\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.cs43l22 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.da7212 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.dmic_ambiq_pdm +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.dmic_mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.dmic_nxp_micfil +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.dmic_pdm_nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.max98091 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.mpxxdtyy +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.pcm1681 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.tas6422dac +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.tlv320aic3110 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.tlv320dac +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.wm8904 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\Kconfig.wm8962 +C:\Users\iteedi\zephyrproject\zephyr\drivers\audio\mic_privacy\intel\Kconfig.mic_privacy +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.hd44780 +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.itron +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.jhd1313 +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.pt6314 +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.serlcd +C:\Users\iteedi\zephyrproject\zephyr\drivers\auxdisplay\Kconfig.tm1637 +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.bbram_emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.mc146818 +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.microchip +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\bbram\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\hci\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\hci\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\hci\Kconfig.infineon +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\hci\Kconfig.nxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\hci\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\bluetooth\hci\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig.andes +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig.aspeed +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig.nxp_xcache +C:\Users\iteedi\zephyrproject\zephyr\drivers\cache\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.fake +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.kvaser +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.loopback +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.mcan +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.mcp2515 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.mcp251xfd +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.native_linux +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.sja1000 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.tcan4x5x +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\can\transceiver\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.axp2101 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.bq24190 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.bq25180 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.bq25713 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.max20335 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.pca9422 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.pf1550 +C:\Users\iteedi\zephyrproject\zephyr\drivers\charger\Kconfig.sbs_charger +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.agilex5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.arm_scmi +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.aspeed +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.beetle +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.cavs +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.fixed +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.lpc11u6x +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_ccm +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_ccm_rev2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_mcg +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_pcc +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_scg +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_sim +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mcux_syscon +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.npcm +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.nxp_mc_cgm +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.pwm +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.renesas_ra_cgc +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.renesas_rx_cgc +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.renesas_rz_cgc +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.renesas_rz_cpg +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.rv32m1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.sf32lb_hxt48 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.sf32lb_rcc +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.si32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.wch_rcc +C:\Users\iteedi\zephyrproject\zephyr\drivers\clock_control\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.fake_comp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.it51xxx_vcmp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.mcux_acmp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.nrf_comp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.nrf_lpcomp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.nxp_cmp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.shell +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.silabs_acmp +C:\Users\iteedi\zephyrproject\zephyr\drivers\comparator\Kconfig.stm32_comp +C:\Users\iteedi\zephyrproject\zephyr\drivers\console\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\coredump\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.ace +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.andes_atcpit100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.cc23x0_lgpt +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.cc23x0_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.cmos +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.dtmr_cmsdk_apb +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.esp32_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.esp32_tmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.ifx_tcpwm +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.imx_epit +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.ite_it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.ite_it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.max32_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.max32_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.max32_wut +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.maxim_ds3231 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcp7940n +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_ctimer +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_ftm +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_gpt +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_lpc_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_lpit +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_lptmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_qtmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_snvs +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_stm +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mcux_tpm +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.native_sim +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.neorv32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.nxp_mrt +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.nxp_pit +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.rts5912_slwtmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.smartbond_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.stm32_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.stm32_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.tmr_cmsdk_apb +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\counter\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\crc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\crc\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.ataes132a +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.intel +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.mcux_dcp +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.nrf_ecb +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.si32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\crypto\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.ad559x +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.ad569x +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.ad56x1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.ad56xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.dac161s997 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.dacx0501 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.dacx0508 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.dacx3608 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.ltc166x +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.max22017 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.mcp4725 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.mcp4728 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.samd5x +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dac\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\intel\alh\Kconfig.alh +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\intel\dmic\Kconfig.dmic +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\intel\hda\Kconfig.hda +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\intel\ssp\Kconfig.ssp +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\nxp\esai\Kconfig.esai +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\nxp\micfil\Kconfig.micfil +C:\Users\iteedi\zephyrproject\zephyr\drivers\dai\nxp\sai\Kconfig.sai +C:\Users\iteedi\zephyrproject\zephyr\drivers\debug\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\debug\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\debug\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\Kconfig.flash +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\Kconfig.loopback +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\Kconfig.mmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\Kconfig.ram +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\Kconfig.sdmmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\disk\nvme\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.co5300 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.dummy +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.gc9x01x +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.hub12 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.hx8379c +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.hx8394 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ili9806e_dsi +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ili9xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.intel_multibootfb +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ist3931 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.led_strip_matrix +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.lpm013m126 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ls0xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.max7219 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.mcux_dcnano_lcdif +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.mcux_elcdif +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.mcux_lcdifv3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.microbit +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.nrf_led_matrix +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.nt35510 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.otm8009a +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.renesas_lcdc +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.rm67162 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.rm68200 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.sdl +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.sh1122 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd1306 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd1320 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd1322 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd1327 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd1331 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd135x +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd1363 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.ssd16xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st730x +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st75256 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st7567 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st7701 +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st7735r +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st7789v +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.st7796s +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.stm32_ltdc +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.uc81xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\display\Kconfig.waveshare_dsi_lcd +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.andes_atcdmacx00 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.dma_pl330 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.dw_axi_dmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.dw_common +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.intel_adsp_gpdma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.intel_adsp_hda +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.intel_lpss +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.iproc_pax +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.mcux_edma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.mcux_lpc +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.mcux_pxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.mcux_smartdma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.nios2_msgdma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.nxp_edma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.nxp_sdma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.nxp_sof_host_dma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.sam_xdmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.sedi +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.sf32lb +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.si32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.ti_cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.wch +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.xilinx_axi_dma +C:\Users\iteedi\zephyrproject\zephyr\drivers\dma\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\dp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\edac\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.eeprom_emu +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.fm25xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.lpc11u6x +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.mb85rcxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.mb85rsxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.tmp11x +C:\Users\iteedi\zephyrproject\zephyr\drivers\eeprom\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.bt_hci +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.iproc +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.maxq10xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.native_sim +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.neorv32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.nrf5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.nrf_cracen +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.nxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.psa_crypto +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.rv32m1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.sy1xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\entropy\Kconfig.virtio +C:\Users\iteedi\zephyrproject\zephyr\drivers\espi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\espi\Kconfig.espi_emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\espi\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\espi\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\espi\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\espi\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.adin2111 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.cyclonev +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.dwmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.e1000 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.enc28j60 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.enc424j600 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.ivshmem +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.lan865x +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.lan9250 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.native_tap +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.nxp_enet +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.nxp_s32_gmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.nxp_s32_netc +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.sam_gmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.smsc911x +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.smsc91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.stellaris +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.stm32_hal +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.sy1xx_mac +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.virtio_net +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.w5500 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.xilinx_axienet +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.xlnx_gem +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\dsa\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\dwc_xgmac\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\eth_nxp_enet_qos\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\intel\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\intel\Kconfig.intel_igc +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\nxp_imx_netc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\phy\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\phy\Kconfig.dm8806 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\phy\Kconfig.microchip_t1s +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\phy\Kconfig.tja1103 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ethernet\phy\Kconfig.tja11xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\firmware\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\firmware\scmi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\firmware\scmi\nxp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\firmware\tisci\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.adi_max32_spixf +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.andes +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.at25xv021a +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.at45 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.cadence_nand +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.cadence_qspi_nor +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.it51xxx_m1k +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.lpc +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.mspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nor +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nordic_qspi_nor +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.npcx_fiu +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nrf_mram +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nrf_mramc +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nrf_rram +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.numaker_rmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.renesas_ra_ospi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.renesas_ra_qspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.renesas_rz_qspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.rv32m1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.sf32lb_mpi_qspi_nor +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.si32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.simulator +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.stm32_ospi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.stm32_qspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.stm32_xspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\flash\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig.altera_agilex_bridge +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig.eos_s3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig.ice40 +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig.mpfs +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig.slg471x5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\fpga\Kconfig.zynqmp +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\axp2101\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\bq27z746\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\bq40z50\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\composite\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\lc709203f\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\ltc2959\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\max17048\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\sbs_gauge\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\sbs_gauge\Kconfig.emul_sbs_gauge +C:\Users\iteedi\zephyrproject\zephyr\drivers\fuel_gauge\sy24561\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig.emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig.generic +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig.luatos_air530z +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig.quectel_lcx6g +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig.u_blox_f9p +C:\Users\iteedi\zephyrproject\zephyr\drivers\gnss\Kconfig.u_blox_m8 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.ad559x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.adp5585 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.ads1x4s0x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.aesc +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.altera +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.andes_atcgpio100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.aw9523b +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.axp192 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.bcm2711 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.bd8lb600fs +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.brcmstb +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.cc32xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.cmsdk_ahb +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.creg_gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.cy8c95xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.davinci +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.efinix_sapphire +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.emul_sdl +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.eos_s3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.fxl6408 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.grgpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.intel +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.iproc +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.it8801 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.lmp90xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.lpc11u6x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.max14906 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.max14916 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.max14917 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.max22017 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.max2219x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mchp_mss +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mcp23xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mcux_igpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mcux_lpc +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mcux_rgpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mec5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mfxstm32l152 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mmio32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.nct38xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.neorv32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.npm13xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.npm2100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.npm6001 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.numicro +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.nxp_siul2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.pca953x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.pca95xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.pca_series +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.pcal64xxa +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.pcal9722 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.pcf857x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.psoc6 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.renesas_ra_ioport +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.renesas_rza2m +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rp1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rt1718s +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rv32m1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.rzt2m +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sc18im704 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sedi +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sf32lb +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.si32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sn74hc595 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.stellaris +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.stmpe1600 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sx1509b +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.sy1xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.tca6424a +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.tle9104 +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.wch_ch32v00x +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.xlnx_ps +C:\Users\iteedi\zephyrproject\zephyr\drivers\gpio\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\haptics\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\haptics\Kconfig.drv2605 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hdlc_rcp_if\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\hdlc_rcp_if\Kconfig.nxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\hdlc_rcp_if\Kconfig.spi +C:\Users\iteedi\zephyrproject\zephyr\drivers\hdlc_rcp_if\Kconfig.uart +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.andes +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.imxrt +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_mcx_cmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_rcm +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_rstctl +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_sim +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_src +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_src_rev2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mcux_syscon +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.native +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.numaker_rmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.psoc6 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.rw61x +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.sam4l +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.sam_rstc +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.silabs_series2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwinfo\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwspinlock\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\hwspinlock\Kconfig.sqn +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.andes_atciic100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.bcm_iproc +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.cdns +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.i2c_emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.ifx_xmc4 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.lpc11u6x +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.mchp_mss +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.omap +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sam_twihs +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sbcon +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sc18im704 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sedi +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.sy1xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.tca954x +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.wch +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\Kconfig.xilinx_axi +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\target\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2c\target\Kconfig.eeprom +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.mcux_flexcomm +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.sam_ssc +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i2s\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.cdns +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.nxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.renesas +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\i3c\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.cc1200 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.cc2520 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.dw1000 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.kw41z +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.mcr20a +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.mcxw +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.nrf5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.rf2xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.stm32wba +C:\Users\iteedi\zephyrproject\zephyr\drivers\ieee802154\Kconfig.uart_pipe +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.adc_keys +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.analog_axis +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.cap12xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.cf1133 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.chsc5x +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.chsc6x +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.cst816s +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.cy8cmbr3xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.evdev +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.ft5336 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.gpio_kbd_matrix +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.gpio_keys +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.gpio_qdec +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.gt911 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.ili2132a +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.it8801 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.kbd_matrix +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.mcux_kpp +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.modulino +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.nunchuk +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.pat912x +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.paw32xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.pinnacle +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.pmw3610 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.sbus +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.sdl +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.stmpe811 +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.touch +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.tsc_keys +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.vs1838b +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\input\Kconfig.xpt2046 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.cavs +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.clic +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.gd32_exti +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.gic +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.intel_vtd +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.loapic +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.mtk_adsp +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.multilevel +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.multilevel.aggregator_template +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.nxp_irqsteer +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.nxp_pint +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.nxp_siul2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.plic +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.rv32m1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.shared_irq +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.vim +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.wch_exti +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.wch_pfic +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\interrupt_controller\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig.ivshmem +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig.nrfx_ipc_channel +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig.sedi +C:\Users\iteedi\zephyrproject\zephyr\drivers\ipm\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.axp192 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.dac +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.ht16k33 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.is31fl3194 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.is31fl3216a +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.is31fl3733 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.leds-group-multicolor +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.lp3943 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.lp50xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.lp5562 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.lp5569 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.modulino +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.ncp5623 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.npm13xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.pca9533 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.pca9633 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.pwm +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.tlc59108 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig.apa102 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig.lpd880x +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig.modulino +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig.tlc5971 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig.tlc59731 +C:\Users\iteedi\zephyrproject\zephyr\drivers\led_strip\Kconfig.ws2812 +C:\Users\iteedi\zephyrproject\zephyr\drivers\lora\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\lora\Kconfig.rylrxxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\lora\Kconfig.sx12xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\lora\lora_basics_modem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.andes +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.ivshmem +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.mhuv3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nrf_bellboard +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nrf_vevif_event +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nrf_vevif_task +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nxp_imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nxp_mailbox +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.stm32_hsem +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.ti_omap +C:\Users\iteedi\zephyrproject\zephyr\drivers\mbox\Kconfig.ti_secproxy +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.adin2111 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.dwcxgmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.intel_igc +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.lan865x +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.nxp_enet +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.nxp_enet_qos +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.nxp_imx_netc +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.nxp_s32_gmac +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.nxp_s32_netc +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.stm32_hal +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.sy1xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.xilinx_axienet +C:\Users\iteedi\zephyrproject\zephyr\drivers\mdio\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.max32_hpb +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.mspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.siwx91x_qspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\memc\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.ad559x +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.adp5585 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.aw9523b +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.axp192 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.axp2101 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.bd8lb600fs +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.ds3231 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.it8801 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.lpflexcomm +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.max20335 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.max22017 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.max31790 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.maxq10xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.mc146818 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.mchp_sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.nct38xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.npm13xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.npm2100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.npm6001 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.pca9422 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.pf1550 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mfd\Kconfig.tle9104 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.bitbang +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.nxp_dcnano_lcdif +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.nxp_flexio_lcdif +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.nxp_lcdic +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.spi +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dbi\Kconfig.stm32_fmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dsi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dsi\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dsi\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dsi\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\mipi_dsi\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\devmux\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\ethos_u\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\ft8xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\grove_lcd_rgb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\interconn\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\interconn\renesas_elc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\interconn\renesas_elc\Kconfig.renesas_ra_elc +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\mcux_flexio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\nordic_vpr_launcher\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\nxp_flexram\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\nxp_imx93_mediamix\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\nxp_inputmux\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\nxp_rtxxx_dsp_ctrl\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\nxp_s32_emios\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\pio_rpi_pico\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\renesas_ra_external_interrupt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\renesas_rx_dtc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\renesas_rx_external_interrupt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\stm32n6_axisram\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\timeaware_gpio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\misc\timeaware_gpio\Kconfig.timeaware_gpio_intel +C:\Users\iteedi\zephyrproject\zephyr\drivers\mm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig.at_shell +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig.cellular +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig.hl7800 +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig.quectel-bg9x +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig.ublox-sara-r4 +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\Kconfig.wncm14a2a +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\hl78xx\Kconfig.hl78xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\hl78xx\hl78xx_evt_monitor\Kconfig.hl78xx_evt_monitor +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\simcom\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\modem\simcom\sim7080\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mspi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\mspi\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\mspi\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\mspi\Kconfig.mspi_emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\net\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\opamp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\opamp\Kconfig.mcux_opamp +C:\Users\iteedi\zephyrproject\zephyr\drivers\opamp\Kconfig.mcux_opamp_fast +C:\Users\iteedi\zephyrproject\zephyr\drivers\pcie\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pcie\controller\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pcie\controller\Kconfig.brcmstb +C:\Users\iteedi\zephyrproject\zephyr\drivers\pcie\endpoint\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pcie\endpoint\Kconfig.iproc +C:\Users\iteedi\zephyrproject\zephyr\drivers\pcie\host\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\peci\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\peci\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\peci\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\peci\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.arm_mps2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.arm_mps3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.arm_mps4 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.arm_v2m_beetle +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.emsdp +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.eos_s3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.lpc_iocon +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.mci_io_mux +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.mec5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.numicro +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.nxp_port +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.nxp_siul2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.realtek_rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.rv32m1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.sf32lb52x +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.silabs_dbus +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.sy1xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.ti_cc32xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.ti_k3 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.wch_00x_afio +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.wch_20x_30x_afio +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.wch_afio +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\Kconfig.zynqmp +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\renesas\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\renesas\ra\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\renesas\rcar\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\renesas\rx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\renesas\rz\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pinctrl\renesas\smartbond\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pm_cpu_ops\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\power_domain\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\power_domain\Kconfig.nrfs_gdpwr +C:\Users\iteedi\zephyrproject\zephyr\drivers\power_domain\Kconfig.nrfs_swext +C:\Users\iteedi\zephyrproject\zephyr\drivers\power_domain\Kconfig.silabs_siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\ps2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ps2\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\ps2\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\psi5\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\psi5\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\ptp_clock\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\ptp_clock\Kconfig.nxp_enet +C:\Users\iteedi\zephyrproject\zephyr\drivers\ptp_clock\Kconfig.nxp_netc +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.ambiq_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.cc13xx_cc26xx_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.cc23x0_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.fake +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.ifx_tcpwm +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.intel_blinky +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.it8801 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.max31790 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux_ctimer +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux_ftm +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux_pwt +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux_qtmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux_sctimer +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mcux_tpm +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.neorv32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.nrf_sw +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.nxp_flexio +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.nxp_s32_emios +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.pca9685 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.renesas_rx_mtu +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.rv32m1_tpm +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.sam0_tc +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.wch +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.xmc4xxx_ccu4 +C:\Users\iteedi\zephyrproject\zephyr\drivers\pwm\Kconfig.xmc4xxx_ccu8 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.adp5360 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.axp192 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.cp9314 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.da1469x +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.fake +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.fixed +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.max20335 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.mpm54304 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.npm1100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.npm13xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.npm2100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.npm6001 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.nxp_vref +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.nxp_vrefv1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.pca9420 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.pca9422 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.pf1550 +C:\Users\iteedi\zephyrproject\zephyr\drivers\regulator\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.aspeed +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.intel_socfpga +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.lpc_syscon +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.mchp_mss +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.mmio +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.nxp_mrcc +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.nxp_rstctl +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.sf32lb +C:\Users\iteedi\zephyrproject\zephyr\drivers\reset\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\retained_mem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\retained_mem\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\retained_mem\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\retained_mem\Kconfig.zephyr +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.am1805 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.bq32002 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.counter +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.ds1307 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.ds1337 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.ds3231 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.fake +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.mc146818 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.nxp_irtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.pcf2123 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.pcf85063a +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.pcf8523 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.pcf8563 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rv3028 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rv3032 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rv8263 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rv8803 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.rx8130ce +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.ti_mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\rtc\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.intel +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.mcux_sdif +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.sam_hsmci +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.sam_sdmmc +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.sdhc_cdns +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.spi +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\sdhc\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\Kconfig.sensor_clock +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\Kconfig.trigger_template +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\a01nyub\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\ad2s1210\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adltc2990\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adt7310\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adt7420\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adxl345\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adxl362\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adxl367\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\adxl372\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\adi\max32664c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\als31300\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\amd_sb_tsi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\amg88xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\ams_as5600\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\ams_iAQcore\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\ccs811\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\ens210\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\tcs3400\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\tmd2620\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\tsl2540\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\tsl2561\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ams\tsl2591\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\aosong\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\aosong\ags10\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\aosong\dht20\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\aosong\dht\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\apds9253\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\apds9306\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\apds9960\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\asahi_kasei\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\asahi_kasei\ak8975\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\asahi_kasei\akm09918c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bma280\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bma4xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmc150_magn\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bme280\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bme680\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmg160\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmi08x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmi160\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmi270\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmi323\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmm150\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmm350\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmp180\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmp388\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\bosch\bmp581\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\broadcom\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\broadcom\afbr_s50\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\current_amp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ene_tach_kb1200\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ens160\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\espressif\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\espressif\esp32_temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\espressif\pcnt_esp32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\everlight\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\everlight\als_pt19\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\explorir_m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\f75303\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\fcx_mldx5\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\grow_r502a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\hc_sr04\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\honeywell\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\honeywell\hmc5883l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\honeywell\mpr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\honeywell\sm351lt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\hp206c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\infineon\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\infineon\dps310\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\infineon\tle9104\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\infineon\xmc4xxx_temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ist8310\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ite\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ite\ite_tach_it51xxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ite\ite_tach_it8xxx2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ite\ite_vcmp_it8xxx2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\jedec\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\jedec\jc42\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\liteon\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\liteon\ltr329\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\liteon\ltrf216a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\lm35\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\lm75\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\lm77\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\ds18b20\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\ds3231\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max17055\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max17262\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max30101\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max31790\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max31855\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max31865\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max31875\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max44009\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\maxim\max6675\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\mb7040\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\meas\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\meas\ms5607\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\meas\ms5837\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\melexis\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\melexis\mlx90394\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\memsic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\memsic\mc3419\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\memsic\mmc56x3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\mhz19b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\microchip\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\microchip\mchp_tach_xec\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\microchip\mcp9600\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\microchip\mcp970x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\microchip\mtch9010\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\microchip\tcn75a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nct75\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nordic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nordic\npm13xx_charger\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nordic\npm2100_vbat\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nordic\qdec_nrfx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nordic\temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ntc_thermistor\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nuvoton\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nuvoton\nuvoton_adc_cmp_npcx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nuvoton\nuvoton_tach_npcx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\fxas21002\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\fxls8974\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\fxos8700\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\mcux_acmp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\mcux_lpcmp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\nxp_kinetis_temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\nxp_lpadc_temp40\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\nxp_pmc_tmpsns\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\nxp_tempmon\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\nxp_tmpsns\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\p3t1755\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\qdec_mcux\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\qdec_nxp_s32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\nxp\qdec_tpm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\omron\2smpb_02e\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\omron\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\omron\d6f\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pixart\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pixart\paa3905\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pixart\paj7620\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pixart\pat9136\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pms7003\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pni\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pni\rm3100\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\pzem004t\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\qdec_sam\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\realtek\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\realtek\rts5912\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\renesas\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\renesas\hs300x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\renesas\hs400x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\renesas\isl29035\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\rohm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\rohm\bd8lb600fs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\rohm\bh1730\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\rohm\bh1750\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\rohm\bh1790\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\rpi_pico_temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\s11059\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sbs_gauge\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\seeed\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\seeed\grove\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\seeed\hm330x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\scd4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\sgp40\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\sht3xd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\sht4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\shtcx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sensirion\sts4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\silabs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\silabs\si7006\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\silabs\si7055\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\silabs\si7060\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\silabs\si7210\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\hts221\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\i3g4250d\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis2dh\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis2dlpc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis2iclx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis2mdc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis328dq\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis3dhhc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\iis3dwb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\ism330dhcx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2de12\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2dh\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2ds12\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2du12\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2dux12\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2dw12\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis2mdl\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lis3mdl\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lps22hb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lps22hh\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lps25hb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lps2xdf\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm303dlhc_magn\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm6ds0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm6dsl\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm6dso16is\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm6dso\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm6dsv16x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm9ds0_gyro\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm9ds0_mfd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm9ds1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\lsm9ds1_mag\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\qdec_stm32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stm32_digi_temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stm32_temp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stm32_vbat\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stm32_vref\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stmemsc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stts22h\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\stts751\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\vl53l0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\st\vl53l1x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\sx9500\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tach_gpio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icm40627\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icm42605\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icm4268x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icm42x70\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icm45686\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icp101xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\icp201xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\mpu6050\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tdk\mpu9250\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\th02\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\bq274xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\fdc2x1x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ina219\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ina2xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ina3221\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ina7xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\lm95234\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\opt3001\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ti_hdc20xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ti_hdc302x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\ti_hdc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmag5170\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmag5273\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp007\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp1075\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp108\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp112\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp114\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp11x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\ti\tmp435\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\tsic_xx6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\veaa_x_3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\vishay\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\vishay\vcnl36825t\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\vishay\vcnl4040\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\vishay\veml6031\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\vishay\veml6046\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\vishay\veml7700\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\voltage_divider\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_hids_2525020210002\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_isds_2536030320001\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_itds_2533020201601\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_pads_2511020213301\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_pdms_25131308XXX05\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_pdus_25131308XXXXX\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\wsen\wsen_tids_2521020222501\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sensor\xbr818\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sent\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sent\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.aesc +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.altera +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.altera_jtag +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.apbuart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.bcm2711 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.bflb +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.bitbang +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.bridge +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.bt +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.cc32xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.cdns +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.cmsdk_apb +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.efinix_sapphire +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.hostlink +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.intel_lw +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.leuart_gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.lpc11u6x +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mchp +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mcux_flexcomm +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mcux_iuart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mcux_lpsci +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mcux_lpuart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mec5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.miv +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.msp432p4xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.native_pty +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.native_tty +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.neorv32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.nrfx_uart_instance +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.ns16550 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.numicro +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.opentitan +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.pl011 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.psoc6 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.ql_usbserialport_s3b +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.rcar +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.realtek_rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.renesas_ra8 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.renesas_rx_qemu +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.rtt +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.rv32m1_lpuart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.rzt2m +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.sedi +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.sf32lb +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.si32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.silabs_eusart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.silabs_usart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.stellaris +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.sy1xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.uart_sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.usart_sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.virtio_console +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.wch_usart +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.xen +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\serial\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\sip_svc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\sip_svc\Kconfig.sip_smc_agilex +C:\Users\iteedi\zephyrproject\zephyr\drivers\smbus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.andes_atcspi200 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.b91 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.bitbang +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.cdns +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.egis_et171 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.grlib_spimctrl +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mchp_mss +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mchp_mss_qspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mcux_dspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mcux_ecspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mcux_flexcomm +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mcux_flexio +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.mec5 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.oc_simple +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.omap +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.opentitan +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.pl022 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.psoc6 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.pw +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.renesas_ra8 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.rv32m1_lpspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.sc18is606 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.sedi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.silabs_eusart +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.silabs_siwx91x_gspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.silabs_usart +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.spi_emul +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.wch +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.xec_qmspi +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\spi\spi_nxp_lpspi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\Kconfig.fake +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\Kconfig.h_bridge +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\Kconfig.stepper_event_template +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\adi_tmc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\adi_tmc\Kconfig.tmc22xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\adi_tmc\Kconfig.tmc50xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\adi_tmc\Kconfig.tmc_rampgen_template +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\adi_tmc\bus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\adi_tmc\tmc51xx\Kconfig.tmc51xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\allegro\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\allegro\Kconfig.a4979 +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\step_dir\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\ti\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\stepper\ti\Kconfig.drv84xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\syscon\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\syscon\Kconfig.bflb_efuse +C:\Users\iteedi\zephyrproject\zephyr\drivers\tee\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\tee\optee\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.arcv2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.arm_arch +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.cavs +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.cc13xx_cc26xx_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.cortex_m_systick +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.ifx_cat1_lp +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.ite_it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.leon_gptimer +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mchp_sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mchp_xec_rtos +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mcux_gpt +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mcux_lptmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mcux_os +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mips_cp0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.mtk_adsp +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.native_sim +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.npcx_itim +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.nrf_grtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.nrf_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.nrf_xrtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.rcar_cmt +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.realtek_rts5912_rtmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.renesas_ra_ulpt +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.renesas_rza2m +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.riscv_machine +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.rv32m1_lptmr +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.sam0_rtc +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.silabs +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.stm32_lptim +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.stm32wb0_radio_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.sy1xx_sys_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.ti_dm_timer +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.wch_ch32v00x +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.x86 +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.xlnx_psttc +C:\Users\iteedi\zephyrproject\zephyr\drivers\timer\Kconfig.xtensa +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\bc12\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\bc12\Kconfig.pi3usb9201 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\common\nrf_usbd_common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\device\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.dwc2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.it82xx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.kinetis +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.nrf +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.skeleton +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\udc\Kconfig.virtual +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\uhc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\uhc\Kconfig.max3421e +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\uhc\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\uhc\Kconfig.virtual +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb\uvb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\ppc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\ppc\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\ppc\Kconfig.nxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig.tcpc_fusb307 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig.tcpc_numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig.tcpc_ps8xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig.tcpc_rt1715 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig.tcpc_stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\tcpc\Kconfig.tcpc_tcpci +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\vbus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\vbus\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\vbus\Kconfig.usbc_vbus_adc +C:\Users\iteedi\zephyrproject\zephyr\drivers\usb_c\vbus\Kconfig.usbc_vbus_tcpci +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.emul_imager +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.emul_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.esp32_dvp +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.gc2145 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.hm01b0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.imx335 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.mcux_csi +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.mcux_mipi_csi2rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.mcux_sdma +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.mt9m114 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.ov2640 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.ov5640 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.ov7670 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.ov7725 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.ov9655 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.renesas_ra_ceu +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.shell +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.st_mipid02 +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.stm32_dcmi +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.stm32_dcmipp +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.stm32_jpeg +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.stm32_venc +C:\Users\iteedi\zephyrproject\zephyr\drivers\video\Kconfig.sw_generator +C:\Users\iteedi\zephyrproject\zephyr\drivers\virtio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\virtualization\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.ds2477_85 +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.ds2482-800 +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.ds2484 +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.ds2485 +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.test +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.zephyr_gpio +C:\Users\iteedi\zephyrproject\zephyr\drivers\w1\Kconfig.zephyr_serial +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.ambiq +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.andes_atcwdt200 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.cc13xx_cc26xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.cc23x0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.cc32xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.cmsdk_apb +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.dw +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.ene +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.gd32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.gecko +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.ifx_cat1 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.intel_adsp +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.it51xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.it8xxx2 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.litex +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.max32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.mcux_imx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.npcx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.npm13xx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.npm2100 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.npm6001 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.nrfx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.numaker +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.nxp_ewm +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.nxp_fs26 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.opentitan +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.renesas_ra +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.renesas_rx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.renesas_rz +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.rpi_pico +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.sam +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.sam0 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.sam4l +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.sf32lb +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.shell +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.sifive +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.smartbond +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.tco +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.ti_rti +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.ti_tps382x +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.wch +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.xec +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.xilinx_wwdt +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.xlnx +C:\Users\iteedi\zephyrproject\zephyr\drivers\watchdog\Kconfig.xmc4xxx +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\esp32\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\esp_at\Kconfig.esp_at +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\esp_hosted\Kconfig.esp_hosted +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\eswifi\Kconfig.eswifi +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\infineon\Kconfig.airoc +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\nrf_wifi\Kconfig.nrfwifi +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\nxp\Kconfig.nxp +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\simplelink\Kconfig.simplelink +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\siwx91x\Kconfig.siwx91x +C:\Users\iteedi\zephyrproject\zephyr\drivers\wifi\winc1500\Kconfig.winc1500 +C:\Users\iteedi\zephyrproject\zephyr\drivers\xen\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\dts\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig.device +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig.init +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig.mem_domain +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig.obj_core +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig.smp +C:\Users\iteedi\zephyrproject\zephyr\kernel\Kconfig.vm +C:\Users\iteedi\zephyrproject\zephyr\lib\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\acpi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\cpp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\hash\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\hash\Kconfig.hash_func +C:\Users\iteedi\zephyrproject\zephyr\lib\hash\Kconfig.hash_map +C:\Users\iteedi\zephyrproject\zephyr\lib\heap\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\libc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\libc\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\libc\minimal\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\libc\newlib\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\libc\picolibc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\mem_blocks\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\midi2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\min_heap\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\net_buf\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\os\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\os\Kconfig.cbprintf +C:\Users\iteedi\zephyrproject\zephyr\lib\os\cpu_load\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\os\zvfs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\Kconfig.profile +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\Kconfig.toolchain +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\c_lang_support_r\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\c_lib_ext\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\eventfd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.aio +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.barrier +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.device_io +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.fd_mgmt +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.file_system_r +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.fs +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.mem +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.mqueue +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.net +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.proc1 +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.procN +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.pthread +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.rwlock +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.sched +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.semaphore +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.signal +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.spinlock +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.sync_io +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.timer +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.xsi_realtime +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.xsi_single_process +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.xsi_streams +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.xsi_system_logging +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\options\Kconfig.xsi_threads_ext +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\shell\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\shell\Kconfig.env +C:\Users\iteedi\zephyrproject\zephyr\lib\posix\shell\Kconfig.uname +C:\Users\iteedi\zephyrproject\zephyr\lib\runtime\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\smf\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\utils\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\lib\uuid\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.atmel +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.chre +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.cypress +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.eos_s3 +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.esp32 +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.infineon +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.intel +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.libmetal +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.mcuboot +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.microchip +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.mspm0 +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.nuvoton +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.open-amp +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.picolibc +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.renesas +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.rust +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.simplelink +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.sof +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.stm32 +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.syst +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.telink +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.vega +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.wurthelektronik +C:\Users\iteedi\zephyrproject\zephyr\modules\Kconfig.xtensa +C:\Users\iteedi\zephyrproject\zephyr\modules\acpica\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\canopennode\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\cmsis-dsp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\cmsis-nn\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\cmsis\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\cmsis_6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\fatfs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_afbr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_ambiq\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_ambiq\Kconfig.components +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_ambiq\Kconfig.hal +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_bouffalolab\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_ethos_u\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_gigadevice\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_infineon\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\Kconfig.nrf_regtool +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\nrfs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\nrfs\backends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\nrfs\dvfs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\nrfx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nordic\nrfx\Kconfig.logging +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nxp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nxp\imx\Kconfig.imx +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nxp\mcux\Kconfig.mcux +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_nxp\s32\Kconfig.nxp_s32 +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_rpi_pico\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_sifli\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_silabs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_silabs\gecko\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_silabs\simplicity_sdk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_silabs\wiseconnect\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_st\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_tdk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hal_wch\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\hostap\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\liblc3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\libsbc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\littlefs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\lora-basics-modem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\loramac-node\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\lvgl\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\lvgl\Kconfig.input +C:\Users\iteedi\zephyrproject\zephyr\modules\lvgl\Kconfig.memory +C:\Users\iteedi\zephyrproject\zephyr\modules\lvgl\Kconfig.shell +C:\Users\iteedi\zephyrproject\zephyr\modules\lz4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\mbedtls\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\mbedtls\Kconfig.deprecated +C:\Users\iteedi\zephyrproject\zephyr\modules\mbedtls\Kconfig.mbedtls +C:\Users\iteedi\zephyrproject\zephyr\modules\mbedtls\Kconfig.psa.auto +C:\Users\iteedi\zephyrproject\zephyr\modules\mbedtls\Kconfig.psa.logic +C:\Users\iteedi\zephyrproject\zephyr\modules\nanopb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\nrf_wifi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\nrf_wifi\bus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\openthread\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\openthread\Kconfig.features +C:\Users\iteedi\zephyrproject\zephyr\modules\openthread\Kconfig.thread +C:\Users\iteedi\zephyrproject\zephyr\modules\percepio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\segger\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\tflite-micro\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\thrift\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\trusted-firmware-a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\trusted-firmware-m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\trusted-firmware-m\Kconfig.tfm +C:\Users\iteedi\zephyrproject\zephyr\modules\trusted-firmware-m\Kconfig.tfm.crypto_modules +C:\Users\iteedi\zephyrproject\zephyr\modules\trusted-firmware-m\Kconfig.tfm.partitions +C:\Users\iteedi\zephyrproject\zephyr\modules\uoscore-uedhoc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\modules\zcbor\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\Kconfig.v2 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32650 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32655 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32657 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32660 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32662 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32666 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32670 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32672 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32675 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32680 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max32690 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max78000 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.defconfig.max78002 +C:\Users\iteedi\zephyrproject\zephyr\soc\adi\max32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\aesc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aesc\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aesc\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\aesc\nitrogen\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aesc\nitrogen\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aesc\nitrogen\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo2x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo2x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo2x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo3x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo3x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo3x\Kconfig.defconfig.apollo3_blue +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo3x\Kconfig.defconfig.apollo3p_blue +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo3x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo4x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo4x\Kconfig.defconfig.apollo4p +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo4x\Kconfig.defconfig.apollo4p_blue +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo4x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo5x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo5x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo5x\Kconfig.defconfig.apollo510 +C:\Users\iteedi\zephyrproject\zephyr\soc\ambiq\apollo5x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\amd\acp_6_0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\amd\acp_6_0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\amd\acp_6_0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\ae350\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\ae350\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\ae350\Kconfig.defconfig.ae350 +C:\Users\iteedi\zephyrproject\zephyr\soc\andestech\ae350\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\antmicro\myra\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\antmicro\myra\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\beetle\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\beetle\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\beetle\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\designstart\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\designstart\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\fvp_aemv8a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\fvp_aemv8a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\fvp_aemv8a\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\fvp_aemv8r\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\fvp_aemv8r\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\fvp_aemv8r\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.defconfig.an383 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.defconfig.an385 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.defconfig.an386 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.defconfig.an500 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.defconfig.an521 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps3\Kconfig.defconfig.mps3_corstone300 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps3\Kconfig.defconfig.mps3_corstone310 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps4\Kconfig.defconfig.mps4_corstone315 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps4\Kconfig.defconfig.mps4_corstone320 +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\mps4\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\musca\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\musca\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\musca\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\qemu_cortex_a53\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\qemu_cortex_a53\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\qemu_cortex_a53\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\qemu_virt_arm64\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\qemu_virt_arm64\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\arm\qemu_virt_arm64\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\ast10x0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\ast10x0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\ast10x0\Kconfig.defconfig.ast1030 +C:\Users\iteedi\zephyrproject\zephyr\soc\aspeed\ast10x0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\common\Kconfig.samd2x +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\common\Kconfig.samd5x +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\common\Kconfig.saml2x +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samc20\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samc20\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samc20\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samc21\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samc21\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samc21\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd20\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd20\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd20\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd21\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd21\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd21\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd51\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd51\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samd51\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same51\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same51\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same51\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same53\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same53\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same53\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same54\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same54\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\same54\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\saml21\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\saml21\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\saml21\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr21\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr21\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr21\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr34\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr34\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr34\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr35\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr35\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam0\samr35\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam3x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam3x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam3x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4e\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4e\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4e\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4s\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4s\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\sam4s\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\samx7x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\samx7x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\samx7x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\samx7x\Kconfig.soc.same70 +C:\Users\iteedi\zephyrproject\zephyr\soc\atmel\sam\samx7x\Kconfig.soc.samv71 +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl60x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl60x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl60x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl61x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl61x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl61x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl70x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl70x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\bflb\bl70x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcm2711\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcm2711\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcm2711\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcm2712\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcm2712\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcm2712\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\valkyrie\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\valkyrie\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\valkyrie\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\viper\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\viper\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\viper\Kconfig.defconfig.viper_bcm58402_a72 +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\viper\Kconfig.defconfig.viper_bcm58402_m7 +C:\Users\iteedi\zephyrproject\zephyr\soc\brcm\bcmvk\viper\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\dc233c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\dc233c\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\dc233c\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\sample_controller32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\sample_controller32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\sample_controller32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\xtensa_sample_controller\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\cdns\xtensa_sample_controller\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\common\riscv-privileged\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\efinix\sapphire\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\efinix\sapphire\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\efinix\sapphire\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\et171\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\et171\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\et171\Kconfig.defconfig.et171 +C:\Users\iteedi\zephyrproject\zephyr\soc\egis\et171\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb106x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb106x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb106x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb106x\kb106x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb106x\kb106x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb106x\kb106x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb1200\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb1200\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ene\kb1200\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\Kconfig.ulp +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.amp +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.console +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.efuse +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.esptool +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.flash +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\common\Kconfig.spiram +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c2\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c3\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c6\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c6\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32c6\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32h2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32h2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32h2\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32h2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s2\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s3\Kconfig.mac +C:\Users\iteedi\zephyrproject\zephyr\soc\espressif\esp32s3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\gr716a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\gr716a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\gr716a\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\leon3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\leon3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gaisler\leon3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32a50x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32a50x\Kconfig.defconfig.gd32a503 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32a50x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32a50x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e10x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e10x\Kconfig.defconfig.gd32e103 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e10x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e10x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e50x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e50x\Kconfig.defconfig.gd32e507 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e50x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32e50x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f3x0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f3x0\Kconfig.defconfig.gd32f350 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f3x0\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f3x0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f403\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f403\Kconfig.defconfig.gd32f403 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f403\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f403\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig.defconfig.gd32f405 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig.defconfig.gd32f407 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig.defconfig.gd32f450 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig.defconfig.gd32f470 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32f4xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32l23x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32l23x\Kconfig.defconfig.gd32l233 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32l23x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32l23x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32vf103\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32vf103\Kconfig.defconfig.gd32vf103 +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32vf103\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\gd\gd32\gd32vf103\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_01\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_01\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_02\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_02\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_03\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_03\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_04\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_04\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_legacy\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1a\psoc6_legacy\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\cyw20829\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\cyw20829\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\cyw20829\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\psc3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\psc3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1b\psc3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1c\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1c\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1c\xmc7200\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1c\xmc7200\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat1c\xmc7200\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\xmc4xxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\xmc4xxx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\xmc4xxx\Kconfig.defconfig.xmc4500 +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\xmc4xxx\Kconfig.defconfig.xmc4700 +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\cat3\xmc4xxx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\edge\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\edge\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\edge\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\edge\pse84\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\edge\pse84\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\infineon\edge\pse84\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\alder_lake\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\alder_lake\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\alder_lake\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\apollo_lake\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\apollo_lake\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\apollo_lake\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\atom\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\atom\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\atom\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\elkhart_lake\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\elkhart_lake\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\elkhart_lake\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig.defconfig.ace15_mtpm +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig.defconfig.ace20_lnl +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig.defconfig.ace30 +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig.defconfig.ace40 +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\ace\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\cavs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\cavs\Kconfig.defconfig.cavs_v25 +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\cavs\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_adsp\cavs\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_ish\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_ish\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_ish\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_ish\intel_ish5\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_ish\intel_ish5\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_ish\intel_ish5\pm\Kconfig.pm +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_niosv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_niosv\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_niosv\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_niosv\niosv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_niosv\niosv\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_niosv\niosv\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex5\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex5\Kconfig.defconfig.agilex5 +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex5\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex5\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex\Kconfig.defconfig.agilex +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga\agilex\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\cyclonev\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\cyclonev\Kconfig.defconfig.cyclonev +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\cyclonev\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\intel_socfpga_std\cyclonev\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\lakemont\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\lakemont\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\lakemont\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\panther_lake\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\panther_lake\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\panther_lake\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\raptor_lake\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\raptor_lake\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\intel\raptor_lake\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it51xxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it51xxx\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it51xxx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it81202bx +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it81202cx +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it81202dx +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it81302bx +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it81302cx +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it81302dx +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82000bw +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82002aw +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82002bw +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82202ax +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82202bw +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82302ax +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.it82302bw +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\ite\ec\it8xxx2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\litex\litex_vexriscv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\litex\litex_vexriscv\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\litex\litex_vexriscv\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\lowrisc\opentitan\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\lowrisc\opentitan\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\lowrisc\opentitan\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\mt8186\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\mt8188\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\mt8195\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\mediatek\mt8xxx\mt8196\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec15xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec15xx\Kconfig.defconfig.mec1501hsz +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec15xx\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec15xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec172x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec172x\Kconfig.defconfig.mec172xnlj +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec172x\Kconfig.defconfig.mec172xnsz +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec172x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec172x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec174x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec174x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec174x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec175x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec175x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mec175x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mech172x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mech172x\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\mec\mech172x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\miv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\miv\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\miv\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\polarfire\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\polarfire\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\polarfire\Kconfig.defconfig.polarfire_u54 +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\miv\polarfire\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cm_jh\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cm_jh\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cm_jh\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cm_jh\pic32cm_jh00\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cm_jh\pic32cm_jh01\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cx_sg\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cx_sg\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cx_sg\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cx_sg\pic32cx_sg41\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cx_sg\pic32cx_sg60\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cx_sg\pic32cx_sg61\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cz_ca\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cz_ca\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cz_ca\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cz_ca\pic32cz_ca80\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cz_ca\pic32cz_ca90\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\pic32c\pic32cz_ca\pic32cz_ca91\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\atsamd51\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\atsame51\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\atsame53\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sam_d5x_e5x\atsame54\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7\sama7d6\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7\sama7d6\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7g5\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7g5\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\microchip\sam\sama7g5\Kconfig.soc.sama7g54 +C:\Users\iteedi\zephyrproject\zephyr\soc\native\inf_clock\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\native\inf_clock\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\neorv32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\neorv32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\neorv32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\common\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\common\Kconfig.peripherals +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\common\uicr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\common\vpr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\common\vpr\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\ironside\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf51\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf51\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf51\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52805_CAAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52810_QFAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52811_QFAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52820_QDAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52832_CIAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52832_QFAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52832_QFAB +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52833_QDAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52833_QIAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52840_QFAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.defconfig.nrf52840_QIAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf52\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig.defconfig.nrf5340_CPUAPP_QKAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig.defconfig.nrf5340_CPUNET_QKAA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig.sync_rtc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf53\Kconfig.sync_rtc_ipm +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig.defconfig.nrf54h20_cpuapp +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig.defconfig.nrf54h20_cpuflpr +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig.defconfig.nrf54h20_cpuppr +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig.defconfig.nrf54h20_cpurad +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54h\bicr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig.defconfig.nrf54l_05_10_15_cpuapp +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig.defconfig.nrf54l_05_10_15_cpuflpr +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig.defconfig.nrf54lm20a_enga_cpuapp +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig.defconfig.nrf54lm20a_enga_cpuflpr +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf54l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig.defconfig.nrf9131_LACA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig.defconfig.nrf9151_LACA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig.defconfig.nrf9160_SICA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig.defconfig.nrf9161_LACA +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf91\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf92\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf92\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf92\Kconfig.defconfig.nrf9280_cpuapp +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf92\Kconfig.defconfig.nrf9280_cpuppr +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf92\Kconfig.defconfig.nrf9280_cpurad +C:\Users\iteedi\zephyrproject\zephyr\soc\nordic\nrf92\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcm\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcm\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcm\npcm4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcm\npcm4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcm\npcm4\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npck3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npck3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npck3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx4\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx7\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx7\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx7\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx9\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx9\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\npcx\npcx9\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m2l31x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m2l31x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m2l31x\Kconfig.defconfig.m2l31xxx +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m2l31x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m333x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m333x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m333x\Kconfig.defconfig.m333xxx +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m333x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m46x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m46x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m46x\Kconfig.defconfig.m467 +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m46x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m55m1x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m55m1x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m55m1x\Kconfig.defconfig.m55m1xxx +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numaker\m55m1x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\m48x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\m48x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\m48x\Kconfig.defconfig.m487 +C:\Users\iteedi\zephyrproject\zephyr\soc\nuvoton\numicro\m48x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\common\Kconfig.flexspi_xip +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\common\Kconfig.nbu +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\common\Kconfig.rom_loader +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\common\Kconfig.xspi_xip +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx6sx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx6sx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx6sx\Kconfig.defconfig.mcimx6x_m4 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx6sx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx7d\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx7d\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx7d\Kconfig.defconfig.mcimx7d_m4 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx7d\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8ml8_a53 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8ml8_adsp +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8ml8_m7 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8mm6_a53 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8mm6_m4 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8mn6_a53 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.defconfig.mimx8mq6_m4 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8m\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8ulp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8ulp\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8ulp\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx8x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx91\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx91\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx91\Kconfig.defconfig.mimx91 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx91\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx93\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx93\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx93\Kconfig.defconfig.mimx93.a55 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx93\Kconfig.defconfig.mimx93.m33 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx93\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig.defconfig.mimx94398.a55 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig.defconfig.mimx94398.m33 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig.defconfig.mimx94398.m7_0 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig.defconfig.mimx94398.m7_1 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx943\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx95\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx95\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx95\Kconfig.defconfig.mimx95.a55 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx95\Kconfig.defconfig.mimx95.m7 +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imx\imx9\imx95\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt10xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt10xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt10xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt118x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt118x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt118x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt11xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt11xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt11xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt5xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt5xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt5xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt6xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt6xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt6xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\cm33\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\cm33\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\hifi1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\hifi1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\hifi4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\imxrt\imxrt7xx\hifi4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k2x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k2x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k2x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k32lx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k32lx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k32lx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k6x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k6x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k6x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k8x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k8x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\k8x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\ke1xf\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\ke1xf\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\ke1xf\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\ke1xz\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\ke1xz\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\ke1xz\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kl2x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kl2x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kl2x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kv5x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kv5x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kv5x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kwx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kwx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\kinetis\kwx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\layerscape\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\layerscape\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\layerscape\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\layerscape\ls1046a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\layerscape\ls1046a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\layerscape\ls1046a\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc11u6x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc11u6x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc11u6x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc51u68\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc51u68\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc51u68\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc54xxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc54xxx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc54xxx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc55xxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc55xxx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\lpc\lpc55xxx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxa\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxa\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxa\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxc\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxc\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\mcxe24x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\mcxe24x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\mcxe24x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\mcxe31x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\mcxe31x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxe\mcxe31x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxn\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxn\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxn\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\mcxw2xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\mcxw2xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\mcxw2xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\mcxw7xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\mcxw7xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\mcx\mcxw\mcxw7xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\rw\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\rw\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\rw\Kconfig.defconfig.wifi +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\rw\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32k1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32k1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32k1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32k3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32k3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32k3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32ze\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32ze\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\nxp\s32\s32ze\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\oct\osd32mp15x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\oct\osd32mp15x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\cv32a6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\cv32a6\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\cv64a6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\openhwgroup\cva6\cv64a6\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\openisa\rv32m1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\openisa\rv32m1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\openisa\rv32m1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\malta\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\malta\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\malta\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\qemu_virt_riscv32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\qemu_virt_riscv32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\qemu_virt_riscv32e\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\qemu_virt_riscv32e\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\qemu_virt_riscv64\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\qemu\virt_riscv\qemu_virt_riscv64\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\quicklogic\eos_s3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\quicklogic\eos_s3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\quicklogic\eos_s3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2040\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2040\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2040\Kconfig.defconfig.rp2040 +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2040\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2350\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2350\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\raspberrypi\rpi_pico\rp2350\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\rts5912\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\rts5912\Kconfig.defconfig.rts5912 +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\rts5912\Kconfig.defconfig.series +C:\Users\iteedi\zephyrproject\zephyr\soc\realtek\ec\rts5912\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra2a1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra2a1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra2a1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra2l1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra2l1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra2l1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4c1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4c1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4c1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4e1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4e1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4e1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4e2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4e2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4e2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4l1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4l1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4l1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4m3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4w1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4w1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra4w1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6e1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6e1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6e1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6e2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6e2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6e2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m4\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m5\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m5\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra6m5\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8d1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8d1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8d1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8d2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8d2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8d2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8m1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8m1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8m1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8m2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8m2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8m2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8p1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8p1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8p1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8t1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8t1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8t1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8t2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8t2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\ra\ra8t2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen4\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen4\Kconfig.defconfig.r8a779f0 +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rcar\rcar_gen4\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx130\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx130\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx130\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx261\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx261\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx261\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx26t\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx26t\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx26t\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx62n\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx62n\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rx\rx62n\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rza2m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rza2m\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rza2m\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rza3ul\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rza3ul\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rza3ul\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg2l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg2l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg2l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg2ul\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg2ul\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg2ul\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg3s\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg3s\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzg3s\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzn2l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzn2l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzn2l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzt2l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzt2l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzt2l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzt2m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzt2m\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzt2m\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2h\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2h\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2h\Kconfig.defconfig.rzv2h_cm33 +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2h\Kconfig.defconfig.rzv2h_cr8 +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2h\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2n\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2n\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\rz\rzv2n\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\smartbond\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\smartbond\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\smartbond\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\smartbond\da1469x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\smartbond\da1469x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renesas\smartbond\da1469x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renode\cortex_r8_virtual\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renode\cortex_r8_virtual\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renode\cortex_r8_virtual\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\renode\riscv_virtual\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renode\riscv_virtual\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\renode\riscv_virtual\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk3399\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk3399\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk3399\Kconfig.defconfig.rk3399 +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk3399\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3568\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3568\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3568\Kconfig.defconfig.rk3568 +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3568\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588\Kconfig.defconfig.rk3588 +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588s\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588s\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588s\Kconfig.defconfig.rk3588s +C:\Users\iteedi\zephyrproject\zephyr\soc\rockchip\rk35\rk3588s\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\ganymed\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\ganymed\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\ganymed\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\ganymed\sy1xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\ganymed\sy1xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sensry\ganymed\sy1xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fe300\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fe300\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fe300\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fu500\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fu500\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fu500\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fu700\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fu700\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifive\sifive_freedom\fu700\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sifli\sf32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifli\sf32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifli\sf32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\sifli\sf32\sf32lb52x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifli\sf32\sf32lb52x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\sifli\sf32\sf32lb52x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\efm32hg\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\efm32hg\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\efm32hg\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\efm32wg\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\efm32wg\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s0\efm32wg\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32gg11b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32gg11b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32gg11b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32gg12b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32gg12b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32gg12b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32jg12b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32jg12b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32jg12b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32pg12b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32pg12b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32pg12b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32pg1b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32pg1b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efm32pg1b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32bg13p\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32bg13p\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32bg13p\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32fg13p\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32fg13p\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32fg13p\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32fg1p\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32fg1p\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32fg1p\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32mg12p\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32mg12p\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s1\efr32mg12p\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg21\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg21\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg21\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg22\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg22\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg22\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg23\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg23\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg23\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg24\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg24\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg24\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg26\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg26\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg26\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg27\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg27\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg27\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg28\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg28\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg28\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg29\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg29\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_s2\xg29\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_sim3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_sim3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_sim3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_sim3\sim3u\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_sim3\sim3u\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_sim3\sim3u\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_siwx91x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_siwx91x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_siwx91x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_siwx91x\siwg917\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_siwx91x\siwg917\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\silabs\silabs_siwx91x\siwg917\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\arc_iot\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\arc_iot\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\arc_iot\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em11d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em4 +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em5d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em6 +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em7d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em7d_esp +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.defconfig.em9d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsdp\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsk\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsk\Kconfig.defconfig.em11d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsk\Kconfig.defconfig.em7d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsk\Kconfig.defconfig.em9d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\emsk\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\hsdk4xd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\hsdk4xd\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\hsdk4xd\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\hsdk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\hsdk\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\hsdk\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\em\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\em\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\em\Kconfig.defconfig.em +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\em\Kconfig.defconfig.em11d +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\em\Kconfig.defconfig.em7d_v22 +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\em\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs5x +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs5x_smp +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs6x +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs6x_smp +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs_mpuv6 +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.defconfig.hs_smp +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\hs\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\sem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\sem\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\sem\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\vpx5\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\vpx5\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_classic\vpx5\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\rhx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\rhx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\rhx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\rmx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\rmx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\nsim\arc_v\rmx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\qemu_arc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\qemu_arc\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\snps\qemu_arc\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig.stm32c011xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig.stm32c031xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig.stm32c051xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig.stm32c071xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig.stm32c091xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.defconfig.stm32c092xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32c0x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f030x4 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f030x6 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f030x8 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f030xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f031x6 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f042x6 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f051x8 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f070xb +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f072xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f091xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.defconfig.stm32f098xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f0x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig.defconfig.stm32f100xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig.defconfig.stm32f103xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig.defconfig.stm32f105xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig.defconfig.stm32f107xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f1x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f2x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f2x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f2x\Kconfig.defconfig.stm32f205xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f2x\Kconfig.defconfig.stm32f207xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f2x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f302x8 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f302xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f303x(b-c) +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f303x8 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f303xe +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f334x8 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.defconfig.stm32f373xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f3x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f401xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f401xd +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f401xe +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f405xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f407xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f410xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f411xe +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f412rx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f412xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f413xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f415xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f417xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f423xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f427xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f429xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f437xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f439xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f446xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f469xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.defconfig.stm32f479xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f4x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f722xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f723xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f745xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f746xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f750xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f756xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f765xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f767xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.defconfig.stm32f769xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32f7x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g030xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g031xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g041xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g050xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g051xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g061xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g070xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g071xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g081xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g0b0xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g0b1xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.defconfig.stm32g0c1xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g0x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g431xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g441xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g473xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g474xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g483xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g484xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g491xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.defconfig.stm32g4a1xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32g4x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig.stm32h503xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig.stm32h523xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig.stm32h533xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig.stm32h562xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig.stm32h563xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.defconfig.stm32h573xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h5x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig.defconfig.stm32h7r3xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig.defconfig.stm32h7r7xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig.defconfig.stm32h7s3xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig.defconfig.stm32h7s7xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7rsx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h723xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h725xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h730xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h735xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h742xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h743xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h745xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h747xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h750xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h753xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h755xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h757xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h7a3xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h7b0xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.defconfig.stm32h7b3xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32h7x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l010x4 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l010x6 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l010x8 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l010xb +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l011xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l031xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l051xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l053xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l071xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l072xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l073xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l081xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.defconfig.stm32l083xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l0x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig.stm32l100xb +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig.stm32l151xb +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig.stm32l151xba +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig.stm32l151xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig.stm32l152xc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.defconfig.stm32l152xe +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l1x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l412xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l422xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l431xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l432xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l433xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l451xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l452xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l462xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l471xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l475xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l476xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l486xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l496xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l4a6xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l4p5xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l4q5xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l4r5xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l4r9xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.defconfig.stm32l4s5xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l4x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l5x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l5x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l5x\Kconfig.defconfig.stm32l552xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l5x\Kconfig.defconfig.stm32l562xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32l5x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp13x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp13x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp13x\Kconfig.defconfig.stm32mp13_a7 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp13x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp1x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp1x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp1x\Kconfig.defconfig.stm32mp15_m4 +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp1x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp2x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp2x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp2x\Kconfig.defconfig.stm32mp257fxx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32mp2x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32n6x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32n6x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32n6x\Kconfig.defconfig.stm32n657xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32n6x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u0x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u0x\Kconfig.defconfig.stm32u031xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u0x\Kconfig.defconfig.stm32u073xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u0x\Kconfig.defconfig.stm32u083xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u0x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u3x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u3x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u3x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u535xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u545xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u575xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u585xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u595xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u599xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u5a5xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u5a9xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u5f9xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.defconfig.stm32u5g9xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32u5x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wb0x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wb0x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wb0x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbax\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbax\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbax\Kconfig.defconfig.stm32wba52xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbax\Kconfig.defconfig.stm32wba55xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbax\Kconfig.defconfig.stm32wba65xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbax\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbx\Kconfig.defconfig.stm32wb55xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wbx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig.defconfig.stm32wl54xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig.defconfig.stm32wl55xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig.defconfig.stm32wle4xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig.defconfig.stm32wle5xx +C:\Users\iteedi\zephyrproject\zephyr\soc\st\stm32\stm32wlx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\starfive\jh71xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\starfive\jh71xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\starfive\jh71xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\telink\tlsr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\telink\tlsr\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\telink\tlsr\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\telink\tlsr\tlsr951x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\telink\tlsr\tlsr951x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\telink\tlsr\tlsr951x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\k3\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\k3\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\k3\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\k3\am6x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\k3\am6x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\k3\am6x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\lm3s6965\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\lm3s6965\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\lm3s6965\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\mspm0g\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\mspm0g\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\mspm0g\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\mspm0l\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\mspm0l\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\mspm0\mspm0l\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc13x2_cc26x2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc13x2_cc26x2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc13x2_cc26x2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc13x2x7_cc26x2x7\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc13x2x7_cc26x2x7\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc13x2x7_cc26x2x7\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc23x0\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc23x0\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc23x0\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc32xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc32xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc32xx\Kconfig.defconfig.cc3220sf +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc32xx\Kconfig.defconfig.cc3235sf +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\cc32xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\msp432p4xx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\msp432p4xx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\msp432p4xx\Kconfig.defconfig.msp432p401r +C:\Users\iteedi\zephyrproject\zephyr\soc\ti\simplelink\msp432p4xx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\ch32v00x\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\ch32v00x\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\ch32v00x\Kconfig.defconfig.ch32v006 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\ch32v00x\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\ch32v00x\Kconfig.soc.ch32v006 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v2a\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v2a\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v2a\Kconfig.defconfig.ch32v003 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v2a\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v2a\Kconfig.soc.ch32v003 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4b\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4b\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4b\Kconfig.defconfig.ch32v203 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4b\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4b\Kconfig.soc.ch32v203 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4c\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4c\Kconfig.defconfig.ch32v208 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4c\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4c\Kconfig.soc.ch32v208 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig.defconfig.ch32v303 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig.defconfig.ch32v307 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig.soc.ch32v303 +C:\Users\iteedi\zephyrproject\zephyr\soc\wch\ch32v\qingke_v4f\Kconfig.soc.ch32v307 +C:\Users\iteedi\zephyrproject\zephyr\soc\xen\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xen\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xen\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\versal2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\versal2\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\versal2\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\versalnet\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\versalnet\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\versalnet\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\xc7zxxx\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\xc7zxxx\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\xc7zxxx\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\xc7zxxxs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\xc7zxxxs\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynq7000\xc7zxxxs\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynqmp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynqmp\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\soc\xlnx\zynqmp\Kconfig.soc +C:\Users\iteedi\zephyrproject\zephyr\subsys\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bindesc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bindesc\Kconfig.build_time +C:\Users\iteedi\zephyrproject\zephyr\subsys\bindesc\Kconfig.host_info +C:\Users\iteedi\zephyrproject\zephyr\subsys\bindesc\Kconfig.version +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\Kconfig.adv +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\Kconfig.logging +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.aics +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.ascs +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.bap +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.cap +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.ccp +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.csip +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.gmap +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.has +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.mcs +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.mctl +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.micp +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.mpl +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.pacs +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.pbp +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.tbs +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.tmap +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.vcp +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\audio\Kconfig.vocs +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\common\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\controller\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\controller\Kconfig.df +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\controller\Kconfig.dtm +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\controller\Kconfig.ll_sw_split +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\controller\coex\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\crypto\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\host\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\host\Kconfig.gatt +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\host\Kconfig.l2cap +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\host\classic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\lib\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\mesh\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\mesh\shell\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\Kconfig.cts +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\Kconfig.dis +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\Kconfig.hrs +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\Kconfig.tps +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\bas\Kconfig.bas +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\ias\Kconfig.ias +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\nus\Kconfig.nus +C:\Users\iteedi\zephyrproject\zephyr\subsys\bluetooth\services\ots\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\canbus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\canbus\Kconfig.canopen +C:\Users\iteedi\zephyrproject\zephyr\subsys\canbus\isotp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\console\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\cpu_freq\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\crc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\dap\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\debug\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\debug\coredump\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\debug\gdbstub\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\debug\symtab\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\debug\thread_analyzer\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\demand_paging\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\demand_paging\backing_store\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\demand_paging\eviction\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\dfu\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\disk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\dsp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\emul\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\emul\espi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\Kconfig.fatfs +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\Kconfig.littlefs +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\ext2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\fcb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\fuse_client\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\nvs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\virtiofs\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\fs\zms\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\gnss\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\gnss\rtk\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\gnss\rtk\protocol\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\gnss\rtk\serial\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\input\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\instrumentation\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\backends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\backends\Kconfig.icbmsg +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\backends\Kconfig.icmsg_me +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\backends\Kconfig.intel_adsp +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\backends\Kconfig.rpmsg +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\lib\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\ipc_service\lib\Kconfig.icmsg +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\open-amp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\ipc\rpmsg_service\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\jwt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\llext\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.filtering +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.formatting +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.links +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.misc +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.mode +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.processing +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.template.log_config +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.template.log_config_inherit +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\Kconfig.template.log_format_config +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.adsp +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.adsp_mtrace +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.ble +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.efi_console +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.fs +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.mqtt +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.multidomain +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.native_posix +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.net +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.rtt +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.semihost +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.spinel +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.swo +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.uart +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.ws +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\backends\Kconfig.xtensa_sim +C:\Users\iteedi\zephyrproject\zephyr\subsys\logging\frontends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\lorawan\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\lorawan\nvm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\lorawan\services\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mem_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\ec_host_cmd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\ec_host_cmd\Kconfig.logging +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\ec_host_cmd\backends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\hawkbit\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\enum_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\fs_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\img_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\img_mgmt_client\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\os_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\os_mgmt_client\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\settings_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\shell_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\stat_mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\grp\zephyr_basic\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\mgmt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\smp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\smp_client\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig.bluetooth +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig.dummy +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig.lorawan +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig.shell +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig.uart +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\mcumgr\transport\Kconfig.udp +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\osdp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\osdp\Kconfig.cp +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\osdp\Kconfig.pd +C:\Users\iteedi\zephyrproject\zephyr\subsys\mgmt\updatehub\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\modbus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\modem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\modem\backends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\Kconfig.hostname +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\Kconfig.template.log_config.net +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\conn_mgr\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.debug +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.ipv4 +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.ipv6 +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.mgmt +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.stack +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.stats +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\ip\Kconfig.tcp +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\canbus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\dummy\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\dummy\any\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ethernet\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ethernet\dsa\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ethernet\gptp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ethernet\lldp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ieee802154\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ieee802154\Kconfig.radio +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\openthread\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\ppp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\virtual\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\virtual\ipip\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\l2\wifi\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\capture\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\coap\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\config\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\dhcpv4\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\dhcpv6\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\dns\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\http\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\latmon\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\lwm2m\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\lwm2m\Kconfig.ipso +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\lwm2m\Kconfig.ucifi +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\midi2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\mqtt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\mqtt_sn\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\ocpp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\prometheus\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\ptp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\shell\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\sntp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\sockets\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\socks\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\tftp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\tls_credentials\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\tls_credentials\Kconfig.shell +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\trickle\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\websocket\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\wifi_credentials\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\lib\zperf\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\net\pkt_filter\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\nvmem\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\pm\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\pm\policy\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\pmci\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\pmci\mctp\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\pmci\mctp\Kconfig.usb +C:\Users\iteedi\zephyrproject\zephyr\subsys\portability\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\portability\cmsis_rtos_v1\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\portability\cmsis_rtos_v2\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\profiling\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\profiling\perf\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\profiling\perf\backends\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\random\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\retention\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\retention\Kconfig.blinfo +C:\Users\iteedi\zephyrproject\zephyr\subsys\rtio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\rtio\Kconfig.workq +C:\Users\iteedi\zephyrproject\zephyr\subsys\sd\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\secure_storage\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\secure_storage\Kconfig.its_store +C:\Users\iteedi\zephyrproject\zephyr\subsys\secure_storage\Kconfig.its_transform +C:\Users\iteedi\zephyrproject\zephyr\subsys\sensing\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\sensing\sensor\hinge_angle\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\sensing\sensor\phy_3d_sensor\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\settings\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\Kconfig.template.shell_log_queue_size +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\Kconfig.template.shell_log_queue_timeout +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\backends\Kconfig.backends +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\modules\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\modules\kernel_service\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\shell\modules\kernel_service\thread\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\sip_svc\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\stats\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\storage\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\storage\flash_map\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\storage\stream\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\task_wdt\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\testsuite\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\testsuite\Kconfig.coverage +C:\Users\iteedi\zephyrproject\zephyr\subsys\testsuite\Kconfig.defconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\testsuite\ztest\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\timing\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\tracing\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\tracing\sysview\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\Kconfig.bt +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\Kconfig.cdc +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\Kconfig.msc +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\Kconfig.template.composite_device_number +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\audio\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\dfu\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\hid\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device\class\netusb\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\app\Kconfig.cdc_acm_serial +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.bt +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.cdc_acm +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.cdc_ecm +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.cdc_ncm +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.dfu +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.hid +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.loopback +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.midi2 +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.msc +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.template.instances_count +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.uac2 +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\device_next\class\Kconfig.uvc +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\host\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\host\Kconfig.usbip +C:\Users\iteedi\zephyrproject\zephyr\subsys\usb\usb_c\Kconfig +C:\Users\iteedi\zephyrproject\zephyr\subsys\zbus\Kconfig diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj new file mode 100644 index 0000000..83a0e0f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/atomic_c.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj new file mode 100644 index 0000000..3b23e77 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj new file mode 100644 index 0000000..deb3174 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj new file mode 100644 index 0000000..7a54b58 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj new file mode 100644 index 0000000..34cf056 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj new file mode 100644 index 0000000..8ff0589 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj new file mode 100644 index 0000000..cdb3c7d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj new file mode 100644 index 0000000..282f202 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj new file mode 100644 index 0000000..67cc996 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj new file mode 100644 index 0000000..0888ff6 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj new file mode 100644 index 0000000..fceb77d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj new file mode 100644 index 0000000..f4761c6 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj new file mode 100644 index 0000000..db87622 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj new file mode 100644 index 0000000..53dc093 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj new file mode 100644 index 0000000..6af019b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj new file mode 100644 index 0000000..88f1c5e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj new file mode 100644 index 0000000..8fe8792 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj new file mode 100644 index 0000000..d82d96d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj new file mode 100644 index 0000000..96466c6 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj new file mode 100644 index 0000000..64b03f9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj new file mode 100644 index 0000000..b47593d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj new file mode 100644 index 0000000..528ddbd Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj new file mode 100644 index 0000000..8de5d53 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj new file mode 100644 index 0000000..4b6a81c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj new file mode 100644 index 0000000..c4d8763 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj new file mode 100644 index 0000000..e3b33f9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj new file mode 100644 index 0000000..aa8281a Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj new file mode 100644 index 0000000..e3b796f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj new file mode 100644 index 0000000..3f1898e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj new file mode 100644 index 0000000..4f52737 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/kernel/cmake_install.cmake new file mode 100644 index 0000000..60e6356 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/kernel/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/kernel/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/kernel/libkernel.a b/firmware/canfd_cdc_composite/build/zephyr/kernel/libkernel.a new file mode 100644 index 0000000..c951d24 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/kernel/libkernel.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/cmake_install.cmake new file mode 100644 index 0000000..66f1070 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/cmake_install.cmake @@ -0,0 +1,90 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/hash/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/hash/cmake_install.cmake new file mode 100644 index 0000000..ac71906 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/hash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/hash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/hash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/heap/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/heap/cmake_install.cmake new file mode 100644 index 0000000..8fd29bd --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/heap/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/heap/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/cmake_install.cmake new file mode 100644 index 0000000..0baec3a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/libc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj new file mode 100644 index 0000000..85a311c Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj new file mode 100644 index 0000000..4d5da8d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj new file mode 100644 index 0000000..3d173a5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/cmake_install.cmake new file mode 100644 index 0000000..7f31779 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/libc/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/liblib__libc__common.a b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/liblib__libc__common.a new file mode 100644 index 0000000..5a1a2a9 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/common/liblib__libc__common.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj new file mode 100644 index 0000000..1eb8ea6 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj new file mode 100644 index 0000000..efb5c3d Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj new file mode 100644 index 0000000..a14bfd0 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj new file mode 100644 index 0000000..254a0ce Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj new file mode 100644 index 0000000..0019cfd Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj new file mode 100644 index 0000000..c432310 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj new file mode 100644 index 0000000..868d42e Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/cmake_install.cmake new file mode 100644 index 0000000..ea14715 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/libc/picolibc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a new file mode 100644 index 0000000..c0bab83 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/cmake_install.cmake new file mode 100644 index 0000000..caf301b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/mem_blocks + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/mem_blocks/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/cmake_install.cmake new file mode 100644 index 0000000..6f1a82d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/midi2 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/midi2/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/os/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/os/cmake_install.cmake new file mode 100644 index 0000000..771d01d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/os/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/os + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/os/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake new file mode 100644 index 0000000..2ffae89 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lang_support_r + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj new file mode 100644 index 0000000..488d5e5 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj new file mode 100644 index 0000000..4e0a2bb Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj new file mode 100644 index 0000000..cf195e1 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj new file mode 100644 index 0000000..8078d23 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt/getopt_common.c.obj differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake new file mode 100644 index 0000000..a00bd58 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/posix/c_lib_ext + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a new file mode 100644 index 0000000..639d127 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/posix/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/cmake_install.cmake new file mode 100644 index 0000000..7a56a84 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/posix/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/posix + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/posix/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/utils/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/utils/cmake_install.cmake new file mode 100644 index 0000000..4f7b78a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/utils/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/utils + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/utils/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/cmake_install.cmake new file mode 100644 index 0000000..221e471 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/lib/uuid + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/lib/uuid/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/libzephyr.a b/firmware/canfd_cdc_composite/build/zephyr/libzephyr.a new file mode 100644 index 0000000..42ba3ed Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/libzephyr.a differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/linker.cmd b/firmware/canfd_cdc_composite/build/zephyr/linker.cmd new file mode 100644 index 0000000..943eb75 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/linker.cmd @@ -0,0 +1,431 @@ + OUTPUT_FORMAT("elf32-littlearm") +_region_min_align = 4; +MEMORY + { + FLASH (rx) : ORIGIN = (0x8000000 + 0x0), LENGTH = (512 * 1024 - 0x0 - 0x0) + RAM (wx) : ORIGIN = 0x20000000, LENGTH = (144 * 1K) + SRAM0 ( rw ) : ORIGIN = (536870912), LENGTH = (147456) + IDT_LIST (wx) : ORIGIN = 0xFFFF7FFF, LENGTH = 32K + } +ENTRY("__start") +SECTIONS + { + .rel.plt : + { + *(.rel.plt) + PROVIDE_HIDDEN (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE_HIDDEN (__rel_iplt_end = .); + } + .rela.plt : + { + *(.rela.plt) + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } + .rel.dyn : + { + *(.rel.*) + } + .rela.dyn : + { + *(.rela.*) + } + /DISCARD/ : + { + *(.plt) + } + /DISCARD/ : + { + *(.iplt) + } + + __rom_region_start = (0x8000000 + 0x0); + rom_start : + { +HIDDEN(__rom_start_address = .); +FILL(0x00); +. += 0x0 - (. - __rom_start_address); +. = ALIGN(4); +. = ALIGN( 1 << LOG2CEIL(4 * 64) ); +. = ALIGN( 1 << LOG2CEIL(4 * (16 + 31)) ); +_vector_start = .; +KEEP(*(.exc_vector_table)) +KEEP(*(".exc_vector_table.*")) +KEEP(*(.vectors)) +_vector_end = .; +. = ALIGN(4); +KEEP(*(.gnu.linkonce.irq_vector_table*)) + _vector_end = .; + } > FLASH + text : + { + __text_region_start = .; + *(.text) + *(".text.*") + *(".TEXT.*") + *(.gnu.linkonce.t.*) + *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx) + . = ALIGN(4); + } > FLASH + __text_region_end = .; + .ARM.exidx : + { + __exidx_start = .; + *(.ARM.exidx* gnu.linkonce.armexidx.*) + __exidx_end = .; + } > FLASH + __rodata_region_start = .; + initlevel : + { + __init_start = .; + __init_EARLY_start = .; KEEP(*(SORT(.z_init_EARLY_P_?_*))); KEEP(*(SORT(.z_init_EARLY_P_??_*))); KEEP(*(SORT(.z_init_EARLY_P_???_*))); + __init_PRE_KERNEL_1_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_???_*))); + __init_PRE_KERNEL_2_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_???_*))); + __init_POST_KERNEL_start = .; KEEP(*(SORT(.z_init_POST_KERNEL_P_?_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_??_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_???_*))); + __init_APPLICATION_start = .; KEEP(*(SORT(.z_init_APPLICATION_P_?_*))); KEEP(*(SORT(.z_init_APPLICATION_P_??_*))); KEEP(*(SORT(.z_init_APPLICATION_P_???_*))); + __init_SMP_start = .; KEEP(*(SORT(.z_init_SMP_P_?_*))); KEEP(*(SORT(.z_init_SMP_P_??_*))); KEEP(*(SORT(.z_init_SMP_P_???_*))); + __init_end = .; + } > FLASH + device_area : { _device_list_start = .; KEEP(*(SORT(._device.static.*_?_*))); KEEP(*(SORT(._device.static.*_??_*))); KEEP(*(SORT(._device.static.*_???_*))); KEEP(*(SORT(._device.static.*_????_*))); KEEP(*(SORT(._device.static.*_?????_*))); _device_list_end = .;; } > FLASH + sw_isr_table : + { + . = ALIGN(4); + *(.gnu.linkonce.sw_isr_table*) + } > FLASH + initlevel_error : + { + KEEP(*(SORT(.z_init_*))) + } + ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.") + app_shmem_regions : ALIGN_WITH_INPUT + { + __app_shmem_regions_start = .; + KEEP(*(SORT(.app_regions.*))); + __app_shmem_regions_end = .; + } > FLASH + k_p4wq_initparam_area : { _k_p4wq_initparam_list_start = .; KEEP(*(SORT_BY_NAME(._k_p4wq_initparam.static.*))); _k_p4wq_initparam_list_end = .;; } > FLASH + _static_thread_data_area : { __static_thread_data_list_start = .; KEEP(*(SORT_BY_NAME(.__static_thread_data.static.*))); __static_thread_data_list_end = .;; } > FLASH + device_deps : ALIGN_WITH_INPUT + { +__device_deps_start = .; +KEEP(*(SORT(.__device_deps_pass2*))); +__device_deps_end = .; + } > FLASH +can_driver_api_area : { _can_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_driver_api.static.*))); _can_driver_api_list_end = .;; } > FLASH +gpio_driver_api_area : { _gpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gpio_driver_api.static.*))); _gpio_driver_api_list_end = .;; } > FLASH +reset_driver_api_area : { _reset_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._reset_driver_api.static.*))); _reset_driver_api_list_end = .;; } > FLASH +shared_irq_driver_api_area : { _shared_irq_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._shared_irq_driver_api.static.*))); _shared_irq_driver_api_list_end = .;; } > FLASH +crypto_driver_api_area : { _crypto_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crypto_driver_api.static.*))); _crypto_driver_api_list_end = .;; } > FLASH +adc_driver_api_area : { _adc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._adc_driver_api.static.*))); _adc_driver_api_list_end = .;; } > FLASH +auxdisplay_driver_api_area : { _auxdisplay_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._auxdisplay_driver_api.static.*))); _auxdisplay_driver_api_list_end = .;; } > FLASH +bbram_driver_api_area : { _bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bbram_driver_api.static.*))); _bbram_driver_api_list_end = .;; } > FLASH +bt_hci_driver_api_area : { _bt_hci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bt_hci_driver_api.static.*))); _bt_hci_driver_api_list_end = .;; } > FLASH +cellular_driver_api_area : { _cellular_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._cellular_driver_api.static.*))); _cellular_driver_api_list_end = .;; } > FLASH +charger_driver_api_area : { _charger_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._charger_driver_api.static.*))); _charger_driver_api_list_end = .;; } > FLASH +clock_control_driver_api_area : { _clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._clock_control_driver_api.static.*))); _clock_control_driver_api_list_end = .;; } > FLASH +comparator_driver_api_area : { _comparator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._comparator_driver_api.static.*))); _comparator_driver_api_list_end = .;; } > FLASH +coredump_driver_api_area : { _coredump_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._coredump_driver_api.static.*))); _coredump_driver_api_list_end = .;; } > FLASH +counter_driver_api_area : { _counter_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._counter_driver_api.static.*))); _counter_driver_api_list_end = .;; } > FLASH +crc_driver_api_area : { _crc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crc_driver_api.static.*))); _crc_driver_api_list_end = .;; } > FLASH +dac_driver_api_area : { _dac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dac_driver_api.static.*))); _dac_driver_api_list_end = .;; } > FLASH +dai_driver_api_area : { _dai_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dai_driver_api.static.*))); _dai_driver_api_list_end = .;; } > FLASH +display_driver_api_area : { _display_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._display_driver_api.static.*))); _display_driver_api_list_end = .;; } > FLASH +dma_driver_api_area : { _dma_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dma_driver_api.static.*))); _dma_driver_api_list_end = .;; } > FLASH +edac_driver_api_area : { _edac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._edac_driver_api.static.*))); _edac_driver_api_list_end = .;; } > FLASH +eeprom_driver_api_area : { _eeprom_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._eeprom_driver_api.static.*))); _eeprom_driver_api_list_end = .;; } > FLASH +emul_bbram_driver_api_area : { _emul_bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_bbram_driver_api.static.*))); _emul_bbram_driver_api_list_end = .;; } > FLASH +fuel_gauge_emul_driver_api_area : { _fuel_gauge_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_emul_driver_api.static.*))); _fuel_gauge_emul_driver_api_list_end = .;; } > FLASH +emul_sensor_driver_api_area : { _emul_sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_sensor_driver_api.static.*))); _emul_sensor_driver_api_list_end = .;; } > FLASH +entropy_driver_api_area : { _entropy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._entropy_driver_api.static.*))); _entropy_driver_api_list_end = .;; } > FLASH +espi_driver_api_area : { _espi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_driver_api.static.*))); _espi_driver_api_list_end = .;; } > FLASH +espi_saf_driver_api_area : { _espi_saf_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_saf_driver_api.static.*))); _espi_saf_driver_api_list_end = .;; } > FLASH +flash_driver_api_area : { _flash_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._flash_driver_api.static.*))); _flash_driver_api_list_end = .;; } > FLASH +fpga_driver_api_area : { _fpga_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fpga_driver_api.static.*))); _fpga_driver_api_list_end = .;; } > FLASH +fuel_gauge_driver_api_area : { _fuel_gauge_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_driver_api.static.*))); _fuel_gauge_driver_api_list_end = .;; } > FLASH +gnss_driver_api_area : { _gnss_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gnss_driver_api.static.*))); _gnss_driver_api_list_end = .;; } > FLASH +haptics_driver_api_area : { _haptics_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._haptics_driver_api.static.*))); _haptics_driver_api_list_end = .;; } > FLASH +hwspinlock_driver_api_area : { _hwspinlock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._hwspinlock_driver_api.static.*))); _hwspinlock_driver_api_list_end = .;; } > FLASH +i2c_driver_api_area : { _i2c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_driver_api.static.*))); _i2c_driver_api_list_end = .;; } > FLASH +i2c_target_driver_api_area : { _i2c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_target_driver_api.static.*))); _i2c_target_driver_api_list_end = .;; } > FLASH +i2s_driver_api_area : { _i2s_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2s_driver_api.static.*))); _i2s_driver_api_list_end = .;; } > FLASH +i3c_driver_api_area : { _i3c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_driver_api.static.*))); _i3c_driver_api_list_end = .;; } > FLASH +ipm_driver_api_area : { _ipm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ipm_driver_api.static.*))); _ipm_driver_api_list_end = .;; } > FLASH +led_driver_api_area : { _led_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_driver_api.static.*))); _led_driver_api_list_end = .;; } > FLASH +led_strip_driver_api_area : { _led_strip_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_strip_driver_api.static.*))); _led_strip_driver_api_list_end = .;; } > FLASH +lora_driver_api_area : { _lora_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._lora_driver_api.static.*))); _lora_driver_api_list_end = .;; } > FLASH +mbox_driver_api_area : { _mbox_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mbox_driver_api.static.*))); _mbox_driver_api_list_end = .;; } > FLASH +mdio_driver_api_area : { _mdio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mdio_driver_api.static.*))); _mdio_driver_api_list_end = .;; } > FLASH +mipi_dbi_driver_api_area : { _mipi_dbi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dbi_driver_api.static.*))); _mipi_dbi_driver_api_list_end = .;; } > FLASH +mipi_dsi_driver_api_area : { _mipi_dsi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dsi_driver_api.static.*))); _mipi_dsi_driver_api_list_end = .;; } > FLASH +mspi_driver_api_area : { _mspi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mspi_driver_api.static.*))); _mspi_driver_api_list_end = .;; } > FLASH +opamp_driver_api_area : { _opamp_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._opamp_driver_api.static.*))); _opamp_driver_api_list_end = .;; } > FLASH +peci_driver_api_area : { _peci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._peci_driver_api.static.*))); _peci_driver_api_list_end = .;; } > FLASH +ps2_driver_api_area : { _ps2_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ps2_driver_api.static.*))); _ps2_driver_api_list_end = .;; } > FLASH +ptp_clock_driver_api_area : { _ptp_clock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ptp_clock_driver_api.static.*))); _ptp_clock_driver_api_list_end = .;; } > FLASH +pwm_driver_api_area : { _pwm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pwm_driver_api.static.*))); _pwm_driver_api_list_end = .;; } > FLASH +regulator_parent_driver_api_area : { _regulator_parent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_parent_driver_api.static.*))); _regulator_parent_driver_api_list_end = .;; } > FLASH +regulator_driver_api_area : { _regulator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_driver_api.static.*))); _regulator_driver_api_list_end = .;; } > FLASH +retained_mem_driver_api_area : { _retained_mem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._retained_mem_driver_api.static.*))); _retained_mem_driver_api_list_end = .;; } > FLASH +rtc_driver_api_area : { _rtc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._rtc_driver_api.static.*))); _rtc_driver_api_list_end = .;; } > FLASH +sdhc_driver_api_area : { _sdhc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sdhc_driver_api.static.*))); _sdhc_driver_api_list_end = .;; } > FLASH +sensor_driver_api_area : { _sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sensor_driver_api.static.*))); _sensor_driver_api_list_end = .;; } > FLASH +smbus_driver_api_area : { _smbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._smbus_driver_api.static.*))); _smbus_driver_api_list_end = .;; } > FLASH +spi_driver_api_area : { _spi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._spi_driver_api.static.*))); _spi_driver_api_list_end = .;; } > FLASH +stepper_driver_api_area : { _stepper_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_driver_api.static.*))); _stepper_driver_api_list_end = .;; } > FLASH +syscon_driver_api_area : { _syscon_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._syscon_driver_api.static.*))); _syscon_driver_api_list_end = .;; } > FLASH +tee_driver_api_area : { _tee_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tee_driver_api.static.*))); _tee_driver_api_list_end = .;; } > FLASH +video_driver_api_area : { _video_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._video_driver_api.static.*))); _video_driver_api_list_end = .;; } > FLASH +virtio_driver_api_area : { _virtio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._virtio_driver_api.static.*))); _virtio_driver_api_list_end = .;; } > FLASH +w1_driver_api_area : { _w1_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._w1_driver_api.static.*))); _w1_driver_api_list_end = .;; } > FLASH +wdt_driver_api_area : { _wdt_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wdt_driver_api.static.*))); _wdt_driver_api_list_end = .;; } > FLASH +can_transceiver_driver_api_area : { _can_transceiver_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_transceiver_driver_api.static.*))); _can_transceiver_driver_api_list_end = .;; } > FLASH +nrf_clock_control_driver_api_area : { _nrf_clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._nrf_clock_control_driver_api.static.*))); _nrf_clock_control_driver_api_list_end = .;; } > FLASH +i3c_target_driver_api_area : { _i3c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_target_driver_api.static.*))); _i3c_target_driver_api_list_end = .;; } > FLASH +its_driver_api_area : { _its_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._its_driver_api.static.*))); _its_driver_api_list_end = .;; } > FLASH +vtd_driver_api_area : { _vtd_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._vtd_driver_api.static.*))); _vtd_driver_api_list_end = .;; } > FLASH +renesas_elc_driver_api_area : { _renesas_elc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._renesas_elc_driver_api.static.*))); _renesas_elc_driver_api_list_end = .;; } > FLASH +tgpio_driver_api_area : { _tgpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tgpio_driver_api.static.*))); _tgpio_driver_api_list_end = .;; } > FLASH +pcie_ctrl_driver_api_area : { _pcie_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ctrl_driver_api.static.*))); _pcie_ctrl_driver_api_list_end = .;; } > FLASH +pcie_ep_driver_api_area : { _pcie_ep_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ep_driver_api.static.*))); _pcie_ep_driver_api_list_end = .;; } > FLASH +psi5_driver_api_area : { _psi5_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._psi5_driver_api.static.*))); _psi5_driver_api_list_end = .;; } > FLASH +sent_driver_api_area : { _sent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sent_driver_api.static.*))); _sent_driver_api_list_end = .;; } > FLASH +svc_driver_api_area : { _svc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._svc_driver_api.static.*))); _svc_driver_api_list_end = .;; } > FLASH +uart_driver_api_area : { _uart_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uart_driver_api.static.*))); _uart_driver_api_list_end = .;; } > FLASH +bc12_emul_driver_api_area : { _bc12_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_emul_driver_api.static.*))); _bc12_emul_driver_api_list_end = .;; } > FLASH +bc12_driver_api_area : { _bc12_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_driver_api.static.*))); _bc12_driver_api_list_end = .;; } > FLASH +usbc_ppc_driver_api_area : { _usbc_ppc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_ppc_driver_api.static.*))); _usbc_ppc_driver_api_list_end = .;; } > FLASH +tcpc_driver_api_area : { _tcpc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tcpc_driver_api.static.*))); _tcpc_driver_api_list_end = .;; } > FLASH +usbc_vbus_driver_api_area : { _usbc_vbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_vbus_driver_api.static.*))); _usbc_vbus_driver_api_list_end = .;; } > FLASH +ivshmem_driver_api_area : { _ivshmem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ivshmem_driver_api.static.*))); _ivshmem_driver_api_list_end = .;; } > FLASH +ethphy_driver_api_area : { _ethphy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ethphy_driver_api.static.*))); _ethphy_driver_api_list_end = .;; } > FLASH +ztest : +{ + _ztest_expected_result_entry_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*))); _ztest_expected_result_entry_list_end = .;; + _ztest_suite_node_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*))); _ztest_suite_node_list_end = .;; + _ztest_unit_test_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*))); _ztest_unit_test_list_end = .;; + _ztest_test_rule_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*))); _ztest_test_rule_list_end = .;; +} > FLASH + init_array : + { + __zephyr_init_array_start = .; + KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) + SORT_BY_INIT_PRIORITY(.ctors.*))) + KEEP (*(.init_array .ctors)) + __zephyr_init_array_end = .; + } > FLASH + ASSERT(__zephyr_init_array_start == __zephyr_init_array_end, + "GNU-style constructors required but STATIC_INIT_GNU not enabled") + bt_l2cap_fixed_chan_area : { _bt_l2cap_fixed_chan_list_start = .; KEEP(*(SORT_BY_NAME(._bt_l2cap_fixed_chan.static.*))); _bt_l2cap_fixed_chan_list_end = .;; } > FLASH + bt_gatt_service_static_area : { _bt_gatt_service_static_list_start = .; KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*))); _bt_gatt_service_static_list_end = .;; } > FLASH + log_strings_area : { _log_strings_list_start = .; KEEP(*(SORT_BY_NAME(._log_strings.static.*))); _log_strings_list_end = .;; } > FLASH + log_stmesp_ptr_area : { _log_stmesp_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_ptr.static.*))); _log_stmesp_ptr_list_end = .;; } > FLASH + log_stmesp_str_area : { _log_stmesp_str_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_str.static.*))); _log_stmesp_str_list_end = .;; } > FLASH + log_const_area : { _log_const_list_start = .; KEEP(*(SORT_BY_NAME(._log_const.static.*))); _log_const_list_end = .;; } > FLASH + log_backend_area : { _log_backend_list_start = .; KEEP(*(SORT_BY_NAME(._log_backend.static.*))); _log_backend_list_end = .;; } > FLASH + log_link_area : { _log_link_list_start = .; KEEP(*(SORT_BY_NAME(._log_link.static.*))); _log_link_list_end = .;; } > FLASH + tracing_backend_area : { _tracing_backend_list_start = .; KEEP(*(SORT_BY_NAME(._tracing_backend.static.*))); _tracing_backend_list_end = .;; } > FLASH + zephyr_dbg_info : ALIGN_WITH_INPUT + { + KEEP(*(".dbg_thread_info")); + } > FLASH + intc_table_area : { _intc_table_list_start = .; KEEP(*(SORT_BY_NAME(._intc_table.static.*))); _intc_table_list_end = .;; } > FLASH + symbol_to_keep : ALIGN_WITH_INPUT + { + __symbol_to_keep_start = .; + KEEP(*(SORT(.symbol_to_keep*))); + __symbol_to_keep_end = .; + } > FLASH + shell_area : { _shell_list_start = .; KEEP(*(SORT_BY_NAME(._shell.static.*))); _shell_list_end = .;; } > FLASH + shell_root_cmds_area : { _shell_root_cmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_root_cmds.static.*))); _shell_root_cmds_list_end = .;; } > FLASH + shell_subcmds_area : { _shell_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_subcmds.static.*))); _shell_subcmds_list_end = .;; } > FLASH + shell_dynamic_subcmds_area : { _shell_dynamic_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_dynamic_subcmds.static.*))); _shell_dynamic_subcmds_list_end = .;; } > FLASH + cfb_font_area : { _cfb_font_list_start = .; KEEP(*(SORT_BY_NAME(._cfb_font.static.*))); _cfb_font_list_end = .;; } > FLASH + tdata : ALIGN_WITH_INPUT + { + *(.tdata .tdata.* .gnu.linkonce.td.*); + } > FLASH + tbss (NOLOAD) : ALIGN_WITH_INPUT + { + *(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon); + } > FLASH + PROVIDE(__tdata_start = LOADADDR(tdata)); + PROVIDE(__tdata_align = ALIGNOF(tdata)); + PROVIDE(__tdata_size = (SIZEOF(tdata) + __tdata_align - 1) & ~(__tdata_align - 1)); + PROVIDE(__tdata_end = __tdata_start + __tdata_size); + PROVIDE(__tbss_align = ALIGNOF(tbss)); + PROVIDE(__tbss_start = ADDR(tbss)); + PROVIDE(__tbss_size = (SIZEOF(tbss) + __tbss_align - 1) & ~(__tbss_align - 1)); + PROVIDE(__tbss_end = __tbss_start + __tbss_size); + PROVIDE(__tls_start = __tdata_start); + PROVIDE(__tls_end = __tbss_end); + PROVIDE(__tls_size = __tbss_end - __tdata_start); + rodata : + { + *(.rodata) + *(".rodata.*") + *(.gnu.linkonce.r.*) + . = ALIGN(4); + } > FLASH + PROVIDE(__eh_frame_start = 0); + PROVIDE(__eh_frame_end = 0); + PROVIDE(__eh_frame_hdr_start = 0); + PROVIDE(__eh_frame_hdr_end = 0); + /DISCARD/ : { *(.eh_frame) } + __rodata_region_end = .; + . = ALIGN(_region_min_align); + __rom_region_end = __rom_region_start + . - ADDR(rom_start); + __rom_region_size = __rom_region_end - __rom_region_start; + + /DISCARD/ : { + *(.got.plt) + *(.igot.plt) + *(.got) + *(.igot) + } + + . = 0x20000000; + . = ALIGN(_region_min_align); + _image_ram_start = .; +.ramfunc : ALIGN_WITH_INPUT +{ + __ramfunc_region_start = .; + . = ALIGN(_region_min_align); + __ramfunc_start = .; + *(.ramfunc) + *(".ramfunc.*") + . = ALIGN(_region_min_align); + __ramfunc_end = .; +} > RAM AT > FLASH +__ramfunc_size = __ramfunc_end - __ramfunc_start; +__ramfunc_load_start = LOADADDR(.ramfunc); + + datas : ALIGN_WITH_INPUT + { + __data_region_start = .; + __data_start = .; + *(.data) + *(".data.*") + *(".kernel.*") + __data_end = .; + } > RAM AT > FLASH + __data_size = __data_end - __data_start; + __data_load_start = LOADADDR(datas); + __data_region_load_start = LOADADDR(datas); + device_states : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __device_states_start = .; + KEEP(*(".z_devstate")); + KEEP(*(".z_devstate.*")); + __device_states_end = .; + . = ALIGN(4); + } > RAM AT > FLASH + log_mpsc_pbuf_area : ALIGN_WITH_INPUT { _log_mpsc_pbuf_list_start = .; *(SORT_BY_NAME(._log_mpsc_pbuf.static.*)); _log_mpsc_pbuf_list_end = .;; } > RAM AT > FLASH + log_msg_ptr_area : ALIGN_WITH_INPUT { _log_msg_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_msg_ptr.static.*))); _log_msg_ptr_list_end = .;; } > RAM AT > FLASH + log_dynamic_area : ALIGN_WITH_INPUT { _log_dynamic_list_start = .; KEEP(*(SORT_BY_NAME(._log_dynamic.static.*))); _log_dynamic_list_end = .;; } > RAM AT > FLASH + k_timer_area : ALIGN_WITH_INPUT { _k_timer_list_start = .; *(SORT_BY_NAME(._k_timer.static.*)); _k_timer_list_end = .;; } > RAM AT > FLASH + k_mem_slab_area : ALIGN_WITH_INPUT { _k_mem_slab_list_start = .; *(SORT_BY_NAME(._k_mem_slab.static.*)); _k_mem_slab_list_end = .;; } > RAM AT > FLASH + k_heap_area : ALIGN_WITH_INPUT { _k_heap_list_start = .; *(SORT_BY_NAME(._k_heap.static.*)); _k_heap_list_end = .;; } > RAM AT > FLASH + k_mutex_area : ALIGN_WITH_INPUT { _k_mutex_list_start = .; *(SORT_BY_NAME(._k_mutex.static.*)); _k_mutex_list_end = .;; } > RAM AT > FLASH + k_stack_area : ALIGN_WITH_INPUT { _k_stack_list_start = .; *(SORT_BY_NAME(._k_stack.static.*)); _k_stack_list_end = .;; } > RAM AT > FLASH + k_msgq_area : ALIGN_WITH_INPUT { _k_msgq_list_start = .; *(SORT_BY_NAME(._k_msgq.static.*)); _k_msgq_list_end = .;; } > RAM AT > FLASH + k_mbox_area : ALIGN_WITH_INPUT { _k_mbox_list_start = .; *(SORT_BY_NAME(._k_mbox.static.*)); _k_mbox_list_end = .;; } > RAM AT > FLASH + k_pipe_area : ALIGN_WITH_INPUT { _k_pipe_list_start = .; *(SORT_BY_NAME(._k_pipe.static.*)); _k_pipe_list_end = .;; } > RAM AT > FLASH + k_sem_area : ALIGN_WITH_INPUT { _k_sem_list_start = .; *(SORT_BY_NAME(._k_sem.static.*)); _k_sem_list_end = .;; } > RAM AT > FLASH + k_event_area : ALIGN_WITH_INPUT { _k_event_list_start = .; *(SORT_BY_NAME(._k_event.static.*)); _k_event_list_end = .;; } > RAM AT > FLASH + k_queue_area : ALIGN_WITH_INPUT { _k_queue_list_start = .; *(SORT_BY_NAME(._k_queue.static.*)); _k_queue_list_end = .;; } > RAM AT > FLASH + k_fifo_area : ALIGN_WITH_INPUT { _k_fifo_list_start = .; *(SORT_BY_NAME(._k_fifo.static.*)); _k_fifo_list_end = .;; } > RAM AT > FLASH + k_lifo_area : ALIGN_WITH_INPUT { _k_lifo_list_start = .; *(SORT_BY_NAME(._k_lifo.static.*)); _k_lifo_list_end = .;; } > RAM AT > FLASH + k_condvar_area : ALIGN_WITH_INPUT { _k_condvar_list_start = .; *(SORT_BY_NAME(._k_condvar.static.*)); _k_condvar_list_end = .;; } > RAM AT > FLASH + sys_mem_blocks_ptr_area : ALIGN_WITH_INPUT { _sys_mem_blocks_ptr_list_start = .; *(SORT_BY_NAME(._sys_mem_blocks_ptr.static.*)); _sys_mem_blocks_ptr_list_end = .;; } > RAM AT > FLASH + net_buf_pool_area : ALIGN_WITH_INPUT { _net_buf_pool_list_start = .; KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*))); _net_buf_pool_list_end = .;; } > RAM AT > FLASH + usb_descriptor : ALIGN_WITH_INPUT + { + __usb_descriptor_start = .; + *(".usb.descriptor") + KEEP(*(SORT_BY_NAME(".usb.descriptor*"))) + __usb_descriptor_end = .; + } > RAM AT > FLASH + usb_cfg_data_area : ALIGN_WITH_INPUT { _usb_cfg_data_list_start = .; KEEP(*(SORT_BY_NAME(._usb_cfg_data.static.*))); _usb_cfg_data_list_end = .;; } > RAM AT > FLASH + __data_region_end = .; +/DISCARD/ : +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } + .stab.excl 0 : { *(.stab.excl) } + .stab.exclstr 0 : { *(.stab.exclstr) } + .stab.index 0 : { *(.stab.index) } + .stab.indexstr 0 : { *(.stab.indexstr) } + .gnu.build.attributes 0 : { *(.gnu.build.attributes .gnu.build.attributes.*) } + .comment 0 : { *(.comment) } + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + .debug_ranges 0 : { *(.debug_ranges) } + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .debug_sup 0 : { *(.debug_sup) } + /DISCARD/ : { *(.note.GNU-stack) } + .ARM.attributes 0 : + { + KEEP(*(.ARM.attributes)) + KEEP(*(.gnu.attributes)) + } + SRAM0 (NOLOAD) : { __SRAM0_start = .; KEEP(*(SRAM0)) KEEP(*(SRAM0.*)) __SRAM0_end = .; } > SRAM0 __SRAM0_size = __SRAM0_end - __SRAM0_start; __SRAM0_load_start = LOADADDR(SRAM0); +.last_section : +{ + KEEP(*(.last_section)) +} > FLASH +_flash_used = LOADADDR(.last_section) + SIZEOF(.last_section) - __rom_region_start; + bss (NOLOAD) : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __bss_start = .; + __kernel_ram_start = .; + *(.bss) + *(".bss.*") + *(COMMON) + *(".kernel_bss.*") + __bss_end = ALIGN(4); + } > RAM AT > RAM +noinit (NOLOAD) : +{ + *(.noinit) + *(".noinit.*") +} > RAM AT > RAM + __kernel_ram_end = 0x20000000 + (144 * 1K); + __kernel_ram_size = __kernel_ram_end - __kernel_ram_start; + .last_ram_section (NOLOAD) : + { + _image_ram_end = .; + _image_ram_size = _image_ram_end - _image_ram_start; + _end = .; + z_mapped_end = .; + } > RAM AT > RAM + + } diff --git a/firmware/canfd_cdc_composite/build/zephyr/linker.cmd.dep b/firmware/canfd_cdc_composite/build/zephyr/linker.cmd.dep new file mode 100644 index 0000000..3560434 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/linker.cmd.dep @@ -0,0 +1,87 @@ +linker.cmd: \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/sections.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/section_tags.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/gcc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree.h \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/devicetree_generated.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/irq_multilevel.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\lib\gcc\arm-zephyr-eabi\12.2.0\include\stdbool.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/io-channels.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/clocks.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/gpio.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/spi.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/dma.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/pwms.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/ordinals.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/pinctrl.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/can.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/reset.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/mbox.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/port-endpoint.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/display.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/hwspinlock.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/devicetree_regions.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-defs.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/common.h \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/mm.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/internal/mm.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-devnull.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/rel-sections.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-start.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\rom_start_address.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\fill_with_zeros.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\rom_start_offset.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\arm\core\vector_table.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/irq-vector-table-section.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\arm\core\cortex_m\vector_table_pad.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-text.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/iterable_sections.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/device-deps.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/thread-local-storage.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rodata.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\arm\core\swi_tables.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-rom.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ram-sections.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\ramfunc.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ramfunc-section.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rwdata.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-ram.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-data.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-data-sections.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/intlist.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/debug-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-noinit.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-noinit.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-priv-stacks.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/ram-end.ld diff --git a/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd b/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd new file mode 100644 index 0000000..898ff82 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd @@ -0,0 +1,431 @@ + OUTPUT_FORMAT("elf32-littlearm") +_region_min_align = 4; +MEMORY + { + FLASH (rx) : ORIGIN = (0x8000000 + 0x0), LENGTH = (512 * 1024 - 0x0 - 0x0) + RAM (wx) : ORIGIN = 0x20000000, LENGTH = (144 * 1K) + SRAM0 ( rw ) : ORIGIN = (536870912), LENGTH = (147456) + IDT_LIST (wx) : ORIGIN = 0xFFFF7FFF, LENGTH = 32K + } +ENTRY("__start") +SECTIONS + { + .rel.plt : + { + *(.rel.plt) + PROVIDE_HIDDEN (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE_HIDDEN (__rel_iplt_end = .); + } + .rela.plt : + { + *(.rela.plt) + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } + .rel.dyn : + { + *(.rel.*) + } + .rela.dyn : + { + *(.rela.*) + } + /DISCARD/ : + { + *(.plt) + } + /DISCARD/ : + { + *(.iplt) + } + + __rom_region_start = (0x8000000 + 0x0); + rom_start : + { +HIDDEN(__rom_start_address = .); +FILL(0x00); +. += 0x0 - (. - __rom_start_address); +. = ALIGN(4); +. = ALIGN( 1 << LOG2CEIL(4 * 64) ); +. = ALIGN( 1 << LOG2CEIL(4 * (16 + 31)) ); +_vector_start = .; +KEEP(*(.exc_vector_table)) +KEEP(*(".exc_vector_table.*")) +KEEP(*(.vectors)) +_vector_end = .; +. = ALIGN(4); +KEEP(*(.gnu.linkonce.irq_vector_table*)) + _vector_end = .; + } > FLASH + text : + { + __text_region_start = .; + *(.text) + *(".text.*") + *(".TEXT.*") + *(.gnu.linkonce.t.*) + *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx) + . = ALIGN(4); + } > FLASH + __text_region_end = .; + .ARM.exidx : + { + __exidx_start = .; + *(.ARM.exidx* gnu.linkonce.armexidx.*) + __exidx_end = .; + } > FLASH + __rodata_region_start = .; + initlevel : + { + __init_start = .; + __init_EARLY_start = .; KEEP(*(SORT(.z_init_EARLY_P_?_*))); KEEP(*(SORT(.z_init_EARLY_P_??_*))); KEEP(*(SORT(.z_init_EARLY_P_???_*))); + __init_PRE_KERNEL_1_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_???_*))); + __init_PRE_KERNEL_2_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_???_*))); + __init_POST_KERNEL_start = .; KEEP(*(SORT(.z_init_POST_KERNEL_P_?_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_??_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_???_*))); + __init_APPLICATION_start = .; KEEP(*(SORT(.z_init_APPLICATION_P_?_*))); KEEP(*(SORT(.z_init_APPLICATION_P_??_*))); KEEP(*(SORT(.z_init_APPLICATION_P_???_*))); + __init_SMP_start = .; KEEP(*(SORT(.z_init_SMP_P_?_*))); KEEP(*(SORT(.z_init_SMP_P_??_*))); KEEP(*(SORT(.z_init_SMP_P_???_*))); + __init_end = .; + } > FLASH + device_area : { _device_list_start = .; KEEP(*(SORT(._device.static.*_?_*))); KEEP(*(SORT(._device.static.*_??_*))); KEEP(*(SORT(._device.static.*_???_*))); KEEP(*(SORT(._device.static.*_????_*))); KEEP(*(SORT(._device.static.*_?????_*))); _device_list_end = .;; } > FLASH + sw_isr_table : + { + . = ALIGN(4); + *(.gnu.linkonce.sw_isr_table*) + } > FLASH + initlevel_error : + { + KEEP(*(SORT(.z_init_*))) + } + ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.") + app_shmem_regions : ALIGN_WITH_INPUT + { + __app_shmem_regions_start = .; + KEEP(*(SORT(.app_regions.*))); + __app_shmem_regions_end = .; + } > FLASH + k_p4wq_initparam_area : { _k_p4wq_initparam_list_start = .; KEEP(*(SORT_BY_NAME(._k_p4wq_initparam.static.*))); _k_p4wq_initparam_list_end = .;; } > FLASH + _static_thread_data_area : { __static_thread_data_list_start = .; KEEP(*(SORT_BY_NAME(.__static_thread_data.static.*))); __static_thread_data_list_end = .;; } > FLASH + device_deps : ALIGN_WITH_INPUT + { +__device_deps_start = .; +KEEP(*(SORT(.__device_deps_pass2*))); +__device_deps_end = .; + } > FLASH +can_driver_api_area : { _can_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_driver_api.static.*))); _can_driver_api_list_end = .;; } > FLASH +gpio_driver_api_area : { _gpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gpio_driver_api.static.*))); _gpio_driver_api_list_end = .;; } > FLASH +reset_driver_api_area : { _reset_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._reset_driver_api.static.*))); _reset_driver_api_list_end = .;; } > FLASH +shared_irq_driver_api_area : { _shared_irq_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._shared_irq_driver_api.static.*))); _shared_irq_driver_api_list_end = .;; } > FLASH +crypto_driver_api_area : { _crypto_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crypto_driver_api.static.*))); _crypto_driver_api_list_end = .;; } > FLASH +adc_driver_api_area : { _adc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._adc_driver_api.static.*))); _adc_driver_api_list_end = .;; } > FLASH +auxdisplay_driver_api_area : { _auxdisplay_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._auxdisplay_driver_api.static.*))); _auxdisplay_driver_api_list_end = .;; } > FLASH +bbram_driver_api_area : { _bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bbram_driver_api.static.*))); _bbram_driver_api_list_end = .;; } > FLASH +bt_hci_driver_api_area : { _bt_hci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bt_hci_driver_api.static.*))); _bt_hci_driver_api_list_end = .;; } > FLASH +cellular_driver_api_area : { _cellular_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._cellular_driver_api.static.*))); _cellular_driver_api_list_end = .;; } > FLASH +charger_driver_api_area : { _charger_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._charger_driver_api.static.*))); _charger_driver_api_list_end = .;; } > FLASH +clock_control_driver_api_area : { _clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._clock_control_driver_api.static.*))); _clock_control_driver_api_list_end = .;; } > FLASH +comparator_driver_api_area : { _comparator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._comparator_driver_api.static.*))); _comparator_driver_api_list_end = .;; } > FLASH +coredump_driver_api_area : { _coredump_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._coredump_driver_api.static.*))); _coredump_driver_api_list_end = .;; } > FLASH +counter_driver_api_area : { _counter_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._counter_driver_api.static.*))); _counter_driver_api_list_end = .;; } > FLASH +crc_driver_api_area : { _crc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crc_driver_api.static.*))); _crc_driver_api_list_end = .;; } > FLASH +dac_driver_api_area : { _dac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dac_driver_api.static.*))); _dac_driver_api_list_end = .;; } > FLASH +dai_driver_api_area : { _dai_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dai_driver_api.static.*))); _dai_driver_api_list_end = .;; } > FLASH +display_driver_api_area : { _display_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._display_driver_api.static.*))); _display_driver_api_list_end = .;; } > FLASH +dma_driver_api_area : { _dma_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dma_driver_api.static.*))); _dma_driver_api_list_end = .;; } > FLASH +edac_driver_api_area : { _edac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._edac_driver_api.static.*))); _edac_driver_api_list_end = .;; } > FLASH +eeprom_driver_api_area : { _eeprom_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._eeprom_driver_api.static.*))); _eeprom_driver_api_list_end = .;; } > FLASH +emul_bbram_driver_api_area : { _emul_bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_bbram_driver_api.static.*))); _emul_bbram_driver_api_list_end = .;; } > FLASH +fuel_gauge_emul_driver_api_area : { _fuel_gauge_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_emul_driver_api.static.*))); _fuel_gauge_emul_driver_api_list_end = .;; } > FLASH +emul_sensor_driver_api_area : { _emul_sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_sensor_driver_api.static.*))); _emul_sensor_driver_api_list_end = .;; } > FLASH +entropy_driver_api_area : { _entropy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._entropy_driver_api.static.*))); _entropy_driver_api_list_end = .;; } > FLASH +espi_driver_api_area : { _espi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_driver_api.static.*))); _espi_driver_api_list_end = .;; } > FLASH +espi_saf_driver_api_area : { _espi_saf_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_saf_driver_api.static.*))); _espi_saf_driver_api_list_end = .;; } > FLASH +flash_driver_api_area : { _flash_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._flash_driver_api.static.*))); _flash_driver_api_list_end = .;; } > FLASH +fpga_driver_api_area : { _fpga_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fpga_driver_api.static.*))); _fpga_driver_api_list_end = .;; } > FLASH +fuel_gauge_driver_api_area : { _fuel_gauge_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_driver_api.static.*))); _fuel_gauge_driver_api_list_end = .;; } > FLASH +gnss_driver_api_area : { _gnss_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gnss_driver_api.static.*))); _gnss_driver_api_list_end = .;; } > FLASH +haptics_driver_api_area : { _haptics_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._haptics_driver_api.static.*))); _haptics_driver_api_list_end = .;; } > FLASH +hwspinlock_driver_api_area : { _hwspinlock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._hwspinlock_driver_api.static.*))); _hwspinlock_driver_api_list_end = .;; } > FLASH +i2c_driver_api_area : { _i2c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_driver_api.static.*))); _i2c_driver_api_list_end = .;; } > FLASH +i2c_target_driver_api_area : { _i2c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_target_driver_api.static.*))); _i2c_target_driver_api_list_end = .;; } > FLASH +i2s_driver_api_area : { _i2s_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2s_driver_api.static.*))); _i2s_driver_api_list_end = .;; } > FLASH +i3c_driver_api_area : { _i3c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_driver_api.static.*))); _i3c_driver_api_list_end = .;; } > FLASH +ipm_driver_api_area : { _ipm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ipm_driver_api.static.*))); _ipm_driver_api_list_end = .;; } > FLASH +led_driver_api_area : { _led_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_driver_api.static.*))); _led_driver_api_list_end = .;; } > FLASH +led_strip_driver_api_area : { _led_strip_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_strip_driver_api.static.*))); _led_strip_driver_api_list_end = .;; } > FLASH +lora_driver_api_area : { _lora_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._lora_driver_api.static.*))); _lora_driver_api_list_end = .;; } > FLASH +mbox_driver_api_area : { _mbox_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mbox_driver_api.static.*))); _mbox_driver_api_list_end = .;; } > FLASH +mdio_driver_api_area : { _mdio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mdio_driver_api.static.*))); _mdio_driver_api_list_end = .;; } > FLASH +mipi_dbi_driver_api_area : { _mipi_dbi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dbi_driver_api.static.*))); _mipi_dbi_driver_api_list_end = .;; } > FLASH +mipi_dsi_driver_api_area : { _mipi_dsi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dsi_driver_api.static.*))); _mipi_dsi_driver_api_list_end = .;; } > FLASH +mspi_driver_api_area : { _mspi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mspi_driver_api.static.*))); _mspi_driver_api_list_end = .;; } > FLASH +opamp_driver_api_area : { _opamp_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._opamp_driver_api.static.*))); _opamp_driver_api_list_end = .;; } > FLASH +peci_driver_api_area : { _peci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._peci_driver_api.static.*))); _peci_driver_api_list_end = .;; } > FLASH +ps2_driver_api_area : { _ps2_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ps2_driver_api.static.*))); _ps2_driver_api_list_end = .;; } > FLASH +ptp_clock_driver_api_area : { _ptp_clock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ptp_clock_driver_api.static.*))); _ptp_clock_driver_api_list_end = .;; } > FLASH +pwm_driver_api_area : { _pwm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pwm_driver_api.static.*))); _pwm_driver_api_list_end = .;; } > FLASH +regulator_parent_driver_api_area : { _regulator_parent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_parent_driver_api.static.*))); _regulator_parent_driver_api_list_end = .;; } > FLASH +regulator_driver_api_area : { _regulator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_driver_api.static.*))); _regulator_driver_api_list_end = .;; } > FLASH +retained_mem_driver_api_area : { _retained_mem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._retained_mem_driver_api.static.*))); _retained_mem_driver_api_list_end = .;; } > FLASH +rtc_driver_api_area : { _rtc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._rtc_driver_api.static.*))); _rtc_driver_api_list_end = .;; } > FLASH +sdhc_driver_api_area : { _sdhc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sdhc_driver_api.static.*))); _sdhc_driver_api_list_end = .;; } > FLASH +sensor_driver_api_area : { _sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sensor_driver_api.static.*))); _sensor_driver_api_list_end = .;; } > FLASH +smbus_driver_api_area : { _smbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._smbus_driver_api.static.*))); _smbus_driver_api_list_end = .;; } > FLASH +spi_driver_api_area : { _spi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._spi_driver_api.static.*))); _spi_driver_api_list_end = .;; } > FLASH +stepper_driver_api_area : { _stepper_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_driver_api.static.*))); _stepper_driver_api_list_end = .;; } > FLASH +syscon_driver_api_area : { _syscon_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._syscon_driver_api.static.*))); _syscon_driver_api_list_end = .;; } > FLASH +tee_driver_api_area : { _tee_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tee_driver_api.static.*))); _tee_driver_api_list_end = .;; } > FLASH +video_driver_api_area : { _video_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._video_driver_api.static.*))); _video_driver_api_list_end = .;; } > FLASH +virtio_driver_api_area : { _virtio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._virtio_driver_api.static.*))); _virtio_driver_api_list_end = .;; } > FLASH +w1_driver_api_area : { _w1_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._w1_driver_api.static.*))); _w1_driver_api_list_end = .;; } > FLASH +wdt_driver_api_area : { _wdt_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wdt_driver_api.static.*))); _wdt_driver_api_list_end = .;; } > FLASH +can_transceiver_driver_api_area : { _can_transceiver_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_transceiver_driver_api.static.*))); _can_transceiver_driver_api_list_end = .;; } > FLASH +nrf_clock_control_driver_api_area : { _nrf_clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._nrf_clock_control_driver_api.static.*))); _nrf_clock_control_driver_api_list_end = .;; } > FLASH +i3c_target_driver_api_area : { _i3c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_target_driver_api.static.*))); _i3c_target_driver_api_list_end = .;; } > FLASH +its_driver_api_area : { _its_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._its_driver_api.static.*))); _its_driver_api_list_end = .;; } > FLASH +vtd_driver_api_area : { _vtd_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._vtd_driver_api.static.*))); _vtd_driver_api_list_end = .;; } > FLASH +renesas_elc_driver_api_area : { _renesas_elc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._renesas_elc_driver_api.static.*))); _renesas_elc_driver_api_list_end = .;; } > FLASH +tgpio_driver_api_area : { _tgpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tgpio_driver_api.static.*))); _tgpio_driver_api_list_end = .;; } > FLASH +pcie_ctrl_driver_api_area : { _pcie_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ctrl_driver_api.static.*))); _pcie_ctrl_driver_api_list_end = .;; } > FLASH +pcie_ep_driver_api_area : { _pcie_ep_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ep_driver_api.static.*))); _pcie_ep_driver_api_list_end = .;; } > FLASH +psi5_driver_api_area : { _psi5_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._psi5_driver_api.static.*))); _psi5_driver_api_list_end = .;; } > FLASH +sent_driver_api_area : { _sent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sent_driver_api.static.*))); _sent_driver_api_list_end = .;; } > FLASH +svc_driver_api_area : { _svc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._svc_driver_api.static.*))); _svc_driver_api_list_end = .;; } > FLASH +uart_driver_api_area : { _uart_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uart_driver_api.static.*))); _uart_driver_api_list_end = .;; } > FLASH +bc12_emul_driver_api_area : { _bc12_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_emul_driver_api.static.*))); _bc12_emul_driver_api_list_end = .;; } > FLASH +bc12_driver_api_area : { _bc12_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_driver_api.static.*))); _bc12_driver_api_list_end = .;; } > FLASH +usbc_ppc_driver_api_area : { _usbc_ppc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_ppc_driver_api.static.*))); _usbc_ppc_driver_api_list_end = .;; } > FLASH +tcpc_driver_api_area : { _tcpc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tcpc_driver_api.static.*))); _tcpc_driver_api_list_end = .;; } > FLASH +usbc_vbus_driver_api_area : { _usbc_vbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_vbus_driver_api.static.*))); _usbc_vbus_driver_api_list_end = .;; } > FLASH +ivshmem_driver_api_area : { _ivshmem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ivshmem_driver_api.static.*))); _ivshmem_driver_api_list_end = .;; } > FLASH +ethphy_driver_api_area : { _ethphy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ethphy_driver_api.static.*))); _ethphy_driver_api_list_end = .;; } > FLASH +ztest : +{ + _ztest_expected_result_entry_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*))); _ztest_expected_result_entry_list_end = .;; + _ztest_suite_node_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*))); _ztest_suite_node_list_end = .;; + _ztest_unit_test_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*))); _ztest_unit_test_list_end = .;; + _ztest_test_rule_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*))); _ztest_test_rule_list_end = .;; +} > FLASH + init_array : + { + __zephyr_init_array_start = .; + KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) + SORT_BY_INIT_PRIORITY(.ctors.*))) + KEEP (*(.init_array .ctors)) + __zephyr_init_array_end = .; + } > FLASH + ASSERT(__zephyr_init_array_start == __zephyr_init_array_end, + "GNU-style constructors required but STATIC_INIT_GNU not enabled") + bt_l2cap_fixed_chan_area : { _bt_l2cap_fixed_chan_list_start = .; KEEP(*(SORT_BY_NAME(._bt_l2cap_fixed_chan.static.*))); _bt_l2cap_fixed_chan_list_end = .;; } > FLASH + bt_gatt_service_static_area : { _bt_gatt_service_static_list_start = .; KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*))); _bt_gatt_service_static_list_end = .;; } > FLASH + log_strings_area : { _log_strings_list_start = .; KEEP(*(SORT_BY_NAME(._log_strings.static.*))); _log_strings_list_end = .;; } > FLASH + log_stmesp_ptr_area : { _log_stmesp_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_ptr.static.*))); _log_stmesp_ptr_list_end = .;; } > FLASH + log_stmesp_str_area : { _log_stmesp_str_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_str.static.*))); _log_stmesp_str_list_end = .;; } > FLASH + log_const_area : { _log_const_list_start = .; KEEP(*(SORT_BY_NAME(._log_const.static.*))); _log_const_list_end = .;; } > FLASH + log_backend_area : { _log_backend_list_start = .; KEEP(*(SORT_BY_NAME(._log_backend.static.*))); _log_backend_list_end = .;; } > FLASH + log_link_area : { _log_link_list_start = .; KEEP(*(SORT_BY_NAME(._log_link.static.*))); _log_link_list_end = .;; } > FLASH + tracing_backend_area : { _tracing_backend_list_start = .; KEEP(*(SORT_BY_NAME(._tracing_backend.static.*))); _tracing_backend_list_end = .;; } > FLASH + zephyr_dbg_info : ALIGN_WITH_INPUT + { + KEEP(*(".dbg_thread_info")); + } > FLASH + intc_table_area : { _intc_table_list_start = .; KEEP(*(SORT_BY_NAME(._intc_table.static.*))); _intc_table_list_end = .;; } > FLASH + symbol_to_keep : ALIGN_WITH_INPUT + { + __symbol_to_keep_start = .; + KEEP(*(SORT(.symbol_to_keep*))); + __symbol_to_keep_end = .; + } > FLASH + shell_area : { _shell_list_start = .; KEEP(*(SORT_BY_NAME(._shell.static.*))); _shell_list_end = .;; } > FLASH + shell_root_cmds_area : { _shell_root_cmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_root_cmds.static.*))); _shell_root_cmds_list_end = .;; } > FLASH + shell_subcmds_area : { _shell_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_subcmds.static.*))); _shell_subcmds_list_end = .;; } > FLASH + shell_dynamic_subcmds_area : { _shell_dynamic_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_dynamic_subcmds.static.*))); _shell_dynamic_subcmds_list_end = .;; } > FLASH + cfb_font_area : { _cfb_font_list_start = .; KEEP(*(SORT_BY_NAME(._cfb_font.static.*))); _cfb_font_list_end = .;; } > FLASH + tdata : ALIGN_WITH_INPUT + { + *(.tdata .tdata.* .gnu.linkonce.td.*); + } > FLASH + tbss (NOLOAD) : ALIGN_WITH_INPUT + { + *(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon); + } > FLASH + PROVIDE(__tdata_start = LOADADDR(tdata)); + PROVIDE(__tdata_align = ALIGNOF(tdata)); + PROVIDE(__tdata_size = (SIZEOF(tdata) + __tdata_align - 1) & ~(__tdata_align - 1)); + PROVIDE(__tdata_end = __tdata_start + __tdata_size); + PROVIDE(__tbss_align = ALIGNOF(tbss)); + PROVIDE(__tbss_start = ADDR(tbss)); + PROVIDE(__tbss_size = (SIZEOF(tbss) + __tbss_align - 1) & ~(__tbss_align - 1)); + PROVIDE(__tbss_end = __tbss_start + __tbss_size); + PROVIDE(__tls_start = __tdata_start); + PROVIDE(__tls_end = __tbss_end); + PROVIDE(__tls_size = __tbss_end - __tdata_start); + rodata : + { + *(.rodata) + *(".rodata.*") + *(.gnu.linkonce.r.*) + . = ALIGN(4); + } > FLASH + PROVIDE(__eh_frame_start = 0); + PROVIDE(__eh_frame_end = 0); + PROVIDE(__eh_frame_hdr_start = 0); + PROVIDE(__eh_frame_hdr_end = 0); + /DISCARD/ : { *(.eh_frame) } + __rodata_region_end = .; + . = ALIGN(_region_min_align); + __rom_region_end = __rom_region_start + . - ADDR(rom_start); + __rom_region_size = __rom_region_end - __rom_region_start; + + /DISCARD/ : { + *(.got.plt) + *(.igot.plt) + *(.got) + *(.igot) + } + + . = 0x20000000; + . = ALIGN(_region_min_align); + _image_ram_start = .; +.ramfunc : ALIGN_WITH_INPUT +{ + __ramfunc_region_start = .; + . = ALIGN(_region_min_align); + __ramfunc_start = .; + *(.ramfunc) + *(".ramfunc.*") + . = ALIGN(_region_min_align); + __ramfunc_end = .; +} > RAM AT > FLASH +__ramfunc_size = __ramfunc_end - __ramfunc_start; +__ramfunc_load_start = LOADADDR(.ramfunc); + + datas : ALIGN_WITH_INPUT + { + __data_region_start = .; + __data_start = .; + *(.data) + *(".data.*") + *(".kernel.*") + __data_end = .; + } > RAM AT > FLASH + __data_size = __data_end - __data_start; + __data_load_start = LOADADDR(datas); + __data_region_load_start = LOADADDR(datas); + device_states : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __device_states_start = .; + KEEP(*(".z_devstate")); + KEEP(*(".z_devstate.*")); + __device_states_end = .; + . = ALIGN(4); + } > RAM AT > FLASH + log_mpsc_pbuf_area : ALIGN_WITH_INPUT { _log_mpsc_pbuf_list_start = .; *(SORT_BY_NAME(._log_mpsc_pbuf.static.*)); _log_mpsc_pbuf_list_end = .;; } > RAM AT > FLASH + log_msg_ptr_area : ALIGN_WITH_INPUT { _log_msg_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_msg_ptr.static.*))); _log_msg_ptr_list_end = .;; } > RAM AT > FLASH + log_dynamic_area : ALIGN_WITH_INPUT { _log_dynamic_list_start = .; KEEP(*(SORT_BY_NAME(._log_dynamic.static.*))); _log_dynamic_list_end = .;; } > RAM AT > FLASH + k_timer_area : ALIGN_WITH_INPUT { _k_timer_list_start = .; *(SORT_BY_NAME(._k_timer.static.*)); _k_timer_list_end = .;; } > RAM AT > FLASH + k_mem_slab_area : ALIGN_WITH_INPUT { _k_mem_slab_list_start = .; *(SORT_BY_NAME(._k_mem_slab.static.*)); _k_mem_slab_list_end = .;; } > RAM AT > FLASH + k_heap_area : ALIGN_WITH_INPUT { _k_heap_list_start = .; *(SORT_BY_NAME(._k_heap.static.*)); _k_heap_list_end = .;; } > RAM AT > FLASH + k_mutex_area : ALIGN_WITH_INPUT { _k_mutex_list_start = .; *(SORT_BY_NAME(._k_mutex.static.*)); _k_mutex_list_end = .;; } > RAM AT > FLASH + k_stack_area : ALIGN_WITH_INPUT { _k_stack_list_start = .; *(SORT_BY_NAME(._k_stack.static.*)); _k_stack_list_end = .;; } > RAM AT > FLASH + k_msgq_area : ALIGN_WITH_INPUT { _k_msgq_list_start = .; *(SORT_BY_NAME(._k_msgq.static.*)); _k_msgq_list_end = .;; } > RAM AT > FLASH + k_mbox_area : ALIGN_WITH_INPUT { _k_mbox_list_start = .; *(SORT_BY_NAME(._k_mbox.static.*)); _k_mbox_list_end = .;; } > RAM AT > FLASH + k_pipe_area : ALIGN_WITH_INPUT { _k_pipe_list_start = .; *(SORT_BY_NAME(._k_pipe.static.*)); _k_pipe_list_end = .;; } > RAM AT > FLASH + k_sem_area : ALIGN_WITH_INPUT { _k_sem_list_start = .; *(SORT_BY_NAME(._k_sem.static.*)); _k_sem_list_end = .;; } > RAM AT > FLASH + k_event_area : ALIGN_WITH_INPUT { _k_event_list_start = .; *(SORT_BY_NAME(._k_event.static.*)); _k_event_list_end = .;; } > RAM AT > FLASH + k_queue_area : ALIGN_WITH_INPUT { _k_queue_list_start = .; *(SORT_BY_NAME(._k_queue.static.*)); _k_queue_list_end = .;; } > RAM AT > FLASH + k_fifo_area : ALIGN_WITH_INPUT { _k_fifo_list_start = .; *(SORT_BY_NAME(._k_fifo.static.*)); _k_fifo_list_end = .;; } > RAM AT > FLASH + k_lifo_area : ALIGN_WITH_INPUT { _k_lifo_list_start = .; *(SORT_BY_NAME(._k_lifo.static.*)); _k_lifo_list_end = .;; } > RAM AT > FLASH + k_condvar_area : ALIGN_WITH_INPUT { _k_condvar_list_start = .; *(SORT_BY_NAME(._k_condvar.static.*)); _k_condvar_list_end = .;; } > RAM AT > FLASH + sys_mem_blocks_ptr_area : ALIGN_WITH_INPUT { _sys_mem_blocks_ptr_list_start = .; *(SORT_BY_NAME(._sys_mem_blocks_ptr.static.*)); _sys_mem_blocks_ptr_list_end = .;; } > RAM AT > FLASH + net_buf_pool_area : ALIGN_WITH_INPUT { _net_buf_pool_list_start = .; KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*))); _net_buf_pool_list_end = .;; } > RAM AT > FLASH + usb_descriptor : ALIGN_WITH_INPUT + { + __usb_descriptor_start = .; + *(".usb.descriptor") + KEEP(*(SORT_BY_NAME(".usb.descriptor*"))) + __usb_descriptor_end = .; + } > RAM AT > FLASH + usb_cfg_data_area : ALIGN_WITH_INPUT { _usb_cfg_data_list_start = .; KEEP(*(SORT_BY_NAME(._usb_cfg_data.static.*))); _usb_cfg_data_list_end = .;; } > RAM AT > FLASH + __data_region_end = .; +.intList : +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} > IDT_LIST + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } + .stab.excl 0 : { *(.stab.excl) } + .stab.exclstr 0 : { *(.stab.exclstr) } + .stab.index 0 : { *(.stab.index) } + .stab.indexstr 0 : { *(.stab.indexstr) } + .gnu.build.attributes 0 : { *(.gnu.build.attributes .gnu.build.attributes.*) } + .comment 0 : { *(.comment) } + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + .debug_ranges 0 : { *(.debug_ranges) } + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .debug_sup 0 : { *(.debug_sup) } + /DISCARD/ : { *(.note.GNU-stack) } + .ARM.attributes 0 : + { + KEEP(*(.ARM.attributes)) + KEEP(*(.gnu.attributes)) + } + SRAM0 (NOLOAD) : { __SRAM0_start = .; KEEP(*(SRAM0)) KEEP(*(SRAM0.*)) __SRAM0_end = .; } > SRAM0 __SRAM0_size = __SRAM0_end - __SRAM0_start; __SRAM0_load_start = LOADADDR(SRAM0); +.last_section : +{ + KEEP(*(.last_section)) +} > FLASH +_flash_used = LOADADDR(.last_section) + SIZEOF(.last_section) - __rom_region_start; + bss (NOLOAD) : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __bss_start = .; + __kernel_ram_start = .; + *(.bss) + *(".bss.*") + *(COMMON) + *(".kernel_bss.*") + __bss_end = ALIGN(4); + } > RAM AT > RAM +noinit (NOLOAD) : +{ + *(.noinit) + *(".noinit.*") +} > RAM AT > RAM + __kernel_ram_end = 0x20000000 + (144 * 1K); + __kernel_ram_size = __kernel_ram_end - __kernel_ram_start; + .last_ram_section (NOLOAD) : + { + _image_ram_end = .; + _image_ram_size = _image_ram_end - _image_ram_start; + _end = .; + z_mapped_end = .; + } > RAM AT > RAM + + } diff --git a/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd.dep b/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd.dep new file mode 100644 index 0000000..c6acfad --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/linker_zephyr_pre0.cmd.dep @@ -0,0 +1,87 @@ +linker_zephyr_pre0.cmd: \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/autoconf.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/sections.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/section_tags.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/gcc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree.h \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/devicetree_generated.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/irq_multilevel.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\lib\gcc\arm-zephyr-eabi\12.2.0\include\stdbool.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/io-channels.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/clocks.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/gpio.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/spi.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/dma.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/pwms.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/ordinals.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/pinctrl.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/can.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/reset.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/mbox.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/port-endpoint.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/display.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/devicetree/hwspinlock.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/devicetree_regions.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-defs.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/toolchain/common.h \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/zephyr/offsets.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/mm.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel/internal/mm.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/linker-devnull.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/rel-sections.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-start.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\rom_start_address.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\fill_with_zeros.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\rom_start_offset.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\arm\core\vector_table.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/irq-vector-table-section.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\arm\core\cortex_m\vector_table_pad.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-text.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/iterable_sections.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/device-deps.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/device-api-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-interrupt-controllers.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rom-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/thread-local-storage.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rodata.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\arm\core\swi_tables.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-rom.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ram-sections.ld \ + c:\users\iteedi\zephyrproject\zephyr\arch\common\ramfunc.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-ramfunc-section.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-rwdata.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-ram.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-data.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-data-sections.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/intlist.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/debug-sections.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/common-noinit.ld \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/include/generated/snippets-noinit.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/kobject-priv-stacks.ld \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/linker/ram-end.ld diff --git a/firmware/canfd_cdc_composite/build/zephyr/misc/generated/configs.c b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/configs.c new file mode 100644 index 0000000..39eeb46 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/configs.c @@ -0,0 +1,439 @@ +/* file is auto-generated, do not modify ! */ + +#include + +GEN_ABS_SYM_BEGIN (_ConfigAbsSyms) + +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAIN_STACK_SIZE, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_IRQS, 31); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, 64000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_SIZE, 512); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_BASE_ADDRESS, 0x8000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MP_MAX_NUM_CPUS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IDLE_STACK_SIZE, 256); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISR_STACK_SIZE, 2048); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_TICKS_PER_SEC, 10000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_BIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ROM_START_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_ENTRY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_FLASH_LOAD_OFFSET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_HAS_ARM_MPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TICKLESS_KERNEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CORTEX_M_SYSTICK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_INIT_PRIORITY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STM32_BACKUP_PROTECTION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_METAIRQ_PRIORITIES, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_PREEMPT_PRIORITIES, 15); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_HEX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_IRQ_VECTOR_TABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_ISR_TABLES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICE_SIZE, 20); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_LOAD_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_EXISTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DCACHE_LINE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RESET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SW_ISR_TABLE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_DOMAIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD_STACK_SIZE, 768); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_USE_RUNTIME_CONFIGURE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EARLY_INIT_HOOK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ATOMIC_OPERATIONS_C, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_SW_ISR_TABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_IRQ_START_VECTOR, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISR_TABLES_LOCAL_DECLARATION_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_MEM_POOL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MULTITHREADING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_USE_RELAX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ICACHE_LINE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ARM_CORTEX_M0__ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ARM_V6M_NVIC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_FIXED_CLOCK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_GPIO_KEYS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_GPIO_LEDS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_MMIO_SRAM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_EXTI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_FDCAN_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_GPIO_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_LPTIM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_NV_FLASH_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_PINCTRL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_RCC_RCTL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_RTC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_TEMP_CAL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_UART_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_USART_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_USB_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_VBAT_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_VREF_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32_WATCHDOG_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32F0_RCC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32G0_EXTI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_USB_NOP_XCEIV_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ACPICA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_CMSIS_CORE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_DSP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_NN_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_6_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_CMSIS_CORE_M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_FATFS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ADI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_AFBR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_AMBIQ_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ATMEL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_INFINEON_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_INTEL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MICROCHIP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_NORDIC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NUVOTON_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_NXP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPENISA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_QUICKLOGIC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_RENESAS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_SIFLI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_SILABS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ST_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_STM32_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_TDK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_TELINK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_WCH_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_XTENSA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HOSTAP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBLC3_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBMCTP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBMETAL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBSBC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LITTLEFS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LORAMAC_NODE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LVGL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MBEDTLS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MCUBOOT_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MIPI_SYS_T_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NANOPB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_WIFI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPEN_AMP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPENTHREAD_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PERCEPIO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PICOLIBC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_SEGGER_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_SEGGER_RTT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ZCBOR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_STM32CUBE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_STM32_HAL_PCD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_STM32_HAL_PCD_EX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_STM32_LL_USB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_STM32_LL_UTILS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_REVISION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_TARGET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_EWS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_EWS_STM32G0B1XX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_QUALIFIERS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SERIES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FAMILY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FAMILY_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SERIES_STM32G0X, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_STM32G0B1XX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SWJ_ANALOG_PRIORITY, 49); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_STM32_FLASH_PREFETCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISA_THUMB2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSEMBLER_ISA_THUMB2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_ISA_THUMB2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STACK_ALIGN_DOUBLE_WORD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FAULT_DUMP, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FP16, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FP16_IEEE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M0PLUS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_SYSTICK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_CORTEX_M_HAS_VTOR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARMV6_M_ARMV8_M_BASELINE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_IS_SET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_ROM_OFFSET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LITTLE_ENDIAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_SIZE, 144); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_BASE_ADDRESS, 0x20000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_PRIV_STACKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_DEVICE_STATE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EXCEPTION_DEBUG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_RAMFUNC_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_VECTOR_TABLE_RELOCATION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP_THREADS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_ROM_START, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_SUSPEND_TO_RAM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_THREAD_ABORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_CODE_DATA_RELOCATION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_HAS_MPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_COOP_PRIORITIES, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAIN_THREAD_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COOP_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PREEMPT_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRIORITY_CEILING, -127); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SCHED_SIMPLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WAITQ_SIMPLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LIBC_ERRNO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ERRNO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CURRENT_THREAD_USE_TLS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_BANNER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_BANNER_STRING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_DELAY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_PRIORITY, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BARRIER_OPERATIONS_ARCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICE_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_MBOX_ASYNC_MSGS, 10); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HEAP_MEM_POOL_SIZE, 8192); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SWAP_NONATOMIC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMEOUT_64BIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS, 365); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DEVICE_DEINIT_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_OBJECTS, 30); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_LIBC, 35); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_DEVICE, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_APPLICATION_INIT_PRIORITY, 90); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_INIT_PRIORITY, 80); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_DEFAULT_BITRATE, 125000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_DEFAULT_BITRATE_DATA, 1000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_SAMPLE_POINT_MARGIN, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_FD_MODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_MAX_STD_ID_FILTER, 28); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_MAX_EXT_ID_FILTER, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_STM32_FDCAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_MCAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CAN_TRANSCEIVER_INIT_PRIORITY, 45); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_STM32_CUBE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_INPUT_MAX_LINE_LEN, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_INIT_PRIORITY, 60); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HWINFO_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EXTI_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_INTC_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_KEEP_SLEEP_STATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_STM32_REMAP_INIT_PRIORITY, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RESET_INIT_PRIORITY, 35); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RESET_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_SUPPORT_INTERRUPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_INIT_PRIORITY, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_LINE_CTRL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMER_HAS_64BIT_CYCLE_COUNTER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_CLOCK_INIT_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TICKLESS_CAPABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CORTEX_M_SYSTICK_INSTALL_ISR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CORTEX_M_SYSTICK_64BIT_CYCLE_COUNTER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CORTEX_M_SYSTICK_LPM_TIMER_NONE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_REMOTE_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DC_STM32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DC_STM32_CLOCK_CHECK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DRIVER_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DRIVER_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FULL_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MINIMAL_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NEWLIB_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_NEWLIB_LIBC_NANO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_ABORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_TIME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_MALLOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_CALLOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_REALLOCARRAY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_USE_TOOLCHAIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_IO_LONG_LONG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STDOUT_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NEED_LIBC_MEM_PARTITION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_ALLOC_LOOPS, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_ARRAY_SIZE, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_SMALL_ONLY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZVFS_OPEN_MAX, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSC_PBUF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_POWEROFF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_COMPLETE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_FULL_INTEGRAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_CONVERT_CHECK_PTR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_LOAD_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_AEP_CHOICE_ZEPHYR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_C_LANG_SUPPORT_R, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_C_LIB_EXT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LIBGCC_RTLIB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RING_BUFFER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRINTK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EARLY_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSERT_VERBOSE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_LOAD_LOG_PERIODICALLY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_CORE_INIT_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_MODE_DEFERRED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_FLUSH_SLEEP_US, 10000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_DEFAULT_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_OVERRIDE_LEVEL, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_MAX_LEVEL, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PRINTK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_MODE_OVERFLOW, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD, 10); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD_SLEEP_MS, 1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BUFFER_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_TRACE_SHORT_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_FUNC_NAME_PREFIX_DBG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SHOW_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SHOW_LEVEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SHOW_COLOR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_TAG_MAX_LEN, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_BUFFER_SIZE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_AUTOSTART, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_USE_VLA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_SIMPLE_MSG_OPTIMIZE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_FAILURE_REPORT_PERIOD, 1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_RATELIMIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_RATELIMIT_INTERVAL_MS, 5000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_OUTPUT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_PM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMER_RANDOM_INITIAL_STATE, 123456789); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COVERAGE_DUMP_PATH_EXCLUDE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_STACK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_VID, 0x1d50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_PID, 0x606f); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_MANUFACTURER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_PRODUCT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_DEVICE_SN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_MAX_NUM_TRANSFERS, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_REQUEST_BUFFER_SIZE, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_MAX_ALT_SETTING, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_NUMOF_EP_WRITE_RETRIES, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_SELF_POWERED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USB_MAX_POWER, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_0_17, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_ORPHAN_SECTION_WARN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_LOAD_SIZE, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ROM_END_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LD_LINKER_SCRIPT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LD_LINKER_TEMPLATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_SORT_BY_ALIGNMENT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_LAST_SECTION_ID, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_LAST_SECTION_ID_PATTERN, 0xE015E015); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_ITERABLE_SUBALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_DEVNULL_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STD_C99, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SIZE_OPTIMIZATIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_TRACK_MACRO_EXPANSION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_COLOR_DIAGNOSTICS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FORTIFY_SOURCE_COMPILE_TIME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_OPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RUNTIME_ERROR_CHECKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_BIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_OUTPUT_STAT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_OUTPUT_PRINT_MEMORY_USAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_GAP_FILL_PATTERN, 0xFF); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_STRIP_PATHS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CHECK_INIT_PRIORITIES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DEPRECATED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WARN_DEPRECATED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ENFORCE_ZEPHYR_STDINT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LEGACY_GENERATED_INCLUDE_PATH, 1); + +GEN_ABS_SYM_END diff --git a/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json new file mode 100644 index 0000000..52016aa --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/struct_tags.json @@ -0,0 +1,100 @@ +{ + "__net_socket": [ + "modem_socket", + "net_context", + "dispatcher_context", + "spair", + "net_mgmt_socket", + "tls_context", + "websocket_context" + ], + "__subsystem": [ + "can_driver_api", + "gpio_driver_api", + "reset_driver_api", + "shared_irq_driver_api", + "crypto_driver_api", + "adc_driver_api", + "auxdisplay_driver_api", + "bbram_driver_api", + "bt_hci_driver_api", + "cellular_driver_api", + "charger_driver_api", + "clock_control_driver_api", + "comparator_driver_api", + "coredump_driver_api", + "counter_driver_api", + "crc_driver_api", + "dac_driver_api", + "dai_driver_api", + "display_driver_api", + "dma_driver_api", + "edac_driver_api", + "eeprom_driver_api", + "emul_bbram_driver_api", + "fuel_gauge_emul_driver_api", + "emul_sensor_driver_api", + "entropy_driver_api", + "espi_driver_api", + "espi_saf_driver_api", + "flash_driver_api", + "fpga_driver_api", + "fuel_gauge_driver_api", + "gnss_driver_api", + "haptics_driver_api", + "hwspinlock_driver_api", + "i2c_driver_api", + "i2c_target_driver_api", + "i2s_driver_api", + "i3c_driver_api", + "ipm_driver_api", + "led_driver_api", + "led_strip_driver_api", + "lora_driver_api", + "mbox_driver_api", + "mdio_driver_api", + "mipi_dbi_driver_api", + "mipi_dsi_driver_api", + "mspi_driver_api", + "opamp_driver_api", + "peci_driver_api", + "ps2_driver_api", + "ptp_clock_driver_api", + "pwm_driver_api", + "regulator_parent_driver_api", + "regulator_driver_api", + "retained_mem_driver_api", + "rtc_driver_api", + "sdhc_driver_api", + "sensor_driver_api", + "smbus_driver_api", + "spi_driver_api", + "stepper_driver_api", + "syscon_driver_api", + "tee_driver_api", + "video_driver_api", + "virtio_driver_api", + "w1_driver_api", + "wdt_driver_api", + "can_transceiver_driver_api", + "nrf_clock_control_driver_api", + "i3c_target_driver_api", + "its_driver_api", + "vtd_driver_api", + "renesas_elc_driver_api", + "tgpio_driver_api", + "pcie_ctrl_driver_api", + "pcie_ep_driver_api", + "psi5_driver_api", + "sent_driver_api", + "svc_driver_api", + "uart_driver_api", + "bc12_emul_driver_api", + "bc12_driver_api", + "usbc_ppc_driver_api", + "tcpc_driver_api", + "usbc_vbus_driver_api", + "ivshmem_driver_api", + "ethphy_driver_api" + ] +} \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls.json b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls.json new file mode 100644 index 0000000..b0fd0ee --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls.json @@ -0,0 +1,4674 @@ +[ + [ + [ + "int zephyr_read_stdin", + "char *buf, int nbytes" + ], + "libc-hooks.h", + true + ], + [ + [ + "int zephyr_write_stdout", + "const void *buf, int nbytes" + ], + "libc-hooks.h", + true + ], + [ + [ + "int zephyr_fputc", + "int c, FILE * stream" + ], + "libc-hooks.h", + true + ], + [ + [ + "size_t zephyr_fwrite", + "const void *ZRESTRICT ptr, size_t size,\n\t\t\t\tsize_t nitems, FILE *ZRESTRICT stream" + ], + "libc-hooks.h", + true + ], + [ + [ + "void sys_clock_getrtoffset", + "struct timespec *tp" + ], + "clock.h", + true + ], + [ + [ + "int sys_clock_settime", + "int clock_id, const struct timespec *tp" + ], + "clock.h", + true + ], + [ + [ + "int sys_clock_nanosleep", + "int clock_id, int flags, const struct timespec *rqtp,\n\t\t\t\t struct timespec *rmtp" + ], + "clock.h", + true + ], + [ + [ + "int z_sys_mutex_kernel_lock", + "struct sys_mutex *mutex,\n\t\t\t\t k_timeout_t timeout" + ], + "mutex.h", + true + ], + [ + [ + "int z_sys_mutex_kernel_unlock", + "struct sys_mutex *mutex" + ], + "mutex.h", + true + ], + [ + [ + "void z_log_msg_simple_create_0", + "const void *source, uint32_t level,\n\t\t\t\t\t const char *fmt" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_simple_create_1", + "const void *source, uint32_t level,\n\t\t\t\t\t const char *fmt, uint32_t arg" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_simple_create_2", + "const void *source, uint32_t level,\n\t\t\t\t\t const char *fmt, uint32_t arg0, uint32_t arg1" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_static_create", + "const void *source,\n\t\t\t\t\tconst struct log_msg_desc desc,\n\t\t\t\t\tuint8_t *package, const void *data" + ], + "log_msg.h", + true + ], + [ + [ + "void log_panic", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "bool log_process", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_buffered_cnt", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_filter_set", + "struct log_backend const *const backend,\n\t\t\t\t uint32_t domain_id, int16_t source_id,\n\t\t\t\t uint32_t level" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_frontend_filter_set", + "int16_t source_id, uint32_t level" + ], + "log_ctrl.h", + true + ], + [ + [ + "int can_get_core_clock", + "const struct device *dev, uint32_t *rate" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_get_bitrate_min", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_get_bitrate_max", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "const struct can_timing *can_get_timing_min", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "const struct can_timing *can_get_timing_max", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int can_calc_timing", + "const struct device *dev, struct can_timing *res,\n\t\t\t uint32_t bitrate, uint16_t sample_pnt" + ], + "can.h", + true + ], + [ + [ + "const struct can_timing *can_get_timing_data_min", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "const struct can_timing *can_get_timing_data_max", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int can_calc_timing_data", + "const struct device *dev, struct can_timing *res,\n\t\t\t\t uint32_t bitrate, uint16_t sample_pnt" + ], + "can.h", + true + ], + [ + [ + "int can_set_timing_data", + "const struct device *dev,\n\t\t\t\t const struct can_timing *timing_data" + ], + "can.h", + true + ], + [ + [ + "int can_set_bitrate_data", + "const struct device *dev, uint32_t bitrate_data" + ], + "can.h", + true + ], + [ + [ + "int can_set_timing", + "const struct device *dev,\n\t\t\t const struct can_timing *timing" + ], + "can.h", + true + ], + [ + [ + "int can_get_capabilities", + "const struct device *dev, can_mode_t *cap" + ], + "can.h", + true + ], + [ + [ + "const struct device *can_get_transceiver", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int can_start", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int can_stop", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int can_set_mode", + "const struct device *dev, can_mode_t mode" + ], + "can.h", + true + ], + [ + [ + "can_mode_t can_get_mode", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int can_set_bitrate", + "const struct device *dev, uint32_t bitrate" + ], + "can.h", + true + ], + [ + [ + "int can_send", + "const struct device *dev, const struct can_frame *frame,\n\t\t k_timeout_t timeout, can_tx_callback_t callback,\n\t\t void *user_data" + ], + "can.h", + true + ], + [ + [ + "int can_add_rx_filter_msgq", + "const struct device *dev, struct k_msgq *msgq,\n\t\t\t\t const struct can_filter *filter" + ], + "can.h", + true + ], + [ + [ + "void can_remove_rx_filter", + "const struct device *dev, int filter_id" + ], + "can.h", + true + ], + [ + [ + "int can_get_max_filters", + "const struct device *dev, bool ide" + ], + "can.h", + true + ], + [ + [ + "int can_get_state", + "const struct device *dev, enum can_state *state,\n\t\t\t struct can_bus_err_cnt *err_cnt" + ], + "can.h", + true + ], + [ + [ + "int can_recover", + "const struct device *dev, k_timeout_t timeout" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_bit_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_bit0_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_bit1_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_stuff_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_crc_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_form_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_ack_errors", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "uint32_t can_stats_get_rx_overruns", + "const struct device *dev" + ], + "can.h", + true + ], + [ + [ + "int gpio_pin_interrupt_configure", + "const struct device *port,\n\t\t\t\t\t gpio_pin_t pin,\n\t\t\t\t\t gpio_flags_t flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_pin_configure", + "const struct device *port,\n\t\t\t\t gpio_pin_t pin,\n\t\t\t\t gpio_flags_t flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_get_direction", + "const struct device *port, gpio_port_pins_t map,\n\t\t\t\t gpio_port_pins_t *inputs, gpio_port_pins_t *outputs" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_pin_get_config", + "const struct device *port, gpio_pin_t pin,\n\t\t\t\t gpio_flags_t *flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_get_raw", + "const struct device *port,\n\t\t\t\tgpio_port_value_t *value" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_set_masked_raw", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t mask,\n\t\t\t\t gpio_port_value_t value" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_set_bits_raw", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_clear_bits_raw", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_toggle_bits", + "const struct device *port,\n\t\t\t\t gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_get_pending_int", + "const struct device *dev" + ], + "gpio.h", + true + ], + [ + [ + "ssize_t hwinfo_get_device_id", + "uint8_t *buffer, size_t length" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_get_device_eui64", + "uint8_t *buffer" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_get_reset_cause", + "uint32_t *cause" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_clear_reset_cause", + "void" + ], + "hwinfo.h", + true + ], + [ + [ + "int hwinfo_get_supported_reset_cause", + "uint32_t *supported" + ], + "hwinfo.h", + true + ], + [ + [ + "int reset_status", + "const struct device *dev, uint32_t id, uint8_t *status" + ], + "reset.h", + true + ], + [ + [ + "int reset_line_assert", + "const struct device *dev, uint32_t id" + ], + "reset.h", + true + ], + [ + [ + "int reset_line_deassert", + "const struct device *dev, uint32_t id" + ], + "reset.h", + true + ], + [ + [ + "int reset_line_toggle", + "const struct device *dev, uint32_t id" + ], + "reset.h", + true + ], + [ + [ + "int uart_err_check", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_poll_in", + "const struct device *dev, unsigned char *p_char" + ], + "uart.h", + true + ], + [ + [ + "int uart_poll_in_u16", + "const struct device *dev, uint16_t *p_u16" + ], + "uart.h", + true + ], + [ + [ + "void uart_poll_out", + "const struct device *dev,\n\t\t\t unsigned char out_char" + ], + "uart.h", + true + ], + [ + [ + "void uart_poll_out_u16", + "const struct device *dev, uint16_t out_u16" + ], + "uart.h", + true + ], + [ + [ + "int uart_configure", + "const struct device *dev,\n\t\t\t const struct uart_config *cfg" + ], + "uart.h", + true + ], + [ + [ + "int uart_config_get", + "const struct device *dev,\n\t\t\t struct uart_config *cfg" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_tx_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_tx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_rx_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_rx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_err_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_err_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_irq_is_pending", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_irq_update", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx", + "const struct device *dev, const uint8_t *buf,\n\t\t size_t len,\n\t\t int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx_u16", + "const struct device *dev, const uint16_t *buf,\n\t\t\t size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx_abort", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_enable", + "const struct device *dev, uint8_t *buf,\n\t\t\t size_t len,\n\t\t\t int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_enable_u16", + "const struct device *dev, uint16_t *buf,\n\t\t\t\t size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_line_ctrl_set", + "const struct device *dev,\n\t\t\t\t uint32_t ctrl, uint32_t val" + ], + "uart.h", + true + ], + [ + [ + "int uart_line_ctrl_get", + "const struct device *dev, uint32_t ctrl,\n\t\t\t\t uint32_t *val" + ], + "uart.h", + true + ], + [ + [ + "int uart_drv_cmd", + "const struct device *dev, uint32_t cmd, uint32_t p" + ], + "uart.h", + true + ], + [ + [ + "const struct device *device_get_binding", + "const char *name" + ], + "device.h", + true + ], + [ + [ + "bool device_is_ready", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "int device_init", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "int device_deinit", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "const struct device *device_get_by_dt_nodelabel", + "const char *nodelabel" + ], + "device.h", + true + ], + [ + [ + "k_thread_stack_t *k_thread_stack_alloc", + "size_t size, int flags" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_stack_free", + "k_thread_stack_t *stack" + ], + "kernel.h", + true + ], + [ + [ + "k_tid_t k_thread_create", + "struct k_thread *new_thread,\n\t\t\t\t k_thread_stack_t *stack,\n\t\t\t\t size_t stack_size,\n\t\t\t\t k_thread_entry_t entry,\n\t\t\t\t void *p1, void *p2, void *p3,\n\t\t\t\t int prio, uint32_t options, k_timeout_t delay" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_stack_space_get", + "const struct k_thread *thread,\n\t\t\t\t size_t *unused_ptr" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_join", + "struct k_thread *thread, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_sleep", + "k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_usleep", + "int32_t us" + ], + "kernel.h", + true + ], + [ + [ + "void k_busy_wait", + "uint32_t usec_to_wait" + ], + "kernel.h", + true + ], + [ + [ + "void k_yield", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_wakeup", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "k_tid_t k_sched_current_thread_query", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_abort", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_thread_timeout_expires_ticks", + "const struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_thread_timeout_remaining_ticks", + "const struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_priority_get", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_priority_set", + "k_tid_t thread, int prio" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_deadline_set", + "k_tid_t thread, int deadline" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_absolute_deadline_set", + "k_tid_t thread, int deadline" + ], + "kernel.h", + true + ], + [ + [ + "void k_reschedule", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_suspend", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_resume", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_is_preempt_thread", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_custom_data_set", + "void *value" + ], + "kernel.h", + true + ], + [ + [ + "void *k_thread_custom_data_get", + "void" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_name_set", + "k_tid_t thread, const char *str" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_name_copy", + "k_tid_t thread, char *buf,\n\t\t\t\t size_t size" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_start", + "struct k_timer *timer,\n\t\t\t k_timeout_t duration, k_timeout_t period" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_stop", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_timer_status_get", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_timer_status_sync", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_timer_expires_ticks", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_timer_remaining_ticks", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_user_data_set", + "struct k_timer *timer, void *user_data" + ], + "kernel.h", + true + ], + [ + [ + "void *k_timer_user_data_get", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "int64_t k_uptime_ticks", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_queue_init", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void k_queue_cancel_wait", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_queue_alloc_append", + "struct k_queue *queue, void *data" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_queue_alloc_prepend", + "struct k_queue *queue, void *data" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_get", + "struct k_queue *queue, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_queue_is_empty", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_peek_head", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_peek_tail", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "int k_futex_wait", + "struct k_futex *futex, int expected,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_futex_wake", + "struct k_futex *futex, bool wake_all" + ], + "kernel.h", + true + ], + [ + [ + "void k_event_init", + "struct k_event *event" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_post", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_set", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_set_masked", + "struct k_event *event, uint32_t events,\n\t\t\t\t uint32_t events_mask" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_clear", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait", + "struct k_event *event, uint32_t events,\n\t\t\t\tbool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_all", + "struct k_event *event, uint32_t events,\n\t\t\t\t bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_safe", + "struct k_event *event, uint32_t events,\n\t\t\t\t bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_all_safe", + "struct k_event *event, uint32_t events,\n\t\t\t\t\t bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_stack_alloc_init", + "struct k_stack *stack,\n\t\t\t\t uint32_t num_entries" + ], + "kernel.h", + true + ], + [ + [ + "int k_stack_push", + "struct k_stack *stack, stack_data_t data" + ], + "kernel.h", + true + ], + [ + [ + "int k_stack_pop", + "struct k_stack *stack, stack_data_t *data,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_init", + "struct k_mutex *mutex" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_lock", + "struct k_mutex *mutex, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_unlock", + "struct k_mutex *mutex" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_init", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_signal", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_broadcast", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_wait", + "struct k_condvar *condvar, struct k_mutex *mutex,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_sem_init", + "struct k_sem *sem, unsigned int initial_count,\n\t\t\t unsigned int limit" + ], + "kernel.h", + true + ], + [ + [ + "int k_sem_take", + "struct k_sem *sem, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_sem_give", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "void k_sem_reset", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "unsigned int k_sem_count_get", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_alloc_init", + "struct k_msgq *msgq, size_t msg_size,\n\t\t\t\tuint32_t max_msgs" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_put", + "struct k_msgq *msgq, const void *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_put_front", + "struct k_msgq *msgq, const void *data" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_get", + "struct k_msgq *msgq, void *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_peek", + "struct k_msgq *msgq, void *data" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_peek_at", + "struct k_msgq *msgq, void *data, uint32_t idx" + ], + "kernel.h", + true + ], + [ + [ + "void k_msgq_purge", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_msgq_num_free_get", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "void k_msgq_get_attrs", + "struct k_msgq *msgq,\n\t\t\t\t struct k_msgq_attrs *attrs" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_msgq_num_used_get", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_init", + "struct k_pipe *pipe, uint8_t *buffer, size_t buffer_size" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_write", + "struct k_pipe *pipe, const uint8_t *data, size_t len,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_read", + "struct k_pipe *pipe, uint8_t *data, size_t len,\n\t\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_reset", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_close", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "int k_poll", + "struct k_poll_event *events, int num_events,\n\t\t k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_init", + "struct k_poll_signal *sig" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_reset", + "struct k_poll_signal *sig" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_check", + "struct k_poll_signal *sig,\n\t\t\t\t unsigned int *signaled, int *result" + ], + "kernel.h", + true + ], + [ + [ + "int k_poll_signal_raise", + "struct k_poll_signal *sig, int result" + ], + "kernel.h", + true + ], + [ + [ + "void k_str_out", + "char *c, size_t n" + ], + "kernel.h", + true + ], + [ + [ + "int k_float_disable", + "struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_float_enable", + "struct k_thread *thread, unsigned int options" + ], + "kernel.h", + true + ], + [ + [ + "void k_object_access_grant", + "const void *object,\n\t\t\t\t struct k_thread *thread" + ], + "kobject.h", + true + ], + [ + [ + "void k_object_release", + "const void *object" + ], + "kobject.h", + true + ], + [ + [ + "void *k_object_alloc", + "enum k_objects otype" + ], + "kobject.h", + true + ], + [ + [ + "void *k_object_alloc_size", + "enum k_objects otype, size_t size" + ], + "kobject.h", + true + ], + [ + [ + "unsigned int sys_clock_hw_cycles_per_sec_runtime_get", + "void" + ], + "time_units.h", + true + ], + [ + [ + "bool atomic_cas", + "atomic_t *target, atomic_val_t old_value,\n\t\t\t atomic_val_t new_value" + ], + "atomic_c.h", + true + ], + [ + [ + "bool atomic_ptr_cas", + "atomic_ptr_t *target, atomic_ptr_val_t old_value,\n\t\t\t atomic_ptr_val_t new_value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_add", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_sub", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_set", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_ptr_val_t atomic_ptr_set", + "atomic_ptr_t *target, atomic_ptr_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_or", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_xor", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_and", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "atomic_val_t atomic_nand", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + true + ], + [ + [ + "int sys_cache_data_flush_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "int sys_cache_data_invd_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "int sys_cache_data_flush_and_invd_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "void user_fault", + "unsigned int reason" + ], + "error.h", + false + ], + [ + [ + "void xtensa_user_fault", + "unsigned int reason" + ], + "arch.h", + false + ], + [ + [ + "int adc_channel_setup", + "const struct device *dev,\n\t\t\t\tconst struct adc_channel_cfg *channel_cfg" + ], + "adc.h", + false + ], + [ + [ + "int adc_read", + "const struct device *dev,\n\t\t const struct adc_sequence *sequence" + ], + "adc.h", + false + ], + [ + [ + "int adc_read_async", + "const struct device *dev,\n\t\t\t const struct adc_sequence *sequence,\n\t\t\t struct k_poll_signal *async" + ], + "adc.h", + false + ], + [ + [ + "int adc_get_decoder", + "const struct device *dev,\n\t\t\t\tconst struct adc_decoder_api **api" + ], + "adc.h", + false + ], + [ + [ + "int auxdisplay_display_on", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_off", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_set_enabled", + "const struct device *dev,\n\t\t\t\t\t bool enabled" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_position_blinking_set_enabled", + "const struct device *dev,\n\t\t\t\t\t\t bool enabled" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_shift_set", + "const struct device *dev,\n\t\t\t\t\t uint8_t direction, bool display_shift" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_position_set", + "const struct device *dev,\n\t\t\t\t\t enum auxdisplay_position type,\n\t\t\t\t\t int16_t x, int16_t y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_position_get", + "const struct device *dev,\n\t\t\t\t\t int16_t *x, int16_t *y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_position_set", + "const struct device *dev,\n\t\t\t\t\t enum auxdisplay_position type,\n\t\t\t\t\t int16_t x, int16_t y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_position_get", + "const struct device *dev,\n\t\t\t\t\t int16_t *x, int16_t *y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_capabilities_get", + "const struct device *dev,\n\t\t\t\t\t struct auxdisplay_capabilities *capabilities" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_clear", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_brightness_get", + "const struct device *dev,\n\t\t\t\t\tuint8_t *brightness" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_brightness_set", + "const struct device *dev,\n\t\t\t\t\tuint8_t brightness" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_backlight_get", + "const struct device *dev,\n\t\t\t\t uint8_t *backlight" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_backlight_set", + "const struct device *dev,\n\t\t\t\t uint8_t backlight" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_is_busy", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_custom_character_set", + "const struct device *dev,\n\t\t\t\t\t struct auxdisplay_character *character" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_write", + "const struct device *dev, const uint8_t *data,\n\t\t\t uint16_t len" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_custom_command", + "const struct device *dev,\n\t\t\t\t\tstruct auxdisplay_custom_data *data" + ], + "auxdisplay.h", + false + ], + [ + [ + "int bbram_check_invalid", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_check_standby_power", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_check_power", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_get_size", + "const struct device *dev, size_t *size" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_read", + "const struct device *dev, size_t offset, size_t size,\n\t\t\t uint8_t *data" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_write", + "const struct device *dev, size_t offset, size_t size,\n\t\t\t const uint8_t *data" + ], + "bbram.h", + false + ], + [ + [ + "int charger_get_prop", + "const struct device *dev, const charger_prop_t prop,\n\t\t\t union charger_propval *val" + ], + "charger.h", + false + ], + [ + [ + "int charger_set_prop", + "const struct device *dev, const charger_prop_t prop,\n\t\t\t const union charger_propval *val" + ], + "charger.h", + false + ], + [ + [ + "int charger_charge_enable", + "const struct device *dev, const bool enable" + ], + "charger.h", + false + ], + [ + [ + "int comparator_get_output", + "const struct device *dev" + ], + "comparator.h", + false + ], + [ + [ + "int comparator_set_trigger", + "const struct device *dev,\n\t\t\t\t enum comparator_trigger trigger" + ], + "comparator.h", + false + ], + [ + [ + "int comparator_trigger_is_pending", + "const struct device *dev" + ], + "comparator.h", + false + ], + [ + [ + "bool counter_is_counting_up", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint8_t counter_get_num_of_channels", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_frequency", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_us_to_ticks", + "const struct device *dev, uint64_t us" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_us", + "const struct device *dev, uint32_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_ns", + "const struct device *dev, uint32_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_max_top_value", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_start", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_stop", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_value", + "const struct device *dev, uint32_t *ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_value_64", + "const struct device *dev, uint64_t *ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_reset", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_channel_alarm", + "const struct device *dev,\n\t\t\t\t\tuint8_t chan_id,\n\t\t\t\t\tconst struct counter_alarm_cfg *alarm_cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_cancel_channel_alarm", + "const struct device *dev,\n\t\t\t\t\t uint8_t chan_id" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_top_value", + "const struct device *dev,\n\t\t\t\t const struct counter_top_cfg *cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_pending_int", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_top_value", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_guard_period", + "const struct device *dev,\n\t\t\t\t\tuint32_t ticks,\n\t\t\t\t\tuint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_guard_period", + "const struct device *dev,\n\t\t\t\t\t uint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "int crc_begin", + "const struct device *dev, struct crc_ctx *ctx" + ], + "crc.h", + false + ], + [ + [ + "int crc_update", + "const struct device *dev, struct crc_ctx *ctx, const void *buffer,\n\t\t\t size_t bufsize" + ], + "crc.h", + false + ], + [ + [ + "int crc_finish", + "const struct device *dev, struct crc_ctx *ctx" + ], + "crc.h", + false + ], + [ + [ + "int dac_channel_setup", + "const struct device *dev,\n\t\t\t\tconst struct dac_channel_cfg *channel_cfg" + ], + "dac.h", + false + ], + [ + [ + "int dac_write_value", + "const struct device *dev, uint8_t channel,\n\t\t\t uint32_t value" + ], + "dac.h", + false + ], + [ + [ + "int eeprom_read", + "const struct device *dev, off_t offset, void *data,\n\t\t\t size_t len" + ], + "eeprom.h", + false + ], + [ + [ + "int eeprom_write", + "const struct device *dev, off_t offset,\n\t\t\t const void *data,\n\t\t\t size_t len" + ], + "eeprom.h", + false + ], + [ + [ + "size_t eeprom_get_size", + "const struct device *dev" + ], + "eeprom.h", + false + ], + [ + [ + "int emul_fuel_gauge_set_battery_charging", + "const struct emul *target, uint32_t uV, int uA" + ], + "emul_fuel_gauge.h", + false + ], + [ + [ + "int emul_fuel_gauge_is_battery_cutoff", + "const struct emul *target, bool *cutoff" + ], + "emul_fuel_gauge.h", + false + ], + [ + [ + "int entropy_get_entropy", + "const struct device *dev,\n\t\t\t\t uint8_t *buffer,\n\t\t\t\t uint16_t length" + ], + "entropy.h", + false + ], + [ + [ + "int espi_config", + "const struct device *dev, struct espi_cfg *cfg" + ], + "espi.h", + false + ], + [ + [ + "bool espi_get_channel_status", + "const struct device *dev,\n\t\t\t\t enum espi_channel ch" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_request", + "const struct device *dev,\n\t\t\t\tstruct espi_request_packet *req" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_request", + "const struct device *dev,\n\t\t\t\t struct espi_request_packet *req" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_lpc_request", + "const struct device *dev,\n\t\t\t\t enum lpc_peripheral_opcode op,\n\t\t\t\t uint32_t *data" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_lpc_request", + "const struct device *dev,\n\t\t\t\t enum lpc_peripheral_opcode op,\n\t\t\t\t uint32_t *data" + ], + "espi.h", + false + ], + [ + [ + "int espi_send_vwire", + "const struct device *dev,\n\t\t\t enum espi_vwire_signal signal,\n\t\t\t uint8_t level" + ], + "espi.h", + false + ], + [ + [ + "int espi_receive_vwire", + "const struct device *dev,\n\t\t\t\t enum espi_vwire_signal signal,\n\t\t\t\t uint8_t *level" + ], + "espi.h", + false + ], + [ + [ + "int espi_send_oob", + "const struct device *dev,\n\t\t\t struct espi_oob_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_receive_oob", + "const struct device *dev,\n\t\t\t struct espi_oob_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_flash", + "const struct device *dev,\n\t\t\t struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_flash", + "const struct device *dev,\n\t\t\t struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_flash_erase", + "const struct device *dev,\n\t\t\t struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_saf_config", + "const struct device *dev,\n\t\t\t const struct espi_saf_cfg *cfg" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_set_protection_regions", + "\n\t\t\t\tconst struct device *dev,\n\t\t\t\tconst struct espi_saf_protection *pr" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_activate", + "const struct device *dev" + ], + "espi_saf.h", + false + ], + [ + [ + "bool espi_saf_get_channel_status", + "const struct device *dev" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_read", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_write", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_erase", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_unsuccess", + "const struct device *dev,\n\t\t\t\t struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int flash_read", + "const struct device *dev, off_t offset, void *data,\n\t\t\t size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_write", + "const struct device *dev, off_t offset,\n\t\t\t const void *data,\n\t\t\t size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_erase", + "const struct device *dev, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_size", + "const struct device *dev, uint64_t *size" + ], + "flash.h", + false + ], + [ + [ + "int flash_fill", + "const struct device *dev, uint8_t val, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_flatten", + "const struct device *dev, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_page_info_by_offs", + "const struct device *dev,\n\t\t\t\t\t off_t offset,\n\t\t\t\t\t struct flash_pages_info *info" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_page_info_by_idx", + "const struct device *dev,\n\t\t\t\t\t uint32_t page_index,\n\t\t\t\t\t struct flash_pages_info *info" + ], + "flash.h", + false + ], + [ + [ + "size_t flash_get_page_count", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "int flash_sfdp_read", + "const struct device *dev, off_t offset,\n\t\t\t void *data, size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_read_jedec_id", + "const struct device *dev, uint8_t *id" + ], + "flash.h", + false + ], + [ + [ + "size_t flash_get_write_block_size", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "const struct flash_parameters *flash_get_parameters", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "int flash_ex_op", + "const struct device *dev, uint16_t code,\n\t\t\t const uintptr_t in, void *out" + ], + "flash.h", + false + ], + [ + [ + "int flash_copy", + "const struct device *src_dev, off_t src_offset,\n\t\t\t const struct device *dst_dev, off_t dst_offset, off_t size, uint8_t *buf,\n\t\t\t size_t buf_size" + ], + "flash.h", + false + ], + [ + [ + "int fuel_gauge_get_prop", + "const struct device *dev, fuel_gauge_prop_t prop,\n\t\t\t\t union fuel_gauge_prop_val *val" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_get_props", + "const struct device *dev, const fuel_gauge_prop_t *props,\n\t\t\t\t union fuel_gauge_prop_val *vals, size_t len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_set_prop", + "const struct device *dev, fuel_gauge_prop_t prop,\n\t\t\t\t union fuel_gauge_prop_val val" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_set_props", + "const struct device *dev, const fuel_gauge_prop_t *props,\n\t\t\t\t const union fuel_gauge_prop_val *vals, size_t len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_get_buffer_prop", + "const struct device *dev, fuel_gauge_prop_t prop_type,\n\t\t\t\t\t void *dst, size_t dst_len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_battery_cutoff", + "const struct device *dev" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int gnss_set_fix_rate", + "const struct device *dev, uint32_t fix_interval_ms" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_fix_rate", + "const struct device *dev, uint32_t *fix_interval_ms" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_set_navigation_mode", + "const struct device *dev,\n\t\t\t\t enum gnss_navigation_mode mode" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_navigation_mode", + "const struct device *dev,\n\t\t\t\t enum gnss_navigation_mode *mode" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_set_enabled_systems", + "const struct device *dev, gnss_systems_t systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_enabled_systems", + "const struct device *dev, gnss_systems_t *systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_supported_systems", + "const struct device *dev, gnss_systems_t *systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_latest_timepulse", + "const struct device *dev, k_ticks_t *timestamp" + ], + "gnss.h", + false + ], + [ + [ + "int haptics_start_output", + "const struct device *dev" + ], + "haptics.h", + false + ], + [ + [ + "int haptics_stop_output", + "const struct device *dev" + ], + "haptics.h", + false + ], + [ + [ + "int i2c_configure", + "const struct device *dev, uint32_t dev_config" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_get_config", + "const struct device *dev, uint32_t *dev_config" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_transfer", + "const struct device *dev,\n\t\t\t struct i2c_msg *msgs, uint8_t num_msgs,\n\t\t\t uint16_t addr" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_recover_bus", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_target_driver_register", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_target_driver_unregister", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2s_configure", + "const struct device *dev, enum i2s_dir dir,\n\t\t\t const struct i2s_config *cfg" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_buf_read", + "const struct device *dev, void *buf, size_t *size" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_buf_write", + "const struct device *dev, void *buf, size_t size" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_trigger", + "const struct device *dev, enum i2s_dir dir,\n\t\t\t enum i2s_trigger_cmd cmd" + ], + "i2s.h", + false + ], + [ + [ + "int i3c_do_ccc", + "const struct device *dev,\n\t\t\t struct i3c_ccc_payload *payload" + ], + "i3c.h", + false + ], + [ + [ + "int i3c_transfer", + "struct i3c_device_desc *target,\n\t\t\t struct i3c_msg *msgs, uint8_t num_msgs" + ], + "i3c.h", + false + ], + [ + [ + "int ipm_send", + "const struct device *ipmdev, int wait, uint32_t id,\n\t\t const void *data, int size" + ], + "ipm.h", + false + ], + [ + [ + "int ipm_max_data_size_get", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "uint32_t ipm_max_id_val_get", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "int ipm_set_enabled", + "const struct device *ipmdev, int enable" + ], + "ipm.h", + false + ], + [ + [ + "void ipm_complete", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "int led_blink", + "const struct device *dev, uint32_t led,\n\t\t\t uint32_t delay_on, uint32_t delay_off" + ], + "led.h", + false + ], + [ + [ + "int led_get_info", + "const struct device *dev, uint32_t led,\n\t\t\t const struct led_info **info" + ], + "led.h", + false + ], + [ + [ + "int led_set_brightness", + "const struct device *dev, uint32_t led,\n\t\t\t\t uint8_t value" + ], + "led.h", + false + ], + [ + [ + "int led_write_channels", + "const struct device *dev,\n\t\t\t\t uint32_t start_channel,\n\t\t\t\t uint32_t num_channels, const uint8_t *buf" + ], + "led.h", + false + ], + [ + [ + "int led_set_channel", + "const struct device *dev,\n\t\t\t uint32_t channel, uint8_t value" + ], + "led.h", + false + ], + [ + [ + "int led_set_color", + "const struct device *dev, uint32_t led,\n\t\t\t uint8_t num_colors, const uint8_t *color" + ], + "led.h", + false + ], + [ + [ + "int led_on", + "const struct device *dev, uint32_t led" + ], + "led.h", + false + ], + [ + [ + "int led_off", + "const struct device *dev, uint32_t led" + ], + "led.h", + false + ], + [ + [ + "int mbox_send", + "const struct device *dev, mbox_channel_id_t channel_id,\n\t\t\tconst struct mbox_msg *msg" + ], + "mbox.h", + false + ], + [ + [ + "int mbox_mtu_get", + "const struct device *dev" + ], + "mbox.h", + false + ], + [ + [ + "int mbox_set_enabled", + "const struct device *dev,\n\t\t\t mbox_channel_id_t channel_id, bool enabled" + ], + "mbox.h", + false + ], + [ + [ + "uint32_t mbox_max_channels_get", + "const struct device *dev" + ], + "mbox.h", + false + ], + [ + [ + "void mdio_bus_enable", + "const struct device *dev" + ], + "mdio.h", + false + ], + [ + [ + "void mdio_bus_disable", + "const struct device *dev" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_read", + "const struct device *dev, uint8_t prtad, uint8_t regad,\n\t\t\tuint16_t *data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_write", + "const struct device *dev, uint8_t prtad, uint8_t regad,\n\t\t\t uint16_t data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_read_c45", + "const struct device *dev, uint8_t prtad,\n\t\t\t uint8_t devad, uint16_t regad, uint16_t *data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_write_c45", + "const struct device *dev, uint8_t prtad,\n\t\t\t uint8_t devad, uint16_t regad, uint16_t data" + ], + "mdio.h", + false + ], + [ + [ + "int mspi_config", + "const struct mspi_dt_spec *spec" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_dev_config", + "const struct device *controller,\n\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t const enum mspi_dev_cfg_mask param_mask,\n\t\t\t const struct mspi_dev_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_get_channel_status", + "const struct device *controller, uint8_t ch" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_transceive", + "const struct device *controller,\n\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t const struct mspi_xfer *req" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_xip_config", + "const struct device *controller,\n\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t const struct mspi_xip_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_scramble_config", + "const struct device *controller,\n\t\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t\t const struct mspi_scramble_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_timing_config", + "const struct device *controller,\n\t\t\t\t const struct mspi_dev_id *dev_id,\n\t\t\t\t const uint32_t param_mask, void *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int opamp_set_gain", + "const struct device *dev, enum opamp_gain gain" + ], + "opamp.h", + false + ], + [ + [ + "int peci_config", + "const struct device *dev, uint32_t bitrate" + ], + "peci.h", + false + ], + [ + [ + "int peci_enable", + "const struct device *dev" + ], + "peci.h", + false + ], + [ + [ + "int peci_disable", + "const struct device *dev" + ], + "peci.h", + false + ], + [ + [ + "int peci_transfer", + "const struct device *dev, struct peci_msg *msg" + ], + "peci.h", + false + ], + [ + [ + "int ps2_config", + "const struct device *dev,\n\t\t\t ps2_callback_t callback_isr" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_write", + "const struct device *dev, uint8_t value" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_read", + "const struct device *dev, uint8_t *value" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_enable_callback", + "const struct device *dev" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_disable_callback", + "const struct device *dev" + ], + "ps2.h", + false + ], + [ + [ + "int ptp_clock_get", + "const struct device *dev, struct net_ptp_time *tm" + ], + "ptp_clock.h", + false + ], + [ + [ + "int pwm_set_cycles", + "const struct device *dev, uint32_t channel,\n\t\t\t uint32_t period, uint32_t pulse,\n\t\t\t pwm_flags_t flags" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_get_cycles_per_sec", + "const struct device *dev, uint32_t channel,\n\t\t\t\t uint64_t *cycles" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_enable_capture", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_disable_capture", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_capture_cycles", + "const struct device *dev, uint32_t channel,\n\t\t\t\t pwm_flags_t flags, uint32_t *period,\n\t\t\t\t uint32_t *pulse, k_timeout_t timeout" + ], + "pwm.h", + false + ], + [ + [ + "ssize_t retained_mem_size", + "const struct device *dev" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_read", + "const struct device *dev, off_t offset, uint8_t *buffer,\n\t\t\t\tsize_t size" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_write", + "const struct device *dev, off_t offset, const uint8_t *buffer,\n\t\t\t\t size_t size" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_clear", + "const struct device *dev" + ], + "retained_mem.h", + false + ], + [ + [ + "int rtc_set_time", + "const struct device *dev, const struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_get_time", + "const struct device *dev, struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_get_supported_fields", + "const struct device *dev, uint16_t id,\n\t\t\t\t\t uint16_t *mask" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_set_time", + "const struct device *dev, uint16_t id, uint16_t mask,\n\t\t\t\t const struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_get_time", + "const struct device *dev, uint16_t id, uint16_t *mask,\n\t\t\t\t struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_is_pending", + "const struct device *dev, uint16_t id" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_set_calibration", + "const struct device *dev, int32_t calibration" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_get_calibration", + "const struct device *dev, int32_t *calibration" + ], + "rtc.h", + false + ], + [ + [ + "int sdhc_hw_reset", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_request", + "const struct device *dev, struct sdhc_command *cmd,\n\t\t\t struct sdhc_data *data" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_set_io", + "const struct device *dev, struct sdhc_io *io" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_card_present", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_execute_tuning", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_card_busy", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_get_host_props", + "const struct device *dev,\n\t\t\t\t struct sdhc_host_props *props" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_enable_interrupt", + "const struct device *dev,\n\t\t\t\t sdhc_interrupt_cb_t callback,\n\t\t\t\t int sources, void *user_data" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_disable_interrupt", + "const struct device *dev, int sources" + ], + "sdhc.h", + false + ], + [ + [ + "int sensor_attr_set", + "const struct device *dev,\n\t\t\t enum sensor_channel chan,\n\t\t\t enum sensor_attribute attr,\n\t\t\t const struct sensor_value *val" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_attr_get", + "const struct device *dev,\n\t\t\t enum sensor_channel chan,\n\t\t\t enum sensor_attribute attr,\n\t\t\t struct sensor_value *val" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_sample_fetch", + "const struct device *dev" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_sample_fetch_chan", + "const struct device *dev,\n\t\t\t\t enum sensor_channel type" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_channel_get", + "const struct device *dev,\n\t\t\t\t enum sensor_channel chan,\n\t\t\t\t struct sensor_value *val" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_get_decoder", + "const struct device *dev,\n\t\t\t\t const struct sensor_decoder_api **decoder" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_reconfigure_read_iodev", + "const struct rtio_iodev *iodev,\n\t\t\t\t\t const struct device *sensor,\n\t\t\t\t\t const struct sensor_chan_spec *channels,\n\t\t\t\t\t size_t num_channels" + ], + "sensor.h", + false + ], + [ + [ + "int smbus_configure", + "const struct device *dev, uint32_t dev_config" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_get_config", + "const struct device *dev, uint32_t *dev_config" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_smbalert_remove_cb", + "const struct device *dev,\n\t\t\t\t struct smbus_callback *cb" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_host_notify_remove_cb", + "const struct device *dev,\n\t\t\t\t\t struct smbus_callback *cb" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_quick", + "const struct device *dev, uint16_t addr,\n\t\t\t enum smbus_direction direction" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_write", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_read", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t *byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_data_write", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint8_t byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_data_read", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint8_t *byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_word_data_write", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint16_t word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_word_data_read", + "const struct device *dev, uint16_t addr,\n\t\t\t\t uint8_t cmd, uint16_t *word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_pcall", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t cmd, uint16_t send_word, uint16_t *recv_word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_write", + "const struct device *dev, uint16_t addr,\n\t\t\t\tuint8_t cmd, uint8_t count, uint8_t *buf" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_read", + "const struct device *dev, uint16_t addr,\n\t\t\t uint8_t cmd, uint8_t *count, uint8_t *buf" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_pcall", + "const struct device *dev,\n\t\t\t\tuint16_t addr, uint8_t cmd,\n\t\t\t\tuint8_t snd_count, uint8_t *snd_buf,\n\t\t\t\tuint8_t *rcv_count, uint8_t *rcv_buf" + ], + "smbus.h", + false + ], + [ + [ + "int spi_transceive", + "const struct device *dev,\n\t\t\t const struct spi_config *config,\n\t\t\t const struct spi_buf_set *tx_bufs,\n\t\t\t const struct spi_buf_set *rx_bufs" + ], + "spi.h", + false + ], + [ + [ + "int spi_release", + "const struct device *dev,\n\t\t\t const struct spi_config *config" + ], + "spi.h", + false + ], + [ + [ + "int stepper_enable", + "const struct device *dev" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_disable", + "const struct device *dev" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_micro_step_res", + "const struct device *dev,\n\t\t\t\t\t enum stepper_micro_step_resolution resolution" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_get_micro_step_res", + "const struct device *dev,\n\t\t\t\t\t enum stepper_micro_step_resolution *resolution" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_reference_position", + "const struct device *dev, int32_t value" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_get_actual_position", + "const struct device *dev, int32_t *value" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_event_callback", + "const struct device *dev,\n\t\t\t\t\t stepper_event_callback_t callback, void *user_data" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_microstep_interval", + "const struct device *dev,\n\t\t\t\t\t uint64_t microstep_interval_ns" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_move_by", + "const struct device *dev, int32_t micro_steps" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_move_to", + "const struct device *dev, int32_t micro_steps" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_run", + "const struct device *dev, enum stepper_direction direction" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_stop", + "const struct device *dev" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_is_moving", + "const struct device *dev, bool *is_moving" + ], + "stepper.h", + false + ], + [ + [ + "int syscon_get_base", + "const struct device *dev, uintptr_t *addr" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_read_reg", + "const struct device *dev, uint16_t reg, uint32_t *val" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_write_reg", + "const struct device *dev, uint16_t reg, uint32_t val" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_get_size", + "const struct device *dev, size_t *size" + ], + "syscon.h", + false + ], + [ + [ + "int tee_get_version", + "const struct device *dev, struct tee_version_info *info" + ], + "tee.h", + false + ], + [ + [ + "int tee_open_session", + "const struct device *dev, struct tee_open_session_arg *arg,\n\t\t\t unsigned int num_param, struct tee_param *param,\n\t\t\t uint32_t *session_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_close_session", + "const struct device *dev, uint32_t session_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_cancel", + "const struct device *dev, uint32_t session_id, uint32_t cancel_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_invoke_func", + "const struct device *dev, struct tee_invoke_func_arg *arg,\n\t\t\t unsigned int num_param, struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_register", + "const struct device *dev, void *addr, size_t size,\n\t\t\t uint32_t flags, struct tee_shm **shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_unregister", + "const struct device *dev, struct tee_shm *shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_alloc", + "const struct device *dev, size_t size, uint32_t flags,\n\t\t\t struct tee_shm **shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_free", + "const struct device *dev, struct tee_shm *shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_suppl_recv", + "const struct device *dev, uint32_t *func, unsigned int *num_params,\n\t\t\t struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int tee_suppl_send", + "const struct device *dev, unsigned int ret, unsigned int num_params,\n\t\t\t struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int w1_change_bus_lock", + "const struct device *dev, bool lock" + ], + "w1.h", + false + ], + [ + [ + "int w1_reset_bus", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_bit", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_bit", + "const struct device *dev, const bool bit" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_byte", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_byte", + "const struct device *dev, uint8_t byte" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_block", + "const struct device *dev, uint8_t *buffer, size_t len" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_block", + "const struct device *dev,\n\t\t\t const uint8_t *buffer, size_t len" + ], + "w1.h", + false + ], + [ + [ + "size_t w1_get_slave_count", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_configure", + "const struct device *dev,\n\t\t\t enum w1_settings_type type, uint32_t value" + ], + "w1.h", + false + ], + [ + [ + "int w1_search_bus", + "const struct device *dev, uint8_t command,\n\t\t\t uint8_t family, w1_search_callback_t callback,\n\t\t\t void *user_data" + ], + "w1.h", + false + ], + [ + [ + "int wdt_setup", + "const struct device *dev, uint8_t options" + ], + "watchdog.h", + false + ], + [ + [ + "int wdt_disable", + "const struct device *dev" + ], + "watchdog.h", + false + ], + [ + [ + "int wdt_feed", + "const struct device *dev, int channel_id" + ], + "watchdog.h", + false + ], + [ + [ + "void *flash_simulator_get_memory", + "const struct device *dev,\n\t\t\t\t\t size_t *mock_size" + ], + "flash_simulator.h", + false + ], + [ + [ + "void nrf_qspi_nor_xip_enable", + "const struct device *dev, bool enable" + ], + "nrf_qspi_nor.h", + false + ], + [ + [ + "int devmux_select_get", + "const struct device *dev" + ], + "devmux.h", + false + ], + [ + [ + "int devmux_select_set", + "struct device *dev, size_t index" + ], + "devmux.h", + false + ], + [ + [ + "int renesas_elc_software_event_generate", + "const struct device *dev, uint32_t event" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_link_set", + "const struct device *dev, uint32_t peripheral, uint32_t event" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_link_break", + "const struct device *dev, uint32_t peripheral" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_enable", + "const struct device *dev" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_disable", + "const struct device *dev" + ], + "renesas_elc.h", + false + ], + [ + [ + "int tgpio_port_get_time", + "const struct device *dev, uint64_t *current_time" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_port_get_cycles_per_second", + "const struct device *dev, uint32_t *cycles" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_disable", + "const struct device *dev, uint32_t pin" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_config_ext_timestamp", + "const struct device *dev, uint32_t pin,\n\t\t\t\t\t uint32_t event_polarity" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_periodic_output", + "const struct device *dev, uint32_t pin,\n\t\t\t\t\t uint64_t start_time, uint64_t repeat_interval,\n\t\t\t\t\t bool periodic_enable" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_read_ts_ec", + "const struct device *dev, uint32_t pin, uint64_t *timestamp,\n\t\t\t\t uint64_t *event_count" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int psi5_start_sync", + "const struct device *dev, uint8_t channel" + ], + "psi5.h", + false + ], + [ + [ + "int psi5_stop_sync", + "const struct device *dev, uint8_t channel" + ], + "psi5.h", + false + ], + [ + [ + "int psi5_send", + "const struct device *dev, uint8_t channel, const uint64_t data,\n\t\t\tk_timeout_t timeout, psi5_tx_callback_t callback, void *user_data" + ], + "psi5.h", + false + ], + [ + [ + "int psi5_register_callback", + "const struct device *dev, uint8_t channel,\n\t\t\t\t struct psi5_rx_callback_configs callback_configs" + ], + "psi5.h", + false + ], + [ + [ + "int maxim_ds3231_req_syncpoint", + "const struct device *dev,\n\t\t\t\t\t struct k_poll_signal *signal" + ], + "maxim_ds3231.h", + false + ], + [ + [ + "int maxim_ds3231_get_syncpoint", + "const struct device *dev,\n\t\t\t\t\t struct maxim_ds3231_syncpoint *syncpoint" + ], + "maxim_ds3231.h", + false + ], + [ + [ + "int sent_start_listening", + "const struct device *dev, uint8_t channel" + ], + "sent.h", + false + ], + [ + [ + "int sent_stop_listening", + "const struct device *dev, uint8_t channel" + ], + "sent.h", + false + ], + [ + [ + "int sent_register_callback", + "const struct device *dev, uint8_t channel,\n\t\t\t\t struct sent_rx_callback_configs callback_configs" + ], + "sent.h", + false + ], + [ + [ + "void sip_supervisory_call", + "const struct device *dev, unsigned long function_id,\n\t\t\t\t unsigned long arg0, unsigned long arg1, unsigned long arg2,\n\t\t\t\t unsigned long arg3, unsigned long arg4, unsigned long arg5,\n\t\t\t\t unsigned long arg6, struct arm_smccc_res *res" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "bool sip_svc_plat_func_id_valid", + "const struct device *dev, uint32_t command,\n\t\t\t\t\t uint32_t func_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_format_trans_id", + "const struct device *dev, uint32_t client_idx,\n\t\t\t\t\t\tuint32_t trans_idx" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_get_trans_idx", + "const struct device *dev, uint32_t trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "void sip_svc_plat_update_trans_id", + "const struct device *dev,\n\t\t\t\t\t struct sip_svc_request *request, uint32_t trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_get_error_code", + "const struct device *dev, struct arm_smccc_res *res" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int sip_svc_plat_async_res_req", + "const struct device *dev, unsigned long *a0,\n\t\t\t\t\t unsigned long *a1, unsigned long *a2, unsigned long *a3,\n\t\t\t\t\t unsigned long *a4, unsigned long *a5, unsigned long *a6,\n\t\t\t\t\t unsigned long *a7, char *buf, size_t size" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int sip_svc_plat_async_res_res", + "const struct device *dev, struct arm_smccc_res *res,\n\t\t\t\t\t char *buf, size_t *size, uint32_t *trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "void sip_svc_plat_free_async_memory", + "const struct device *dev,\n\t\t\t\t\t struct sip_svc_request *request" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int bc12_set_role", + "const struct device *dev, enum bc12_role role" + ], + "usb_bc12.h", + false + ], + [ + [ + "int bc12_set_result_cb", + "const struct device *dev, bc12_callback_t cb, void *user_data" + ], + "usb_bc12.h", + false + ], + [ + [ + "size_t ivshmem_get_mem", + "const struct device *dev,\n\t\t\t\t uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_id", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "uint16_t ivshmem_get_vectors", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_int_peer", + "const struct device *dev,\n\t\t\t uint32_t peer_id, uint16_t vector" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_register_handler", + "const struct device *dev,\n\t\t\t\t struct k_poll_signal *signal,\n\t\t\t\t uint16_t vector" + ], + "ivshmem.h", + false + ], + [ + [ + "size_t ivshmem_get_rw_mem_section", + "const struct device *dev,\n\t\t\t\t\t uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "size_t ivshmem_get_output_mem_section", + "const struct device *dev,\n\t\t\t\t\t\tuint32_t peer_id,\n\t\t\t\t\t\tuintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_state", + "const struct device *dev,\n\t\t\t\t uint32_t peer_id" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_set_state", + "const struct device *dev,\n\t\t\t\tuint32_t state" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_max_peers", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "uint16_t ivshmem_get_protocol", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_enable_interrupts", + "const struct device *dev,\n\t\t\t\t\tbool enable" + ], + "ivshmem.h", + false + ], + [ + [ + "int renesas_ra_ctsu_group_configure", + "const struct device *dev,\n\t\t\t\t\t const struct renesas_ra_ctsu_touch_cfg *cfg" + ], + "input_renesas_ra_ctsu.h", + false + ], + [ + [ + "int renesas_rx_ctsu_group_configure", + "const struct device *dev,\n\t\t\t\t\t const struct renesas_rx_ctsu_touch_cfg *cfg" + ], + "input_renesas_rx_ctsu.h", + false + ], + [ + [ + "void k_mem_paging_stats_get", + "struct k_mem_paging_stats_t *stats" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_thread_stats_get", + "struct k_thread *thread,\n\t\t\t\t struct k_mem_paging_stats_t *stats" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_eviction_get", + "\n\tstruct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_backing_store_page_in_get", + "\n\tstruct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_backing_store_page_out_get", + "\n\tstruct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "ssize_t llext_get_fn_table", + "struct llext *ext, bool is_init, void *buf, size_t size" + ], + "llext.h", + false + ], + [ + [ + "void updatehub_autohandler", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "enum updatehub_response updatehub_probe", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "enum updatehub_response updatehub_update", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_confirm", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_reboot", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_report_error", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "const struct device *net_eth_get_ptp_clock_by_index", + "int index" + ], + "ethernet.h", + false + ], + [ + [ + "int net_if_ipv6_addr_lookup_by_index", + "const struct in6_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv6_addr_add_by_index", + "int index,\n\t\t\t\t\t const struct in6_addr *addr,\n\t\t\t\t\t enum net_addr_type addr_type,\n\t\t\t\t\t uint32_t vlifetime" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv6_addr_rm_by_index", + "int index,\n\t\t\t\t\t const struct in6_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "int net_if_ipv4_addr_lookup_by_index", + "const struct in_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_addr_add_by_index", + "int index,\n\t\t\t\t\t const struct in_addr *addr,\n\t\t\t\t\t enum net_addr_type addr_type,\n\t\t\t\t\t uint32_t vlifetime" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_addr_rm_by_index", + "int index,\n\t\t\t\t\t const struct in_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_netmask_by_index", + "int index,\n\t\t\t\t\t\t\t const struct in_addr *netmask" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_netmask_by_addr_by_index", + "int index,\n\t\t\t\t\t\t\tconst struct in_addr *addr,\n\t\t\t\t\t\t\tconst struct in_addr *netmask" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_gw_by_index", + "int index, const struct in_addr *gw" + ], + "net_if.h", + false + ], + [ + [ + "struct net_if *net_if_get_by_index", + "int index" + ], + "net_if.h", + false + ], + [ + [ + "int net_addr_pton", + "sa_family_t family, const char *src, void *dst" + ], + "net_ip.h", + false + ], + [ + [ + "char *net_addr_ntop", + "sa_family_t family, const void *src,\n\t\t\t char *dst, size_t size" + ], + "net_ip.h", + false + ], + [ + [ + "void *zsock_get_context_object", + "int sock" + ], + "socket.h", + false + ], + [ + [ + "int zsock_socket", + "int family, int type, int proto" + ], + "socket.h", + false + ], + [ + [ + "int zsock_socketpair", + "int family, int type, int proto, int *sv" + ], + "socket.h", + false + ], + [ + [ + "int zsock_close", + "int sock" + ], + "socket.h", + false + ], + [ + [ + "int zsock_shutdown", + "int sock, int how" + ], + "socket.h", + false + ], + [ + [ + "int zsock_bind", + "int sock, const struct sockaddr *addr,\n\t\t\t socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_connect", + "int sock, const struct sockaddr *addr,\n\t\t\t socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_listen", + "int sock, int backlog" + ], + "socket.h", + false + ], + [ + [ + "int zsock_accept", + "int sock, struct sockaddr *addr, socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_sendto", + "int sock, const void *buf, size_t len,\n\t\t\t int flags, const struct sockaddr *dest_addr,\n\t\t\t socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_sendmsg", + "int sock, const struct msghdr *msg,\n\t\t\t\tint flags" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_recvfrom", + "int sock, void *buf, size_t max_len,\n\t\t\t\t int flags, struct sockaddr *src_addr,\n\t\t\t\t socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_recvmsg", + "int sock, struct msghdr *msg, int flags" + ], + "socket.h", + false + ], + [ + [ + "int zsock_fcntl_impl", + "int sock, int cmd, int flags" + ], + "socket.h", + false + ], + [ + [ + "int zsock_ioctl_impl", + "int sock, unsigned long request, va_list ap" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getsockopt", + "int sock, int level, int optname,\n\t\t\t void *optval, socklen_t *optlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_setsockopt", + "int sock, int level, int optname,\n\t\t\t const void *optval, socklen_t optlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getpeername", + "int sock, struct sockaddr *addr,\n\t\t\t\tsocklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getsockname", + "int sock, struct sockaddr *addr,\n\t\t\t\tsocklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_gethostname", + "char *buf, size_t len" + ], + "socket.h", + false + ], + [ + [ + "int zsock_inet_pton", + "sa_family_t family, const char *src, void *dst" + ], + "socket.h", + false + ], + [ + [ + "int z_zsock_getaddrinfo_internal", + "const char *host,\n\t\t\t\t\t const char *service,\n\t\t\t\t\t const struct zsock_addrinfo *hints,\n\t\t\t\t\t struct zsock_addrinfo *res" + ], + "socket.h", + false + ], + [ + [ + "int net_socket_service_register", + "const struct net_socket_service_desc *service,\n\t\t\t\t\t struct zsock_pollfd *fds, int len, void *user_data" + ], + "socket_service.h", + false + ], + [ + [ + "void sys_rand_get", + "void *dst, size_t len" + ], + "random.h", + false + ], + [ + [ + "int sys_csrand_get", + "void *dst, size_t len" + ], + "random.h", + false + ], + [ + [ + "int rtio_cqe_get_mempool_buffer", + "const struct rtio *r, struct rtio_cqe *cqe,\n\t\t\t\t\t uint8_t **buff, uint32_t *buff_len" + ], + "rtio.h", + false + ], + [ + [ + "void rtio_release_buffer", + "struct rtio *r, void *buff, uint32_t buff_len" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_sqe_cancel", + "struct rtio_sqe *sqe" + ], + "rtio.h", + false + ], + [ + [ + "void rtio_sqe_signal", + "struct rtio_sqe *sqe" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_sqe_copy_in_get_handles", + "struct rtio *r, const struct rtio_sqe *sqes,\n\t\t\t\t\t struct rtio_sqe **handle, size_t sqe_count" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_cqe_copy_out", + "struct rtio *r,\n\t\t\t\tstruct rtio_cqe *cqes,\n\t\t\t\tsize_t cqe_count,\n\t\t\t\tk_timeout_t timeout" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_submit", + "struct rtio *r, uint32_t wait_count" + ], + "rtio.h", + false + ], + [ + [ + "struct rtio *rtio_pool_acquire", + "struct rtio_pool *pool" + ], + "rtio.h", + false + ], + [ + [ + "void rtio_pool_release", + "struct rtio_pool *pool, struct rtio *r" + ], + "rtio.h", + false + ], + [ + [ + "int *z_errno", + "void" + ], + "errno_private.h", + false + ], + [ + [ + "int zvfs_poll", + "struct zvfs_pollfd *fds, int nfds, int poll_timeout" + ], + "fdtable.h", + false + ], + [ + [ + "int zvfs_select", + "int nfds, struct zvfs_fd_set *ZRESTRICT readfds,\n\t\t\t struct zvfs_fd_set *ZRESTRICT writefds,\n\t\t\t struct zvfs_fd_set *ZRESTRICT errorfds,\n\t\t\t const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask" + ], + "fdtable.h", + false + ] +] \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_file_list.txt b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_file_list.txt new file mode 100644 index 0000000..04ff0ef --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_file_list.txt @@ -0,0 +1 @@ +C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/libc-hooks.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/clock.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/mutex.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_msg.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/logging/log_ctrl.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/can.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/gpio.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/hwinfo.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/reset.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/drivers/uart.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/device.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/kernel.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/kobject.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/time_units.h;C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/atomic_c.h \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_subdirs.trigger b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_subdirs.trigger new file mode 100644 index 0000000..e69de29 diff --git a/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_subdirs.txt b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_subdirs.txt new file mode 100644 index 0000000..49fb938 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/misc/generated/syscalls_subdirs.txt @@ -0,0 +1,271 @@ +C:/Users/iteedi/zephyrproject/zephyr/include +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\acpi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\app_memory +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\audio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\bluetooth +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\canbus +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\console +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\cpu_freq +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\crypto +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\data +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\debug +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\devicetree +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dfu +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\display +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dsp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\fs +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\gnss +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\input +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\instrumentation +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\internal +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\ipc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\kernel +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\libsbc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\linker +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\llext +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\logging +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\lorawan +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\math +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mem_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\misc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\modbus +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\modem +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\multi_heap +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\net +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\platform +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\pm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\pmci +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\portability +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\posix +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\psa +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\random +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\retention +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\rtio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\sd +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\sensing +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\settings +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\shell +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\sip_svc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\stats +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\storage +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\sys +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\task_wdt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\timing +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\toolchain +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\tracing +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\usb +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\usb_c +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\xen +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\zbus +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\zvfs +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm64 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\common +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\mips +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\posix +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\riscv +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\rx +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\sparc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\x86 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\xtensa +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc\asm-compat +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc\v2 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc\v2\dsp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc\v2\mpu +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc\v2\secureshield +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arc\v2\vpx +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\cortex_a_r +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\cortex_m +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\cortex_r +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\mmu +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\mpu +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\cortex_a_r\scripts +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\cortex_m\scripts +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm\cortex_r\scripts +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm64\cortex_r +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\arm64\scripts +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\riscv\common +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\riscv\riscv-privileged +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\x86\ia32 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\x86\intel64 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\arch\x86\ia32\scripts +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\bluetooth\audio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\bluetooth\classic +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\bluetooth\mesh +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\bluetooth\services +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\bluetooth\services\nus +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\debug\coresight +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\adc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\bluetooth +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\can +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\clock_control +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\comparator +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\console +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\dac +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\debug +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\disk +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\dma +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\edac +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\eeprom +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\ethernet +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\firmware +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\flash +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\gnss +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\gpio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\haptics +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\i2c +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\i3c +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\ieee802154 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\interrupt_controller +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\led +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\led_strip +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\memc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\mfd +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\mic_privacy +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\mipi_dsi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\mm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\modem +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\mspi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\pcie +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\pinctrl +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\pm_cpu_ops +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\power +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\psi5 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\pwm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\regulator +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\reset +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\retained_mem +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\rtc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\sensor +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\sent +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\serial +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\sip_svc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\spi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\stepper +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\timer +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\uart +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\usb +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\usb_c +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\video +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\virtio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\virtualization +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\wifi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\firmware\scmi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\firmware\tisci +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\firmware\scmi\nxp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\i2c\target +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\mic_privacy\intel +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\devmux +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\flexram +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\ft8xx +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\grove_lcd +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\interconn +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\nxp_flexio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\nxp_rtxxx_dsp_ctrl +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\pio_rpi_pico +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\renesas_ra_external_interrupt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\renesas_rx_dtc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\renesas_rx_external_interrupt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\stm32_wkup_pins +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\timeaware_gpio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\misc\interconn\renesas_elc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\pcie\endpoint +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\wifi\nrf_wifi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\wifi\nrf_wifi\bus +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\drivers\wifi\nrf_wifi\off_raw_tx +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\acpi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\adc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\battery +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\clock +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\comparator +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\dac +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\dai +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\display +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\dma +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\espi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\ethernet +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\flash_controller +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\gpio +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\i2c +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\input +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\inputmux +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\interrupt-controller +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\ipc_service +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\led +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\lora +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\lvgl +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\memory-attr +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\memory-controller +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\mfd +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\mipi_dbi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\mipi_dsi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\misc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\opamp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\pcie +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\pinctrl +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\power +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\pwm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\qspi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\rdc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\regulator +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\reserved-memory +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\reset +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\sensor +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\sent +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\spi +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\timer +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\usb +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\usb-c +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\video +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\clock\silabs +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\dma\silabs +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\misc\renesas +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\misc\renesas\ra-elc +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\pinctrl\renesas +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\dt-bindings\pinctrl\silabs +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\gnss\rtk +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\ipc\backends +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\kernel\internal +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\kernel\mm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\linker\common-rom +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\ec_host_cmd +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\hawkbit +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\smp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\transport +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\enum_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\fs_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\img_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\os_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\settings_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\shell_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\stat_mgmt +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\mgmt\mcumgr\grp\zephyr +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\modem\at +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\modem\backend +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\modem\ubx +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\net\conn_mgr +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\net\hdlc_rcp_if +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\net\http +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\net\prometheus +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\pmci\mctp +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\posix\arpa +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\posix\net +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\posix\netinet +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\posix\sys +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\sys\internal +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\toolchain\iar +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\usb\class +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\xen\dom0 +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\xen\public +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\xen\public\hvm +C:/Users/iteedi/zephyrproject/zephyr/include\zephyr\xen\public\io diff --git a/firmware/canfd_cdc_composite/build/zephyr/runners.yaml b/firmware/canfd_cdc_composite/build/zephyr/runners.yaml new file mode 100644 index 0000000..42a95c8 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/runners.yaml @@ -0,0 +1,36 @@ +# Available runners configured by board.cmake. +runners: +- pyocd +- jlink +- openocd + +# Default flash runner if --runner is not given. +flash-runner: pyocd + +# Default debug runner if --runner is not given. +debug-runner: pyocd + +# Common runner configuration values. +config: + board_dir: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews + # Build outputs: + elf_file: zephyr.elf + hex_file: zephyr.hex + bin_file: zephyr.bin + # Host tools: + gdb: C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb.exe + +# Runner specific arguments +args: + pyocd: + - --dt-flash=y + - --target=stm32g0b1kbux + jlink: + - --dt-flash=y + - --device=STM32G0B1KB + - --speed=4000 + openocd: + - --cmd-load + - flash write_image erase + - --cmd-verify + - verify_image diff --git a/firmware/canfd_cdc_composite/build/zephyr/snippets_generated.cmake b/firmware/canfd_cdc_composite/build/zephyr/snippets_generated.cmake new file mode 100644 index 0000000..ed54699 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/snippets_generated.cmake @@ -0,0 +1,20 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your snippets. +# Its contents are an implementation detail that should not be used outside +# of Zephyr's snippets CMake module. +# +# See the Snippets guide in the Zephyr documentation for more information. + +############################################################################### +# Global information about all snippets. + +# The name of every snippet that was discovered. +set(SNIPPET_NAMES "bt-ll-sw-split" "cdc-acm-console" "flash-16M" "flash-32M" "flash-4M" "flash-8M" "hci-uart-native-sim" "nordic-flpr" "nordic-flpr-xip" "nordic-log-stm" "nordic-log-stm-dict" "nordic-log-stm-tpiu-dict" "nordic-ppr" "nordic-ppr-xip" "nus-console" "psram-2M" "psram-4M" "psram-8M" "psram-reloc" "psram-wifi" "ram-console" "ram-tracing" "rp2-boot-mode-retention" "rtt-console" "rtt-tracing" "semihost-tracing" "serial-console" "silabs-pti" "socketcan-native-sim" "usbip-native-sim" "video-sw-generator" "wifi-credentials" "wifi-enterprise" "wifi-ip" "wifi-ipv4" "wifi-ipv6" "xen_dom0" "xiao-serial-console") +# The paths to all the snippet.yml files. One snippet +# can have multiple snippet.yml files. +set(SNIPPET_PATHS "C:/Users/iteedi/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/nus-console/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/ram-console/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/rtt-console/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/serial-console/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml" "C:/Users/iteedi/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml") + +# Create variable scope for snippets build variables +zephyr_create_scope(snippets) + diff --git a/firmware/canfd_cdc_composite/build/zephyr/soc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/soc/cmake_install.cmake new file mode 100644 index 0000000..73ac737 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/soc/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/soc/common/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/soc/common/cmake_install.cmake new file mode 100644 index 0000000..c7affca --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/soc/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/soc/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/cmake_install.cmake new file mode 100644 index 0000000..3e75138 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/cmake_install.cmake new file mode 100644 index 0000000..2df06de --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/cmake_install.cmake new file mode 100644 index 0000000..b05d88a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/soc/st/stm32/stm32g0x + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/soc/soc/stm32g0b1xx/stm32g0x/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/cmake_install.cmake new file mode 100644 index 0000000..1f2e82a --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/canbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/cmake_install.cmake new file mode 100644 index 0000000..1486c99 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/cmake_install.cmake @@ -0,0 +1,160 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/canbus/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/cmake_install.cmake new file mode 100644 index 0000000..4604778 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/debug + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/debug/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/cmake_install.cmake new file mode 100644 index 0000000..1e48eea --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/fb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/cmake_install.cmake new file mode 100644 index 0000000..a41ad86 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/fs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/fs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/cmake_install.cmake new file mode 100644 index 0000000..96ffd7b --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/gnss + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/gnss/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/cmake_install.cmake new file mode 100644 index 0000000..8cc76b9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/instrumentation + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/instrumentation/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/cmake_install.cmake new file mode 100644 index 0000000..2c537f9 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/ipc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/ipc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/cmake_install.cmake new file mode 100644 index 0000000..9892f74 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/backends + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/cmake_install.cmake new file mode 100644 index 0000000..4337c4e --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/logging + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/backends/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/cmake_install.cmake new file mode 100644 index 0000000..1e3ae63 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/logging/frontends + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/logging/frontends/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/cmake_install.cmake new file mode 100644 index 0000000..0edfad3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/mem_mgmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mem_mgmt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/cmake_install.cmake new file mode 100644 index 0000000..d2a7879 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/mgmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/mgmt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/cmake_install.cmake new file mode 100644 index 0000000..5d6ba80 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/modbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/modbus/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/cmake_install.cmake new file mode 100644 index 0000000..4dbe788 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/cmake_install.cmake new file mode 100644 index 0000000..2f742ea --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/pm/policy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pm/policy/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/cmake_install.cmake new file mode 100644 index 0000000..5b631b1 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/pmci + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/pmci/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/cmake_install.cmake new file mode 100644 index 0000000..77062c0 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/portability + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/portability/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/random/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/random/cmake_install.cmake new file mode 100644 index 0000000..aac803f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/random/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/random + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/random/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/cmake_install.cmake new file mode 100644 index 0000000..f10b718 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/rtio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/rtio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/cmake_install.cmake new file mode 100644 index 0000000..067b8e3 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/sd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/sd/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/cmake_install.cmake new file mode 100644 index 0000000..753dcbf --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/stats + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/stats/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/cmake_install.cmake new file mode 100644 index 0000000..a5e572d --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/storage + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/storage/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/cmake_install.cmake new file mode 100644 index 0000000..3aecc57 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/task_wdt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/task_wdt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/cmake_install.cmake new file mode 100644 index 0000000..503c4aa --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/testsuite + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/testsuite/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/cmake_install.cmake new file mode 100644 index 0000000..5a23a10 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/tracing + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/tracing/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/cmake_install.cmake new file mode 100644 index 0000000..51afa26 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/cmake_install.cmake new file mode 100644 index 0000000..4c37953 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device/class + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/cmake_install.cmake b/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/cmake_install.cmake new file mode 100644 index 0000000..21d2f27 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/Users/iteedi/zephyrproject/zephyr/subsys/usb/device + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Zephyr-Kernel") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/class/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/build/zephyr/subsys/usb/device/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/firmware/canfd_cdc_composite/build/zephyr/syscall_weakdefs_llext.c b/firmware/canfd_cdc_composite/build/zephyr/syscall_weakdefs_llext.c new file mode 100644 index 0000000..fcd8a93 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/syscall_weakdefs_llext.c @@ -0,0 +1,222 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#include +#include + +/* + * This symbol is placed at address 0 by llext-sections.ld. Its value and + * type is not important, we are only interested in its location. + */ +static void * const no_syscall_impl Z_GENERIC_SECTION(llext_no_syscall_impl); + +/* + * Weak references to all syscall implementations. Those not found by the + * linker outside this file will be exported as NULL and simply fail when + * an extension requiring them is loaded. + */ +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_add; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_and; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_cas; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_nand; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_or; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_ptr_cas; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_ptr_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_sub; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_atomic_xor; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_add_rx_filter_msgq; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_calc_timing; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_calc_timing_data; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_bitrate_max; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_bitrate_min; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_capabilities; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_core_clock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_max_filters; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_mode; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_state; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_timing_data_max; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_timing_data_min; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_timing_max; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_timing_min; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_get_transceiver; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_recover; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_remove_rx_filter; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_send; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_set_bitrate; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_set_bitrate_data; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_set_mode; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_set_timing; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_set_timing_data; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_start; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_ack_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_bit0_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_bit1_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_bit_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_crc_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_form_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_rx_overruns; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stats_get_stuff_errors; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_can_stop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_deinit; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_get_binding; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_get_by_dt_nodelabel; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_is_ready; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_get_pending_int; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_get_config; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_interrupt_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_clear_bits_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_get_direction; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_get_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_set_bits_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_set_masked_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_toggle_bits; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_clear_reset_cause; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_device_eui64; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_device_id; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_reset_cause; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_hwinfo_get_supported_reset_cause; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_busy_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_broadcast; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_signal; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_clear; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_post; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_set_masked; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_all; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_all_safe; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_safe; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_float_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_float_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_futex_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_futex_wake; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_is_preempt_thread; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_get_attrs; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_num_free_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_num_used_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_peek; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_peek_at; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_purge; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_put; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_put_front; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_lock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_unlock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_access_grant; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_alloc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_alloc_size; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_release; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_close; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_read; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_write; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_raise; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_alloc_append; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_alloc_prepend; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_cancel_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_is_empty; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_peek_head; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_peek_tail; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_reschedule; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sched_current_thread_query; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_count_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_give; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_take; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_pop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_push; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_str_out; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_abort; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_absolute_deadline_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_create; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_custom_data_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_custom_data_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_deadline_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_join; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_name_copy; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_name_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_priority_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_priority_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_resume; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_alloc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_free; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_space_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_suspend; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_timeout_expires_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_timeout_remaining_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_expires_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_remaining_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_start; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_status_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_status_sync; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_stop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_user_data_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_user_data_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_uptime_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_usleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_wakeup; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_yield; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_buffered_cnt; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_filter_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_frontend_filter_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_panic; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_process; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_reset_line_assert; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_reset_line_deassert; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_reset_line_toggle; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_reset_status; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_getrtoffset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_hw_cycles_per_sec_runtime_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_nanosleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_settime; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_config_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_drv_cmd; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_err_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_err_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_err_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_is_pending; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_rx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_rx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_tx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_tx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_update; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_line_ctrl_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_line_ctrl_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_in; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_in_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_out; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_out_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_enable_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx_abort; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_0; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_1; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_2; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_static_create; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_sys_mutex_kernel_lock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_sys_mutex_kernel_unlock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_fputc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_fwrite; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_read_stdin; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_write_stdout; diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.bin b/firmware/canfd_cdc_composite/build/zephyr/zephyr.bin new file mode 100644 index 0000000..f6b530f Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/zephyr.bin differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts b/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts new file mode 100644 index 0000000..2332cbb --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts @@ -0,0 +1,1127 @@ +/dts-v1/; + +/* node '/' defined in zephyr\dts\common\skeleton.dtsi:9 */ +/ { + #address-cells = < 0x1 >; /* in zephyr\dts\common\skeleton.dtsi:10 */ + #size-cells = < 0x1 >; /* in zephyr\dts\common\skeleton.dtsi:11 */ + model = "EWS STM32G0B1KBU6 board"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:13 */ + compatible = "st,stm32g0b1kb-ews"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:14 */ + + /* node '/chosen' defined in zephyr\dts\common\skeleton.dtsi:13 */ + chosen { + zephyr,flash-controller = &flash; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:28 */ + zephyr,console = &usart1; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:17 */ + zephyr,shell-uart = &usart1; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:18 */ + zephyr,uart-mcumgr = &usart1; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:19 */ + zephyr,sram = &sram0; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:20 */ + zephyr,flash = &flash0; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:21 */ + zephyr,code-partition = &slot0_partition; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:22 */ + zephyr,canbus = &fdcan2; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:23 */ + }; + + /* node '/aliases' defined in zephyr\dts\common\skeleton.dtsi:15 */ + aliases { + led0 = &status_led; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:49 */ + pfet0 = &pfet1; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:50 */ + pfet1 = &pfet2; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:51 */ + watchdog0 = &iwdg; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:52 */ + die-temp0 = &die_temp; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:53 */ + volt-sensor0 = &vref; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:54 */ + volt-sensor1 = &vbat; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:55 */ + }; + + /* node '/soc' defined in zephyr\dts\arm\armv6-m.dtsi:6 */ + soc { + #address-cells = < 0x1 >; /* in zephyr\dts\arm\armv6-m.dtsi:7 */ + #size-cells = < 0x1 >; /* in zephyr\dts\arm\armv6-m.dtsi:8 */ + interrupt-parent = < &nvic >; /* in zephyr\dts\arm\armv6-m.dtsi:10 */ + ranges; /* in zephyr\dts\arm\armv6-m.dtsi:11 */ + compatible = "st,stm32g0b1", + "st,stm32g0", + "simple-bus"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:23 */ + + /* node '/soc/interrupt-controller@e000e100' defined in zephyr\dts\arm\armv6-m.dtsi:13 */ + nvic: interrupt-controller@e000e100 { + #address-cells = < 0x1 >; /* in zephyr\dts\arm\armv6-m.dtsi:14 */ + compatible = "arm,v6m-nvic"; /* in zephyr\dts\arm\armv6-m.dtsi:15 */ + reg = < 0xe000e100 0xc00 >; /* in zephyr\dts\arm\armv6-m.dtsi:16 */ + interrupt-controller; /* in zephyr\dts\arm\armv6-m.dtsi:17 */ + #interrupt-cells = < 0x2 >; /* in zephyr\dts\arm\armv6-m.dtsi:18 */ + arm,num-irq-priority-bits = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:575 */ + phandle = < 0x1 >; /* in zephyr\dts\arm\armv6-m.dtsi:10 */ + }; + + /* node '/soc/timer@e000e010' defined in zephyr\dts\arm\armv6-m.dtsi:21 */ + systick: timer@e000e010 { + compatible = "arm,armv6m-systick"; /* in zephyr\dts\arm\armv6-m.dtsi:22 */ + reg = < 0xe000e010 0x10 >; /* in zephyr\dts\arm\armv6-m.dtsi:23 */ + }; + + /* node '/soc/flash-controller@40022000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:114 */ + flash: flash-controller@40022000 { + compatible = "st,stm32-flash-controller", + "st,stm32g0-flash-controller"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:115 */ + reg = < 0x40022000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:116 */ + interrupts = < 0x3 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:117 */ + clocks = < &rcc 0x38 0x100 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:118 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:120 */ + #size-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:121 */ + + /* node '/soc/flash-controller@40022000/flash@8000000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:123 */ + flash0: flash@8000000 { + compatible = "st,stm32-nv-flash", + "soc-nv-flash"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:124 */ + write-block-size = < 0x8 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:126 */ + erase-block-size = < 0x800 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:127 */ + max-erase-time = < 0x28 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:129 */ + reg = < 0x8000000 0x80000 >; /* in zephyr\dts\arm\st\g0\stm32g0b1Xe.dtsi:17 */ + + /* node '/soc/flash-controller@40022000/flash@8000000/partitions' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:133 */ + partitions { + compatible = "fixed-partitions"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:134 */ + #address-cells = < 0x1 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:135 */ + #size-cells = < 0x1 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:136 */ + + /* node '/soc/flash-controller@40022000/flash@8000000/partitions/partition@0' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:138 */ + boot_partition: partition@0 { + label = "mcuboot"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:139 */ + reg = < 0x0 0x4000 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:140 */ + read-only; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:141 */ + }; + + /* node '/soc/flash-controller@40022000/flash@8000000/partitions/partition@4000' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:144 */ + slot0_partition: partition@4000 { + label = "image-0"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:145 */ + reg = < 0x4000 0x18000 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:146 */ + }; + + /* node '/soc/flash-controller@40022000/flash@8000000/partitions/partition@1c000' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:149 */ + slot1_partition: partition@1c000 { + label = "image-1"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:150 */ + reg = < 0x1c000 0x4000 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:151 */ + }; + }; + }; + }; + + /* node '/soc/rcc@40021000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:133 */ + rcc: rcc@40021000 { + compatible = "st,stm32f0-rcc"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:134 */ + #clock-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:135 */ + reg = < 0x40021000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:136 */ + clocks = < &pll >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:83 */ + clock-frequency = < 0x3d09000 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:84 */ + ahb-prescaler = < 0x1 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:85 */ + apb1-prescaler = < 0x1 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:86 */ + phandle = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:118 */ + + /* node '/soc/rcc@40021000/reset-controller' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:138 */ + rctl: reset-controller { + compatible = "st,stm32-rcc-rctl"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:139 */ + #reset-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:140 */ + phandle = < 0x4 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:245 */ + }; + }; + + /* node '/soc/interrupt-controller@40021800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:144 */ + exti: interrupt-controller@40021800 { + compatible = "st,stm32g0-exti", + "st,stm32-exti"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:145 */ + interrupt-controller; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:146 */ + #interrupt-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:147 */ + #address-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:148 */ + reg = < 0x40021800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:149 */ + clocks = < &rcc 0x40 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:150 */ + interrupts = < 0x5 0x0 >, + < 0x6 0x0 >, + < 0x7 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:152 */ + interrupt-names = "line0-1", + "line2-3", + "line4-15"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:153 */ + line-ranges = < 0x0 0x2 >, + < 0x2 0x2 >, + < 0x4 0xc >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:154 */ + num-lines = < 0x40 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:183 */ + }; + + /* node '/soc/pin-controller@50000000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:157 */ + pinctrl: pin-controller@50000000 { + compatible = "st,stm32-pinctrl"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:158 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:159 */ + #size-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:160 */ + reg = < 0x50000000 0x2000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:161 */ + + /* node '/soc/pin-controller@50000000/gpio@50000000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:163 */ + gpioa: gpio@50000000 { + compatible = "st,stm32-gpio"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:164 */ + gpio-controller; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:165 */ + #gpio-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:166 */ + reg = < 0x50000000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:167 */ + clocks = < &rcc 0x34 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:168 */ + phandle = < 0x7 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:503 */ + }; + + /* node '/soc/pin-controller@50000000/gpio@50000400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:171 */ + gpiob: gpio@50000400 { + compatible = "st,stm32-gpio"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:172 */ + gpio-controller; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:173 */ + #gpio-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:174 */ + reg = < 0x50000400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:175 */ + clocks = < &rcc 0x34 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:176 */ + phandle = < 0x9 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:526 */ + }; + + /* node '/soc/pin-controller@50000000/gpio@50000800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:179 */ + gpioc: gpio@50000800 { + compatible = "st,stm32-gpio"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:180 */ + gpio-controller; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:181 */ + #gpio-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:182 */ + reg = < 0x50000800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:183 */ + clocks = < &rcc 0x34 0x4 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:184 */ + phandle = < 0x8 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:508 */ + }; + + /* node '/soc/pin-controller@50000000/gpio@50000c00' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:187 */ + gpiod: gpio@50000c00 { + compatible = "st,stm32-gpio"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:188 */ + gpio-controller; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:189 */ + #gpio-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:190 */ + reg = < 0x50000c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:191 */ + clocks = < &rcc 0x34 0x8 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:192 */ + }; + + /* node '/soc/pin-controller@50000000/gpio@50001400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:195 */ + gpiof: gpio@50001400 { + compatible = "st,stm32-gpio"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:196 */ + gpio-controller; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:197 */ + #gpio-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:198 */ + reg = < 0x50001400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:199 */ + clocks = < &rcc 0x34 0x20 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:200 */ + }; + + /* node '/soc/pin-controller@50000000/gpio@50001000' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:26 */ + gpioe: gpio@50001000 { + compatible = "st,stm32-gpio"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:27 */ + gpio-controller; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:28 */ + #gpio-cells = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:29 */ + reg = < 0x50001000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:30 */ + clocks = < &rcc 0x34 0x10 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:31 */ + phandle = < 0xa >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:163 */ + }; + + /* node '/soc/pin-controller@50000000/fdcan2_rx_pb0' defined in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:469 */ + fdcan2_rx_pb0: fdcan2_rx_pb0 { + pinmux = < 0x203 >; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:470 */ + phandle = < 0xb >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:115 */ + }; + + /* node '/soc/pin-controller@50000000/fdcan2_tx_pb1' defined in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:503 */ + fdcan2_tx_pb1: fdcan2_tx_pb1 { + pinmux = < 0x223 >; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:504 */ + phandle = < 0xc >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:115 */ + }; + + /* node '/soc/pin-controller@50000000/usart1_rx_pc5' defined in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:1744 */ + usart1_rx_pc5: usart1_rx_pc5 { + pinmux = < 0x4a1 >; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:1745 */ + phandle = < 0x6 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:96 */ + }; + + /* node '/soc/pin-controller@50000000/usart1_tx_pc4' defined in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:1859 */ + usart1_tx_pc4: usart1_tx_pc4 { + pinmux = < 0x481 >; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:1860 */ + bias-pull-up; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:1861 */ + phandle = < 0x5 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:96 */ + }; + + /* node '/soc/pin-controller@50000000/usb_dm_pa11' defined in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:2008 */ + usb_dm_pa11: usb_dm_pa11 { + pinmux = < 0x170 >; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:2009 */ + phandle = < 0xe >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:90 */ + }; + + /* node '/soc/pin-controller@50000000/usb_dp_pa12' defined in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:2012 */ + usb_dp_pa12: usb_dp_pa12 { + pinmux = < 0x190 >; /* in modules\hal\stm32\dts\st\g0\stm32g0b1r(b-c-e)tx-pinctrl.dtsi:2013 */ + phandle = < 0xf >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:90 */ + }; + }; + + /* node '/soc/rtc@40002800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:204 */ + rtc: rtc@40002800 { + compatible = "st,stm32-rtc"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:205 */ + reg = < 0x40002800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:206 */ + interrupts = < 0x2 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:207 */ + prescaler = < 0x8000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:209 */ + alarms-count = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:210 */ + alrm-exti-line = < 0x13 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:211 */ + clocks = < &rcc 0x3c 0x400 >, + < &rcc 0x3 0x228005c >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:103 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:105 */ + + /* node '/soc/rtc@40002800/backup_regs' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:220 */ + bbram: backup_regs { + compatible = "st,stm32-bbram"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:221 */ + st,backup-regs = < 0x5 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:222 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:223 */ + }; + }; + + /* node '/soc/watchdog@40003000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:227 */ + iwdg: watchdog@40003000 { + compatible = "st,stm32-watchdog"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:228 */ + reg = < 0x40003000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:229 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:109 */ + }; + + /* node '/soc/watchdog@40002c00' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:233 */ + wwdg: watchdog@40002c00 { + compatible = "st,stm32-window-watchdog"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:234 */ + reg = < 0x40002c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:235 */ + clocks = < &rcc 0x3c 0x800 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:236 */ + interrupts = < 0x0 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:237 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:238 */ + }; + + /* node '/soc/serial@40013800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:241 */ + usart1: serial@40013800 { + compatible = "st,stm32-usart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:242 */ + reg = < 0x40013800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:243 */ + clocks = < &rcc 0x40 0x4000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:244 */ + resets = < &rctl 0x60e >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:245 */ + interrupts = < 0x1b 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:246 */ + pinctrl-0 = < &usart1_tx_pc4 &usart1_rx_pc5 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:96 */ + pinctrl-names = "default"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:97 */ + current-speed = < 0x1c200 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:98 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:99 */ + }; + + /* node '/soc/serial@40004400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:250 */ + usart2: serial@40004400 { + compatible = "st,stm32-usart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:251 */ + reg = < 0x40004400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:252 */ + clocks = < &rcc 0x3c 0x20000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:253 */ + resets = < &rctl 0x591 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:254 */ + interrupts = < 0x1c 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:255 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:256 */ + }; + + /* node '/soc/timers@40007c00' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:259 */ + lptim1: stm32_lp_tick_source: timers@40007c00 { + compatible = "st,stm32-lptim"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:260 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:262 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:263 */ + reg = < 0x40007c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:264 */ + interrupts = < 0x11 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:265 */ + interrupt-names = "wakeup"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:266 */ + clocks = < &rcc 0x3c 0x80000000 >, + < &rcc 0x3 0x1320054 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:157 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:159 */ + }; + + /* node '/soc/timers@40012c00' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:270 */ + timers1: timers@40012c00 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:271 */ + reg = < 0x40012c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:272 */ + resets = < &rctl 0x60b >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:275 */ + interrupts = < 0xd 0x0 >, + < 0xe 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:276 */ + interrupt-names = "brk_up_trg_com", + "cc"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:277 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:278 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:279 */ + clocks = < &rcc 0x40 0x800 >, + < &rcc 0x9 0x160054 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:25 */ + + /* node '/soc/timers@40012c00/pwm' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:281 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:282 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:283 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:284 */ + }; + + /* node '/soc/timers@40012c00/counter' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:287 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:288 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:289 */ + }; + + /* node '/soc/timers@40012c00/qdec' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:292 */ + qdec { + compatible = "st,stm32-qdec"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:293 */ + st,input-filter-level = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:294 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:295 */ + }; + }; + + /* node '/soc/timers@40000400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:299 */ + timers3: timers@40000400 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:300 */ + reg = < 0x40000400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:301 */ + clocks = < &rcc 0x3c 0x2 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:302 */ + resets = < &rctl 0x581 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:304 */ + interrupts = < 0x10 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:305 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:306 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:307 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:308 */ + + /* node '/soc/timers@40000400/pwm' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:310 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:311 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:312 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:313 */ + }; + + /* node '/soc/timers@40000400/counter' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:316 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:317 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:318 */ + }; + + /* node '/soc/timers@40000400/qdec' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:321 */ + qdec { + compatible = "st,stm32-qdec"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:322 */ + st,input-filter-level = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:323 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:324 */ + }; + }; + + /* node '/soc/timers@40002000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:328 */ + timers14: timers@40002000 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:329 */ + reg = < 0x40002000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:330 */ + clocks = < &rcc 0x40 0x8000 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:331 */ + resets = < &rctl 0x60f >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:333 */ + interrupts = < 0x13 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:334 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:335 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:336 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:337 */ + + /* node '/soc/timers@40002000/pwm' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:339 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:340 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:341 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:342 */ + }; + + /* node '/soc/timers@40002000/counter' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:345 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:346 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:347 */ + }; + }; + + /* node '/soc/timers@40014400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:351 */ + timers16: timers@40014400 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:352 */ + reg = < 0x40014400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:353 */ + clocks = < &rcc 0x40 0x20000 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:354 */ + resets = < &rctl 0x611 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:356 */ + interrupts = < 0x15 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:357 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:358 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:359 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:360 */ + + /* node '/soc/timers@40014400/pwm' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:362 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:363 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:364 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:365 */ + }; + + /* node '/soc/timers@40014400/counter' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:368 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:369 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:370 */ + }; + }; + + /* node '/soc/timers@40014800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:374 */ + timers17: timers@40014800 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:375 */ + reg = < 0x40014800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:376 */ + clocks = < &rcc 0x40 0x40000 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:377 */ + resets = < &rctl 0x612 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:379 */ + interrupts = < 0x16 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:380 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:381 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:382 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:383 */ + + /* node '/soc/timers@40014800/pwm' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:385 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:386 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:387 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:388 */ + }; + + /* node '/soc/timers@40014800/counter' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:391 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:392 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:393 */ + }; + }; + + /* node '/soc/i2c@40005400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:397 */ + i2c1: i2c@40005400 { + compatible = "st,stm32-i2c-v2"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:398 */ + clock-frequency = < 0x186a0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:399 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:400 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:401 */ + reg = < 0x40005400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:402 */ + clocks = < &rcc 0x3c 0x200000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:403 */ + interrupts = < 0x17 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:404 */ + interrupt-names = "combined"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:405 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:406 */ + phandle = < 0x14 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:561 */ + }; + + /* node '/soc/i2c@40005800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:409 */ + i2c2: i2c@40005800 { + compatible = "st,stm32-i2c-v2"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:410 */ + clock-frequency = < 0x186a0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:411 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:412 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:413 */ + reg = < 0x40005800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:414 */ + clocks = < &rcc 0x3c 0x400000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:415 */ + interrupts = < 0x18 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:416 */ + interrupt-names = "combined"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:417 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:418 */ + phandle = < 0x15 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:569 */ + }; + + /* node '/soc/spi@40013000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:421 */ + spi1: spi@40013000 { + compatible = "st,stm32-spi-fifo", + "st,stm32-spi"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:422 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:423 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:424 */ + reg = < 0x40013000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:425 */ + clocks = < &rcc 0x40 0x1000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:426 */ + interrupts = < 0x19 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:427 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:428 */ + }; + + /* node '/soc/spi@40003800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:431 */ + spi2: spi@40003800 { + compatible = "st,stm32-spi-fifo", + "st,stm32-spi"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:432 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:433 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:434 */ + reg = < 0x40003800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:435 */ + clocks = < &rcc 0x3c 0x4000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:436 */ + interrupts = < 0x1a 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:437 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:438 */ + }; + + /* node '/soc/adc@40012400' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:441 */ + adc1: adc@40012400 { + compatible = "st,stm32-adc"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:442 */ + reg = < 0x40012400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:443 */ + clocks = < &rcc 0x40 0x100000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:444 */ + clock-names = "adcx"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:445 */ + interrupts = < 0xc 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:446 */ + #io-channel-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:447 */ + resolutions = < 0x60630c 0x51630c 0x42630c 0x33630c >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:448 */ + sampling-times = < 0x3 0x5 0x8 0xd 0x14 0x28 0x50 0xa1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:458 */ + num-sampling-time-common-channels = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:459 */ + st,adc-sequencer = "fixed"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:460 */ + st,adc-oversampler = "minimal"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:461 */ + st,adc-internal-regulator = "startup-sw-delay"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:462 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:463 */ + phandle = < 0x13 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:538 */ + }; + + /* node '/soc/dma@40020000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:466 */ + dma1: dma@40020000 { + compatible = "st,stm32-dma-v2"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:467 */ + #dma-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:468 */ + reg = < 0x40020000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:469 */ + clocks = < &rcc 0x38 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:471 */ + dma-offset = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:473 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:474 */ + interrupts = < 0x9 0x0 0xa 0x0 0xa 0x0 0xb 0x0 0xb 0x0 0xb 0x0 0xb 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:78 */ + dma-requests = < 0x7 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:79 */ + }; + + /* node '/soc/dmamux@40020800' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:478 */ + dmamux1: dmamux@40020800 { + compatible = "st,stm32-dmamux"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:479 */ + #dma-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:480 */ + reg = < 0x40020800 0x800 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:481 */ + interrupts = < 0xb 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:482 */ + dma-generators = < 0x4 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:484 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:486 */ + dma-channels = < 0xc >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:142 */ + dma-requests = < 0x49 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:143 */ + }; + + /* node '/soc/power@40007000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:489 */ + pwr: power@40007000 { + compatible = "st,stm32-pwr"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:490 */ + reg = < 0x40007000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:491 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:492 */ + wkup-pins-nb = < 0x6 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:494 */ + wkup-pins-pol; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:495 */ + wkup-pins-pupd; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:496 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:498 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:499 */ + + /* node '/soc/power@40007000/wkup-pin@1' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:501 */ + wkup-pin@1 { + reg = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:502 */ + wkup-gpios = < &gpioa 0x0 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:503 */ + }; + + /* node '/soc/power@40007000/wkup-pin@2' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:506 */ + wkup-pin@2 { + reg = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:507 */ + wkup-gpios = < &gpioa 0x4 0x1 >, + < &gpioc 0xd 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:508 */ + }; + + /* node '/soc/power@40007000/wkup-pin@4' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:514 */ + wkup-pin@4 { + reg = < 0x4 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:515 */ + wkup-gpios = < &gpioa 0x2 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:516 */ + }; + + /* node '/soc/power@40007000/wkup-pin@5' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:519 */ + wkup-pin@5 { + reg = < 0x5 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:520 */ + wkup-gpios = < &gpioc 0x5 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:521 */ + }; + + /* node '/soc/power@40007000/wkup-pin@6' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:524 */ + wkup-pin@6 { + reg = < 0x6 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:525 */ + wkup-gpios = < &gpiob 0x5 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:526 */ + }; + + /* node '/soc/power@40007000/wkup-pin@3' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:161 */ + wkup-pin@3 { + reg = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:162 */ + wkup-gpios = < &gpioe 0x6 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:163 */ + }; + }; + + /* node '/soc/serial@40008000' defined in zephyr\dts\arm\st\g0\stm32g031.dtsi:15 */ + lpuart1: serial@40008000 { + compatible = "st,stm32-lpuart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:16 */ + reg = < 0x40008000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:17 */ + clocks = < &rcc 0x3c 0x100000 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:18 */ + resets = < &rctl 0x594 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:19 */ + interrupts = < 0x1d 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:20 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:21 */ + }; + + /* node '/soc/timers@40000000' defined in zephyr\dts\arm\st\g0\stm32g031.dtsi:29 */ + timers2: timers@40000000 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:30 */ + reg = < 0x40000000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:31 */ + clocks = < &rcc 0x3c 0x1 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:32 */ + resets = < &rctl 0x580 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:34 */ + interrupts = < 0xf 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:35 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:36 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:37 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:38 */ + + /* node '/soc/timers@40000000/pwm' defined in zephyr\dts\arm\st\g0\stm32g031.dtsi:40 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:41 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:42 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:43 */ + }; + + /* node '/soc/timers@40000000/qdec' defined in zephyr\dts\arm\st\g0\stm32g031.dtsi:46 */ + qdec { + compatible = "st,stm32-qdec"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:47 */ + st,input-filter-level = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:48 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g031.dtsi:49 */ + }; + }; + + /* node '/soc/timers@40001000' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:13 */ + timers6: timers@40001000 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:14 */ + reg = < 0x40001000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:15 */ + clocks = < &rcc 0x3c 0x10 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:16 */ + resets = < &rctl 0x584 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:18 */ + interrupts = < 0x11 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:19 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:20 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:21 */ + + /* node '/soc/timers@40001000/counter' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:23 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:24 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:25 */ + }; + }; + + /* node '/soc/timers@40001400' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:29 */ + timers7: timers@40001400 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:30 */ + reg = < 0x40001400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:31 */ + clocks = < &rcc 0x3c 0x20 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:32 */ + resets = < &rctl 0x585 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:34 */ + interrupts = < 0x12 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:35 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:36 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:37 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:38 */ + + /* node '/soc/timers@40001400/counter' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:40 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:41 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:42 */ + }; + }; + + /* node '/soc/timers@40014000' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:46 */ + timers15: timers@40014000 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:47 */ + reg = < 0x40014000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:48 */ + clocks = < &rcc 0x40 0x10000 >, + < &rcc 0x9 0x180054 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:49 */ + resets = < &rctl 0x610 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:51 */ + interrupts = < 0x14 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:52 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:53 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:54 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:55 */ + + /* node '/soc/timers@40014000/pwm' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:57 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:58 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:59 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:60 */ + }; + + /* node '/soc/timers@40014000/counter' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:63 */ + counter { + compatible = "st,stm32-counter"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:64 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:65 */ + }; + }; + + /* node '/soc/dac@40007400' defined in zephyr\dts\arm\st\g0\stm32g051.dtsi:69 */ + dac1: dac@40007400 { + compatible = "st,stm32-dac"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:70 */ + reg = < 0x40007400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:71 */ + clocks = < &rcc 0x3c 0x20000000 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:72 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:73 */ + #io-channel-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g051.dtsi:74 */ + }; + + /* node '/soc/serial@40004800' defined in zephyr\dts\arm\st\g0\stm32g071.dtsi:15 */ + usart3: serial@40004800 { + compatible = "st,stm32-usart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:16 */ + reg = < 0x40004800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:17 */ + clocks = < &rcc 0x3c 0x40000 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:18 */ + resets = < &rctl 0x592 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:19 */ + interrupts = < 0x1d 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:20 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:21 */ + }; + + /* node '/soc/serial@40004c00' defined in zephyr\dts\arm\st\g0\stm32g071.dtsi:24 */ + usart4: serial@40004c00 { + compatible = "st,stm32-usart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:25 */ + reg = < 0x40004c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:26 */ + clocks = < &rcc 0x3c 0x80000 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:27 */ + resets = < &rctl 0x593 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:28 */ + interrupts = < 0x1d 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:29 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:30 */ + }; + + /* node '/soc/ucpd@4000a000' defined in zephyr\dts\arm\st\g0\stm32g071.dtsi:37 */ + ucpd1: ucpd@4000a000 { + compatible = "st,stm32-ucpd"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:38 */ + reg = < 0x4000a000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:39 */ + clocks = < &rcc 0x3c 0x2000000 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:40 */ + interrupts = < 0x8 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:41 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:42 */ + }; + + /* node '/soc/ucpd@4000a400' defined in zephyr\dts\arm\st\g0\stm32g071.dtsi:45 */ + ucpd2: ucpd@4000a400 { + compatible = "st,stm32-ucpd"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:46 */ + reg = < 0x4000a400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:47 */ + clocks = < &rcc 0x3c 0x4000000 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:48 */ + interrupts = < 0x8 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:49 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g071.dtsi:50 */ + }; + + /* node '/soc/can@40006400' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:35 */ + fdcan1: can@40006400 { + compatible = "st,stm32-fdcan"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:36 */ + reg = < 0x40006400 0x400 >, + < 0x4000b400 0x350 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:37 */ + reg-names = "m_can", + "message_ram"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:38 */ + interrupts = < 0x15 0x0 >, + < 0x16 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:39 */ + interrupt-names = "int0", + "int1"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:40 */ + clocks = < &rcc 0x3c 0x1000 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:41 */ + bosch,mram-cfg = < 0x0 0x1c 0x8 0x3 0x3 0x0 0x3 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:42 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:43 */ + }; + + /* node '/soc/can@40006800' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:46 */ + fdcan2: can@40006800 { + compatible = "st,stm32-fdcan"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:47 */ + reg = < 0x40006800 0x400 >, + < 0x4000b750 0x350 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:48 */ + reg-names = "m_can", + "message_ram"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:49 */ + interrupts = < 0x15 0x0 >, + < 0x16 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:50 */ + interrupt-names = "int0", + "int1"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:51 */ + bosch,mram-cfg = < 0x0 0x1c 0x8 0x3 0x3 0x0 0x3 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:53 */ + clocks = < &rcc 0x3c 0x1000 >, + < &rcc 0xb 0x1280058 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:113 */ + pinctrl-0 = < &fdcan2_rx_pb0 &fdcan2_tx_pb1 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:115 */ + pinctrl-names = "default"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:116 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:117 */ + }; + + /* node '/soc/serial@40005000' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:57 */ + usart5: serial@40005000 { + compatible = "st,stm32-usart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:58 */ + reg = < 0x40005000 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:59 */ + clocks = < &rcc 0x3c 0x100 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:60 */ + resets = < &rctl 0x588 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:61 */ + interrupts = < 0x1d 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:62 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:63 */ + }; + + /* node '/soc/serial@40013c00' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:66 */ + usart6: serial@40013c00 { + compatible = "st,stm32-usart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:67 */ + reg = < 0x40013c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:68 */ + clocks = < &rcc 0x3c 0x200 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:69 */ + resets = < &rctl 0x589 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:70 */ + interrupts = < 0x1d 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:71 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:72 */ + }; + + /* node '/soc/serial@40008400' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:75 */ + lpuart2: serial@40008400 { + compatible = "st,stm32-lpuart", + "st,stm32-uart"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:76 */ + reg = < 0x40008400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:77 */ + clocks = < &rcc 0x3c 0x80 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:78 */ + resets = < &rctl 0x587 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:79 */ + interrupts = < 0x1c 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:80 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:81 */ + }; + + /* node '/soc/timers@40000800' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:84 */ + timers4: timers@40000800 { + compatible = "st,stm32-timers"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:85 */ + reg = < 0x40000800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:86 */ + clocks = < &rcc 0x3c 0x4 >, + < &rcc 0x9 0xff >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:87 */ + resets = < &rctl 0x582 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:89 */ + interrupts = < 0x10 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:90 */ + interrupt-names = "global"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:91 */ + st,prescaler = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:92 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:93 */ + + /* node '/soc/timers@40000800/pwm' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:95 */ + pwm { + compatible = "st,stm32-pwm"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:96 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:97 */ + #pwm-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:98 */ + }; + + /* node '/soc/timers@40000800/qdec' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:101 */ + qdec { + compatible = "st,stm32-qdec"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:102 */ + st,input-filter-level = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:103 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:104 */ + }; + }; + + /* node '/soc/i2c@40008800' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:108 */ + i2c3: i2c@40008800 { + compatible = "st,stm32-i2c-v2"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:109 */ + clock-frequency = < 0x186a0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:110 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:111 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:112 */ + reg = < 0x40008800 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:113 */ + clocks = < &rcc 0x3c 0x800000 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:114 */ + interrupts = < 0x18 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:115 */ + interrupt-names = "combined"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:116 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:117 */ + phandle = < 0x16 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:177 */ + }; + + /* node '/soc/spi@40003c00' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:120 */ + spi3: spi@40003c00 { + compatible = "st,stm32-spi-fifo", + "st,stm32-spi"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:121 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:122 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:123 */ + reg = < 0x40003c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:124 */ + clocks = < &rcc 0x3c 0x8000 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:125 */ + interrupts = < 0x1a 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:126 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:127 */ + }; + + /* node '/soc/dma@40020400' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:130 */ + dma2: dma@40020400 { + compatible = "st,stm32-dma-v2"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:131 */ + #dma-cells = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:132 */ + reg = < 0x40020400 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:133 */ + interrupts = < 0xb 0x0 0xb 0x0 0xb 0x0 0xb 0x0 0xb 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:134 */ + clocks = < &rcc 0x38 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:135 */ + dma-requests = < 0x5 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:136 */ + dma-offset = < 0x7 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:137 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:138 */ + }; + + /* node '/soc/usb@40005c00' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:146 */ + usb: zephyr_udc0: usb@40005c00 { + compatible = "st,stm32-usb"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:147 */ + reg = < 0x40005c00 0x400 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:148 */ + interrupts = < 0x8 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:149 */ + interrupt-names = "usb"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:150 */ + num-bidir-endpoints = < 0x8 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:151 */ + ram-size = < 0x800 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:152 */ + maximum-speed = "full-speed"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:153 */ + phys = < &usb_fs_phy >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:154 */ + clocks = < &rcc 0x3c 0x2000 >, + < &rcc 0x5 0x2c0058 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:155 */ + pinctrl-0 = < &usb_dm_pa11 &usb_dp_pa12 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:90 */ + pinctrl-names = "default"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:91 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:92 */ + }; + }; + + /* node '/cpus' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:31 */ + cpus { + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:32 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:33 */ + + /* node '/cpus/cpu@0' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:35 */ + cpu0: cpu@0 { + device_type = "cpu"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:36 */ + compatible = "arm,cortex-m0+"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:37 */ + reg = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:38 */ + cpu-power-states = < &stop0 &stop1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:39 */ + }; + + /* node '/cpus/power-states' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:42 */ + power-states { + + /* node '/cpus/power-states/state0' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:43 */ + stop0: state0 { + compatible = "zephyr,power-state"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:44 */ + power-state-name = "suspend-to-idle"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:45 */ + substate-id = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:46 */ + min-residency-us = < 0x14 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:47 */ + phandle = < 0x10 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:39 */ + }; + + /* node '/cpus/power-states/state1' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:50 */ + stop1: state1 { + compatible = "zephyr,power-state"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:51 */ + power-state-name = "suspend-to-idle"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:52 */ + substate-id = < 0x2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:53 */ + min-residency-us = < 0x64 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:54 */ + phandle = < 0x11 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:39 */ + }; + }; + }; + + /* node '/memory@20000000' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:59 */ + sram0: memory@20000000 { + compatible = "zephyr,memory-region", + "mmio-sram"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:60 */ + zephyr,memory-region = "SRAM0"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:61 */ + reg = < 0x20000000 0x24000 >; /* in zephyr\dts\arm\st\g0\stm32g0b1Xe.dtsi:11 */ + }; + + /* node '/clocks' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:64 */ + clocks { + + /* node '/clocks/clk-hse' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:65 */ + clk_hse: clk-hse { + #clock-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:66 */ + compatible = "st,stm32-hse-clock"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:67 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:68 */ + }; + + /* node '/clocks/clk-hsi' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:71 */ + clk_hsi: clk-hsi { + #clock-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:72 */ + compatible = "st,stm32g0-hsi-clock"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:73 */ + hsi-div = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:74 */ + clock-frequency = < 0xf42400 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:75 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:64 */ + phandle = < 0x12 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:78 */ + }; + + /* node '/clocks/clk-lse' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:79 */ + clk_lse: clk-lse { + #clock-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:80 */ + compatible = "st,stm32-lse-clock"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:81 */ + clock-frequency = < 0x8000 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:82 */ + driving-capability = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:83 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:84 */ + }; + + /* node '/clocks/clk-lsi' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:87 */ + clk_lsi: clk-lsi { + #clock-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:88 */ + compatible = "fixed-clock"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:89 */ + clock-frequency = < 0x7d00 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:90 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:60 */ + }; + + /* node '/clocks/pll' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:94 */ + pll: pll { + #clock-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:95 */ + compatible = "st,stm32g0-pll-clock"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:96 */ + div-m = < 0x1 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:73 */ + mul-n = < 0x8 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:74 */ + div-p = < 0x2 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:75 */ + div-q = < 0x2 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:76 */ + div-r = < 0x2 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:77 */ + clocks = < &clk_hsi >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:78 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:79 */ + phandle = < 0x3 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:83 */ + }; + + /* node '/clocks/clk-hsi48' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:14 */ + clk_hsi48: clk-hsi48 { + #clock-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:15 */ + compatible = "st,stm32-hsi48-clock"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:16 */ + clock-frequency = < 0x2dc6c00 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:17 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:68 */ + crs-usb-sof; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:69 */ + }; + }; + + /* node '/mcos' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:101 */ + mcos { + + /* node '/mcos/mco1' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:102 */ + mco1: mco1 { + compatible = "st,stm32-clock-mco"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:103 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:104 */ + }; + + /* node '/mcos/mco2' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:107 */ + mco2: mco2 { + compatible = "st,stm32-clock-mco"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:108 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:109 */ + }; + }; + + /* node '/dietemp' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:531 */ + die_temp: dietemp { + compatible = "st,stm32-temp-cal"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:532 */ + ts-cal1-addr = < 0x1fff75a8 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:533 */ + ts-cal2-addr = < 0x1fff75ca >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:534 */ + ts-cal1-temp = < 0x1e >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:535 */ + ts-cal2-temp = < 0x82 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:536 */ + ts-cal-vrefanalog = < 0xbb8 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:537 */ + io-channels = < &adc1 0xc >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:538 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:121 */ + }; + + /* node '/vref' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:542 */ + vref: vref { + compatible = "st,stm32-vref"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:543 */ + vrefint-cal-addr = < 0x1fff75aa >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:544 */ + vrefint-cal-mv = < 0xbb8 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:545 */ + io-channels = < &adc1 0xd >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:546 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:125 */ + }; + + /* node '/vbat' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:550 */ + vbat: vbat { + compatible = "st,stm32-vbat"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:551 */ + ratio = < 0x3 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:552 */ + io-channels = < &adc1 0xe >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:553 */ + status = "okay"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:129 */ + }; + + /* node '/smbus1' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:557 */ + smbus1: smbus1 { + compatible = "st,stm32-smbus"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:558 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:559 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:560 */ + i2c = < &i2c1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:561 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:562 */ + }; + + /* node '/smbus2' defined in zephyr\dts\arm\st\g0\stm32g0.dtsi:565 */ + smbus2: smbus2 { + compatible = "st,stm32-smbus"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:566 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:567 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:568 */ + i2c = < &i2c2 >; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:569 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0.dtsi:570 */ + }; + + /* node '/usbphy' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:168 */ + usb_fs_phy: usbphy { + compatible = "usb-nop-xceiv"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:169 */ + #phy-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:170 */ + phandle = < 0xd >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:154 */ + }; + + /* node '/smbus3' defined in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:173 */ + smbus3: smbus3 { + compatible = "st,stm32-smbus"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:174 */ + #address-cells = < 0x1 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:175 */ + #size-cells = < 0x0 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:176 */ + i2c = < &i2c3 >; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:177 */ + status = "disabled"; /* in zephyr\dts\arm\st\g0\stm32g0b1.dtsi:178 */ + }; + + /* node '/leds' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:26 */ + leds: leds { + compatible = "gpio-leds"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:27 */ + + /* node '/leds/led_0' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:28 */ + status_led: led_0 { + gpios = < &gpiob 0x4 0x0 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:29 */ + label = "Status LED"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:30 */ + }; + }; + + /* node '/gpio_keys' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:34 */ + gpio_keys { + compatible = "gpio-keys"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:35 */ + + /* node '/gpio_keys/pfet1' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:36 */ + pfet1: pfet1 { + label = "PFET1"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:37 */ + gpios = < &gpioa 0x8 0x0 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:38 */ + zephyr,code = < 0x2 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:39 */ + }; + + /* node '/gpio_keys/pfet2' defined in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:41 */ + pfet2: pfet2 { + label = "PFET2"; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:42 */ + gpios = < &gpiob 0x2 0x0 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:43 */ + zephyr,code = < 0x3 >; /* in projects\EWS\firmware\canfd_cdc_composite\boards\arm\ews\ews.dts:44 */ + }; + }; +}; diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.d b/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.d new file mode 100644 index 0000000..2b241fd --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.d @@ -0,0 +1,41 @@ +empty_file.o: C:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c \ + C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1Xe.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g071.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g051.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g031.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g030.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/arm/armv6-m.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/dts/common/skeleton.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32_adc.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32_pwr.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h \ + C:/Users/iteedi/zephyrproject/zephyr/dts/common/freq.h \ + C:/Users/iteedi/zephyrproject/zephyr/dts/common/mem.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_b1x_c1x_clock.h \ + C:/Users/iteedi/zephyrproject/modules/hal/stm32/dts/st/g0/stm32g0b1r(b-c-e)tx-pinctrl.dtsi \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h \ + C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre b/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre new file mode 100644 index 0000000..a52e5ab --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr.dts.pre @@ -0,0 +1,3268 @@ +# 0 "C:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c" +# 0 "" +# 0 "" +# 1 "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts" 1 + + + + + + +/dts-v1/; +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1Xe.dtsi" 1 3 4 + + + + + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1.dtsi" 1 3 4 + + + + + + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g071.dtsi" 1 3 4 +# 9 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g071.dtsi" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g051.dtsi" 1 3 4 + + + + + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g031.dtsi" 1 3 4 + + + + + + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g030.dtsi" 1 3 4 + + + + + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 1 3 4 +# 11 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/armv6-m.dtsi" 1 3 4 + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/common/skeleton.dtsi" 1 3 4 +# 9 "C:/Users/iteedi/zephyrproject/zephyr/dts/common/skeleton.dtsi" 3 4 +/ { + #address-cells = <1>; + #size-cells = <1>; + + chosen {}; + + aliases {}; +}; +# 4 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/armv6-m.dtsi" 2 3 4 + +/ { + soc { + #address-cells = <1>; + #size-cells = <1>; + compatible = "simple-bus"; + interrupt-parent = <&nvic>; + ranges; + + nvic: interrupt-controller@e000e100 { + #address-cells = <1>; + compatible = "arm,v6m-nvic"; + reg = <0xe000e100 0xc00>; + interrupt-controller; + #interrupt-cells = <2>; + }; + + systick: timer@e000e010 { + compatible = "arm,armv6m-systick"; + reg = <0xe000e010 0x10>; + }; + }; +}; +# 12 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h" 1 3 4 +# 9 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h" 1 3 4 +# 10 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h" 2 3 4 +# 13 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h" 1 3 4 +# 14 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h" 1 3 4 +# 15 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h" 1 3 4 +# 16 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h" 1 3 4 +# 17 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h" 1 3 4 +# 9 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h" 1 3 4 +# 19 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h" 1 3 4 +# 34 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 1 3 4 +# 18 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h" 1 3 4 +# 1083 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_listify.h" 1 3 4 +# 1084 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_loops.h" 2 3 4 +# 19 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 162 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h" 1 3 4 +# 163 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 193 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h" 1 3 4 +# 194 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h" 1 3 4 +# 197 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h" 1 3 4 +# 200 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 35 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/sys/util_macro.h" 2 3 4 +# 20 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h" 2 3 4 +# 10 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h" 2 3 4 +# 18 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h" 1 3 4 +# 9 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32_adc.h" 1 3 4 +# 10 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/stm32l4_adc.h" 2 3 4 +# 19 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32_pwr.h" 1 3 4 +# 20 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h" 1 3 4 +# 21 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h" 1 3 4 +# 22 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h" 1 3 4 +# 10 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h" 1 3 4 +# 11 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h" 2 3 4 +# 23 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/common/freq.h" 1 3 4 +# 24 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/dts/common/mem.h" 1 3 4 +# 25 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0.dtsi" 2 3 4 + +/ { + chosen { + zephyr,flash-controller = &flash; + }; + + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu0: cpu@0 { + device_type = "cpu"; + compatible = "arm,cortex-m0+"; + reg = <0>; + cpu-power-states = <&stop0 &stop1>; + }; + + power-states { + stop0: state0 { + compatible = "zephyr,power-state"; + power-state-name = "suspend-to-idle"; + substate-id = <1>; + min-residency-us = <20>; + }; + + stop1: state1 { + compatible = "zephyr,power-state"; + power-state-name = "suspend-to-idle"; + substate-id = <2>; + min-residency-us = <100>; + }; + }; + }; + + sram0: memory@20000000 { + compatible = "zephyr,memory-region", "mmio-sram"; + zephyr,memory-region = "SRAM0"; + }; + + clocks { + clk_hse: clk-hse { + #clock-cells = <0>; + compatible = "st,stm32-hse-clock"; + status = "disabled"; + }; + + clk_hsi: clk-hsi { + #clock-cells = <0>; + compatible = "st,stm32g0-hsi-clock"; + hsi-div = <1>; + clock-frequency = <(((16) * 1000) * 1000)>; + status = "disabled"; + }; + + clk_lse: clk-lse { + #clock-cells = <0>; + compatible = "st,stm32-lse-clock"; + clock-frequency = <32768>; + driving-capability = <0>; + status = "disabled"; + }; + + clk_lsi: clk-lsi { + #clock-cells = <0>; + compatible = "fixed-clock"; + clock-frequency = <((32) * 1000)>; + status = "disabled"; + }; + + pll: pll { + #clock-cells = <0>; + compatible = "st,stm32g0-pll-clock"; + status = "disabled"; + }; + }; + + mcos { + mco1: mco1 { + compatible = "st,stm32-clock-mco"; + status = "disabled"; + }; + + mco2: mco2 { + compatible = "st,stm32-clock-mco"; + status = "disabled"; + }; + }; + + soc { + flash: flash-controller@40022000 { + compatible = "st,stm32-flash-controller", "st,stm32g0-flash-controller"; + reg = <0x40022000 0x400>; + interrupts = <3 0>; + clocks = <&rcc (0x038) (1 << 8)>; + + #address-cells = <1>; + #size-cells = <1>; + + flash0: flash@8000000 { + compatible = "st,stm32-nv-flash", "soc-nv-flash"; + + write-block-size = <8>; + erase-block-size = <2048>; + + max-erase-time = <40>; + }; + }; + + rcc: rcc@40021000 { + compatible = "st,stm32f0-rcc"; + #clock-cells = <2>; + reg = <0x40021000 0x400>; + + rctl: reset-controller { + compatible = "st,stm32-rcc-rctl"; + #reset-cells = <1>; + }; + }; + + exti: interrupt-controller@40021800 { + compatible = "st,stm32g0-exti", "st,stm32-exti"; + interrupt-controller; + #interrupt-cells = <1>; + #address-cells = <0>; + reg = <0x40021800 0x400>; + clocks = <&rcc (0x040) (1 << 0)>; + num-lines = <32>; + interrupts = <5 0>, <6 0>, <7 0>; + interrupt-names = "line0-1", "line2-3", "line4-15"; + line-ranges = <0 2>, <2 2>, <4 12>; + }; + + pinctrl: pin-controller@50000000 { + compatible = "st,stm32-pinctrl"; + #address-cells = <1>; + #size-cells = <1>; + reg = <0x50000000 0x2000>; + + gpioa: gpio@50000000 { + compatible = "st,stm32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x50000000 0x400>; + clocks = <&rcc (0x034) (1 << 0)>; + }; + + gpiob: gpio@50000400 { + compatible = "st,stm32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x50000400 0x400>; + clocks = <&rcc (0x034) (1 << 1)>; + }; + + gpioc: gpio@50000800 { + compatible = "st,stm32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x50000800 0x400>; + clocks = <&rcc (0x034) (1 << 2)>; + }; + + gpiod: gpio@50000c00 { + compatible = "st,stm32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x50000c00 0x400>; + clocks = <&rcc (0x034) (1 << 3)>; + }; + + gpiof: gpio@50001400 { + compatible = "st,stm32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x50001400 0x400>; + clocks = <&rcc (0x034) (1 << 5)>; + }; + }; + + rtc: rtc@40002800 { + compatible = "st,stm32-rtc"; + reg = <0x40002800 0x400>; + interrupts = <2 0>; + clocks = <&rcc (0x03c) (1 << 10)>; + prescaler = <32768>; + alarms-count = <2>; + alrm-exti-line = <19>; + status = "disabled"; + + + + + + + + bbram: backup_regs { + compatible = "st,stm32-bbram"; + st,backup-regs = <5>; + status = "disabled"; + }; + }; + + iwdg: watchdog@40003000 { + compatible = "st,stm32-watchdog"; + reg = <0x40003000 0x400>; + status = "disabled"; + }; + + wwdg: watchdog@40002c00 { + compatible = "st,stm32-window-watchdog"; + reg = <0x40002C00 0x400>; + clocks = <&rcc (0x03c) (1 << 11)>; + interrupts = <0 2>; + status = "disabled"; + }; + + usart1: serial@40013800 { + compatible = "st,stm32-usart", "st,stm32-uart"; + reg = <0x40013800 0x400>; + clocks = <&rcc (0x040) (1 << 14)>; + resets = <&rctl (((0x30) << 5U) | (14))>; + interrupts = <27 0>; + status = "disabled"; + }; + + usart2: serial@40004400 { + compatible = "st,stm32-usart", "st,stm32-uart"; + reg = <0x40004400 0x400>; + clocks = <&rcc (0x03c) (1 << 17)>; + resets = <&rctl (((0x2C) << 5U) | (17))>; + interrupts = <28 0>; + status = "disabled"; + }; + + lptim1: timers@40007c00 { + compatible = "st,stm32-lptim"; + clocks = <&rcc (0x03c) (1 << 31)>; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40007c00 0x400>; + interrupts = <17 1>; + interrupt-names = "wakeup"; + status = "disabled"; + }; + + timers1: timers@40012c00 { + compatible = "st,stm32-timers"; + reg = <0x40012C00 0x400>; + clocks = <&rcc (0x040) (1 << 11)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x30) << 5U) | (11))>; + interrupts = <13 0>, <14 0>; + interrupt-names = "brk_up_trg_com", "cc"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + + qdec { + compatible = "st,stm32-qdec"; + st,input-filter-level = <0>; + status = "disabled"; + }; + }; + + timers3: timers@40000400 { + compatible = "st,stm32-timers"; + reg = <0x40000400 0x400>; + clocks = <&rcc (0x03c) (1 << 1)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x2C) << 5U) | (1))>; + interrupts = <16 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + + qdec { + compatible = "st,stm32-qdec"; + st,input-filter-level = <0>; + status = "disabled"; + }; + }; + + timers14: timers@40002000 { + compatible = "st,stm32-timers"; + reg = <0x40002000 0x400>; + clocks = <&rcc (0x040) (1 << 15)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x30) << 5U) | (15))>; + interrupts = <19 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + }; + + timers16: timers@40014400 { + compatible = "st,stm32-timers"; + reg = <0x40014400 0x400>; + clocks = <&rcc (0x040) (1 << 17)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x30) << 5U) | (17))>; + interrupts = <21 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + }; + + timers17: timers@40014800 { + compatible = "st,stm32-timers"; + reg = <0x40014800 0x400>; + clocks = <&rcc (0x040) (1 << 18)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x30) << 5U) | (18))>; + interrupts = <22 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + }; + + i2c1: i2c@40005400 { + compatible = "st,stm32-i2c-v2"; + clock-frequency = <100000>; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40005400 0x400>; + clocks = <&rcc (0x03c) (1 << 21)>; + interrupts = <23 0>; + interrupt-names = "combined"; + status = "disabled"; + }; + + i2c2: i2c@40005800 { + compatible = "st,stm32-i2c-v2"; + clock-frequency = <100000>; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40005800 0x400>; + clocks = <&rcc (0x03c) (1 << 22)>; + interrupts = <24 0>; + interrupt-names = "combined"; + status = "disabled"; + }; + + spi1: spi@40013000 { + compatible = "st,stm32-spi-fifo", "st,stm32-spi"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40013000 0x400>; + clocks = <&rcc (0x040) (1 << 12)>; + interrupts = <25 0>; + status = "disabled"; + }; + + spi2: spi@40003800 { + compatible = "st,stm32-spi-fifo", "st,stm32-spi"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40003800 0x400>; + clocks = <&rcc (0x03c) (1 << 14)>; + interrupts = <26 0>; + status = "disabled"; + }; + + adc1: adc@40012400 { + compatible = "st,stm32-adc"; + reg = <0x40012400 0x400>; + clocks = <&rcc (0x040) (1 << 20)>; + clock-names = "adcx"; + interrupts = <12 0>; + #io-channel-cells = <1>; + resolutions = <((((0x0C) & ((1UL << (8)) - 1UL)) << 0U) | (((3) & ((1UL << (5)) - 1UL)) << 8U) | (((((1UL << (2)) - 1UL)) & ((1UL << (3)) - 1UL)) << 13U) | (((0x00) & ((1UL << (3)) - 1UL)) << 16U) | (((12) & ((1UL << (13)) - 1UL)) << 19U)) + ((((0x0C) & ((1UL << (8)) - 1UL)) << 0U) | (((3) & ((1UL << (5)) - 1UL)) << 8U) | (((((1UL << (2)) - 1UL)) & ((1UL << (3)) - 1UL)) << 13U) | (((0x01) & ((1UL << (3)) - 1UL)) << 16U) | (((10) & ((1UL << (13)) - 1UL)) << 19U)) + ((((0x0C) & ((1UL << (8)) - 1UL)) << 0U) | (((3) & ((1UL << (5)) - 1UL)) << 8U) | (((((1UL << (2)) - 1UL)) & ((1UL << (3)) - 1UL)) << 13U) | (((0x02) & ((1UL << (3)) - 1UL)) << 16U) | (((8) & ((1UL << (13)) - 1UL)) << 19U)) + ((((0x0C) & ((1UL << (8)) - 1UL)) << 0U) | (((3) & ((1UL << (5)) - 1UL)) << 8U) | (((((1UL << (2)) - 1UL)) & ((1UL << (3)) - 1UL)) << 13U) | (((0x03) & ((1UL << (3)) - 1UL)) << 16U) | (((6) & ((1UL << (13)) - 1UL)) << 19U))>; + + + + + + + sampling-times = <3 5 8 13 20 40 80 161>; + num-sampling-time-common-channels = <2>; + st,adc-sequencer = "fixed"; + st,adc-oversampler = "minimal"; + st,adc-internal-regulator = "startup-sw-delay"; + status = "disabled"; + }; + + dma1: dma@40020000 { + compatible = "st,stm32-dma-v2"; + #dma-cells = <3>; + reg = <0x40020000 0x400>; + interrupts = <9 0 10 0 10 0 11 0 11 0>; + clocks = <&rcc (0x038) (1 << 0)>; + dma-requests = <5>; + dma-offset = <0>; + status = "disabled"; + }; + + + dmamux1: dmamux@40020800 { + compatible = "st,stm32-dmamux"; + #dma-cells = <3>; + reg = <0x40020800 0x800>; + interrupts = <11 0>; + dma-channels = <5>; + dma-generators = <4>; + dma-requests = <49>; + status = "disabled"; + }; + + pwr: power@40007000 { + compatible = "st,stm32-pwr"; + reg = <0x40007000 0x400>; + status = "disabled"; + + wkup-pins-nb = <6>; + wkup-pins-pol; + wkup-pins-pupd; + + #address-cells = <1>; + #size-cells = <0>; + + wkup-pin@1 { + reg = <0x1>; + wkup-gpios = <&gpioa 0 (1UL << (0))>; + }; + + wkup-pin@2 { + reg = <0x2>; + wkup-gpios = <&gpioa 4 (1UL << (0))>, + <&gpioc 13 (1UL << (0))>; + }; + + + + wkup-pin@4 { + reg = <0x4>; + wkup-gpios = <&gpioa 2 (1UL << (0))>; + }; + + wkup-pin@5 { + reg = <0x5>; + wkup-gpios = <&gpioc 5 (1UL << (0))>; + }; + + wkup-pin@6 { + reg = <0x6>; + wkup-gpios = <&gpiob 5 (1UL << (0))>; + }; + }; + }; + + die_temp: dietemp { + compatible = "st,stm32-temp-cal"; + ts-cal1-addr = <0x1FFF75A8>; + ts-cal2-addr = <0x1FFF75CA>; + ts-cal1-temp = <30>; + ts-cal2-temp = <130>; + ts-cal-vrefanalog = <3000>; + io-channels = <&adc1 12>; + status = "disabled"; + }; + + vref: vref { + compatible = "st,stm32-vref"; + vrefint-cal-addr = <0x1FFF75AA>; + vrefint-cal-mv = <3000>; + io-channels = <&adc1 13>; + status = "disabled"; + }; + + vbat: vbat { + compatible = "st,stm32-vbat"; + ratio = <3>; + io-channels = <&adc1 14>; + status = "disabled"; + }; + + smbus1: smbus1 { + compatible = "st,stm32-smbus"; + #address-cells = <1>; + #size-cells = <0>; + i2c = <&i2c1>; + status = "disabled"; + }; + + smbus2: smbus2 { + compatible = "st,stm32-smbus"; + #address-cells = <1>; + #size-cells = <0>; + i2c = <&i2c2>; + status = "disabled"; + }; +}; + +&nvic { + arm,num-irq-priority-bits = <2>; +}; +# 8 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g030.dtsi" 2 3 4 + +/ { + soc { + compatible = "st,stm32g030", "st,stm32g0", "simple-bus"; + }; +}; +# 9 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g031.dtsi" 2 3 4 + + +/ { + soc { + compatible = "st,stm32g031", "st,stm32g0", "simple-bus"; + + lpuart1: serial@40008000 { + compatible = "st,stm32-lpuart", "st,stm32-uart"; + reg = <0x40008000 0x400>; + clocks = <&rcc (0x03c) (1 << 20)>; + resets = <&rctl (((0x2C) << 5U) | (20))>; + interrupts = <29 0>; + status = "disabled"; + }; + + timers1: timers@40012c00 { + clocks = <&rcc (0x040) (1 << 11)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) ((((0x54) & 0xFFFFU) << 0U) | (((22) & 0x1FU) << 16U) | ((((22) - (22)) & 0x3U) << 21U) | ((((0)) & 0xFFU) << 24U))>; + }; + + timers2: timers@40000000 { + compatible = "st,stm32-timers"; + reg = <0x40000000 0x400>; + clocks = <&rcc (0x03c) (1 << 0)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x2C) << 5U) | (0))>; + interrupts = <15 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + qdec { + compatible = "st,stm32-qdec"; + st,input-filter-level = <0>; + status = "disabled"; + }; + }; + }; +}; +# 8 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g051.dtsi" 2 3 4 + +/ { + soc { + compatible = "st,stm32g051", "st,stm32g0", "simple-bus"; + + timers6: timers@40001000 { + compatible = "st,stm32-timers"; + reg = <0x40001000 0x400>; + clocks = <&rcc (0x03c) (1 << 4)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x2C) << 5U) | (4))>; + interrupts = <17 0>; + interrupt-names = "global"; + status = "disabled"; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + }; + + timers7: timers@40001400 { + compatible = "st,stm32-timers"; + reg = <0x40001400 0x400>; + clocks = <&rcc (0x03c) (1 << 5)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x2C) << 5U) | (5))>; + interrupts = <18 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + }; + + timers15: timers@40014000 { + compatible = "st,stm32-timers"; + reg = <0x40014000 0x400>; + clocks = <&rcc (0x040) (1 << 16)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) ((((0x54) & 0xFFFFU) << 0U) | (((24) & 0x1FU) << 16U) | ((((24) - (24)) & 0x3U) << 21U) | ((((0)) & 0xFFU) << 24U))>; + resets = <&rctl (((0x30) << 5U) | (16))>; + interrupts = <20 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + counter { + compatible = "st,stm32-counter"; + status = "disabled"; + }; + }; + + dac1: dac@40007400 { + compatible = "st,stm32-dac"; + reg = <0x40007400 0x400>; + clocks = <&rcc (0x03c) (1 << 29)>; + status = "disabled"; + #io-channel-cells = <1>; + }; + + dma1: dma@40020000 { + interrupts = <9 0 10 0 10 0 11 0 11 0 11 0 11 0>; + dma-requests = <7>; + }; + + dmamux1: dmamux@40020800 { + dma-channels = <7>; + }; + }; +}; +# 10 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g071.dtsi" 2 3 4 + +/ { + soc { + compatible = "st,stm32g071", "st,stm32g0", "simple-bus"; + + usart3: serial@40004800 { + compatible = "st,stm32-usart", "st,stm32-uart"; + reg = <0x40004800 0x400>; + clocks = <&rcc (0x03c) (1 << 18)>; + resets = <&rctl (((0x2C) << 5U) | (18))>; + interrupts = <29 0>; + status = "disabled"; + }; + + usart4: serial@40004c00 { + compatible = "st,stm32-usart", "st,stm32-uart"; + reg = <0x40004c00 0x400>; + clocks = <&rcc (0x03c) (1 << 19)>; + resets = <&rctl (((0x2C) << 5U) | (19))>; + interrupts = <29 0>; + status = "disabled"; + }; + + dmamux1: dmamux@40020800 { + dma-requests = <57>; + }; + + ucpd1: ucpd@4000a000 { + compatible = "st,stm32-ucpd"; + reg = <0x4000a000 0x400>; + clocks = <&rcc (0x03c) (1 << 25)>; + interrupts = <8 0>; + status = "disabled"; + }; + + ucpd2: ucpd@4000a400 { + compatible = "st,stm32-ucpd"; + reg = <0x4000a400 0x400>; + clocks = <&rcc (0x03c) (1 << 26)>; + interrupts = <8 0>; + status = "disabled"; + }; + }; +}; +# 9 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1.dtsi" 2 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_b1x_c1x_clock.h" 1 3 4 +# 10 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1.dtsi" 2 3 4 + + +/ { + clocks { + clk_hsi48: clk-hsi48 { + #clock-cells = <0>; + compatible = "st,stm32-hsi48-clock"; + clock-frequency = <(((48) * 1000) * 1000)>; + status = "disabled"; + }; + }; + + soc { + compatible = "st,stm32g0b1", "st,stm32g0", "simple-bus"; + + pinctrl: pin-controller@50000000 { + gpioe: gpio@50001000 { + compatible = "st,stm32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x50001000 0x400>; + clocks = <&rcc (0x034) (1 << 4)>; + }; + }; + + fdcan1: can@40006400 { + compatible = "st,stm32-fdcan"; + reg = <0x40006400 0x400>, <0x4000b400 0x350>; + reg-names = "m_can", "message_ram"; + interrupts = <21 0>, <22 0>; + interrupt-names = "int0", "int1"; + clocks = <&rcc (0x03c) (1 << 12)>; + bosch,mram-cfg = <0x0 28 8 3 3 0 3 3>; + status = "disabled"; + }; + + fdcan2: can@40006800 { + compatible = "st,stm32-fdcan"; + reg = <0x40006800 0x400>, <0x4000b750 0x350>; + reg-names = "m_can", "message_ram"; + interrupts = <21 0>, <22 0>; + interrupt-names = "int0", "int1"; + clocks = <&rcc (0x03c) (1 << 12)>; + bosch,mram-cfg = <0x0 28 8 3 3 0 3 3>; + status = "disabled"; + }; + + usart5: serial@40005000 { + compatible = "st,stm32-usart", "st,stm32-uart"; + reg = <0x40005000 0x400>; + clocks = <&rcc (0x03c) (1 << 8)>; + resets = <&rctl (((0x2C) << 5U) | (8))>; + interrupts = <29 0>; + status = "disabled"; + }; + + usart6: serial@40013c00 { + compatible = "st,stm32-usart", "st,stm32-uart"; + reg = <0x40013c00 0x400>; + clocks = <&rcc (0x03c) (1 << 9)>; + resets = <&rctl (((0x2C) << 5U) | (9))>; + interrupts = <29 0>; + status = "disabled"; + }; + + lpuart2: serial@40008400 { + compatible = "st,stm32-lpuart", "st,stm32-uart"; + reg = <0x40008400 0x400>; + clocks = <&rcc (0x03c) (1 << 7)>; + resets = <&rctl (((0x2C) << 5U) | (7))>; + interrupts = <28 0>; + status = "disabled"; + }; + + timers4: timers@40000800 { + compatible = "st,stm32-timers"; + reg = <0x40000800 0x400>; + clocks = <&rcc (0x03c) (1 << 2)>, + <&rcc ((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) 0xFF>; + resets = <&rctl (((0x2C) << 5U) | (2))>; + interrupts = <16 0>; + interrupt-names = "global"; + st,prescaler = <0>; + status = "disabled"; + + pwm { + compatible = "st,stm32-pwm"; + status = "disabled"; + #pwm-cells = <3>; + }; + + qdec { + compatible = "st,stm32-qdec"; + st,input-filter-level = <0>; + status = "disabled"; + }; + }; + + i2c3: i2c@40008800 { + compatible = "st,stm32-i2c-v2"; + clock-frequency = <100000>; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40008800 0x400>; + clocks = <&rcc (0x03c) (1 << 23)>; + interrupts = <24 0>; + interrupt-names = "combined"; + status = "disabled"; + }; + + spi3: spi@40003c00 { + compatible = "st,stm32-spi-fifo", "st,stm32-spi"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x40003c00 0x400>; + clocks = <&rcc (0x03c) (1 << 15)>; + interrupts = <26 3>; + status = "disabled"; + }; + + dma2: dma@40020400 { + compatible = "st,stm32-dma-v2"; + #dma-cells = <3>; + reg = <0x40020400 0x400>; + interrupts = <11 0 11 0 11 0 11 0 11 0>; + clocks = <&rcc (0x038) (1 << 1)>; + dma-requests = <5>; + dma-offset = <7>; + status = "disabled"; + }; + + dmamux1: dmamux@40020800 { + dma-channels = <12>; + dma-requests = <73>; + }; + + usb: usb@40005c00 { + compatible = "st,stm32-usb"; + reg = <0x40005c00 0x400>; + interrupts = <8 0>; + interrupt-names = "usb"; + num-bidir-endpoints = <8>; + ram-size = <2048>; + maximum-speed = "full-speed"; + phys = <&usb_fs_phy>; + clocks = <&rcc (0x03c) (1 << 13)>, + <&rcc ((0x003 + 1) + 1) ((((0x58) & 0xFFFFU) << 0U) | (((12) & 0x1FU) << 16U) | ((((13) - (12)) & 0x3U) << 21U) | ((((0)) & 0xFFU) << 24U))>; + status = "disabled"; + }; + + pwr: power@40007000 { + wkup-pin@3 { + reg = <0x3>; + wkup-gpios = <&gpioe 6 (1UL << (0))>; + }; + }; + }; + + usb_fs_phy: usbphy { + compatible = "usb-nop-xceiv"; + #phy-cells = <0>; + }; + + smbus3: smbus3 { + compatible = "st,stm32-smbus"; + #address-cells = <1>; + #size-cells = <0>; + i2c = <&i2c3>; + status = "disabled"; + }; +}; + +&exti { + num-lines = <64>; +}; +# 8 "C:/Users/iteedi/zephyrproject/zephyr/dts/arm/st/g0/stm32g0b1Xe.dtsi" 2 3 4 + +/ { + sram0: memory@20000000 { + reg = <0x20000000 ((144) * 1024)>; + }; + + soc { + flash-controller@40022000 { + flash0: flash@8000000 { + reg = <0x08000000 ((512) * 1024)>; + }; + }; + }; +}; +# 9 "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts" 2 +# 1 "C:/Users/iteedi/zephyrproject/modules/hal/stm32/dts/st/g0/stm32g0b1r(b-c-e)tx-pinctrl.dtsi" 1 3 4 + + + + + + +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h" 1 3 4 +# 10 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h" 3 4 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h" 1 3 4 +# 11 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h" 2 3 4 +# 8 "C:/Users/iteedi/zephyrproject/modules/hal/stm32/dts/st/g0/stm32g0b1r(b-c-e)tx-pinctrl.dtsi" 2 3 4 + +/ { + soc { + pinctrl: pin-controller@50000000 { + + + + /omit-if-no-ref/ adc1_in0_pa0: adc1_in0_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in1_pa1: adc1_in1_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in2_pa2: adc1_in2_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in3_pa3: adc1_in3_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in4_pa4: adc1_in4_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in5_pa5: adc1_in5_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in6_pa6: adc1_in6_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in7_pa7: adc1_in7_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in8_pb0: adc1_in8_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in9_pb1: adc1_in9_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in10_pb2: adc1_in10_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in11_pb10: adc1_in11_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in15_pb11: adc1_in15_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in16_pb12: adc1_in16_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in17_pc4: adc1_in17_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ adc1_in18_pc5: adc1_in18_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ analog_pa0: analog_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa1: analog_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa2: analog_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa3: analog_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa4: analog_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa5: analog_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa6: analog_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa7: analog_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa8: analog_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa9: analog_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa10: analog_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa11: analog_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa12: analog_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa13: analog_pa13 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa14: analog_pa14 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pa15: analog_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb0: analog_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb1: analog_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb2: analog_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb3: analog_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb4: analog_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb5: analog_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb6: analog_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb7: analog_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb8: analog_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb9: analog_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb10: analog_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb11: analog_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb12: analog_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb13: analog_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb14: analog_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pb15: analog_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc0: analog_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc1: analog_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc2: analog_pc2 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc3: analog_pc3 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc4: analog_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc5: analog_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc6: analog_pc6 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc7: analog_pc7 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc8: analog_pc8 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc9: analog_pc9 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc10: analog_pc10 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc11: analog_pc11 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc12: analog_pc12 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc13: analog_pc13 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc14: analog_pc14 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pc15: analog_pc15 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd0: analog_pd0 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd1: analog_pd1 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd2: analog_pd2 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd3: analog_pd3 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd4: analog_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd5: analog_pd5 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd6: analog_pd6 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd8: analog_pd8 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pd9: analog_pd9 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pf0: analog_pf0 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pf1: analog_pf1 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ analog_pf2: analog_pf2 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ comp1_inm_pa0: comp1_inm_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_inp_pa1: comp1_inp_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_inm_pb1: comp1_inm_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_inp_pb2: comp1_inp_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_inm_pc4: comp1_inm_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_inp_pc5: comp1_inp_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_inm_pa2: comp2_inm_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_inp_pa3: comp2_inp_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_inm_pb3: comp2_inm_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_inp_pb4: comp2_inp_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_inp_pb6: comp2_inp_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_inm_pb7: comp2_inm_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_inp_pb0: comp3_inp_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_inm_pb2: comp3_inm_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_inm_pc0: comp3_inm_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_inp_pc1: comp3_inp_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ comp1_out_pa0: comp1_out_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_out_pa6: comp1_out_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_out_pa11: comp1_out_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_out_pb0: comp1_out_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp1_out_pb10: comp1_out_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_out_pa2: comp2_out_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_out_pa7: comp2_out_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_out_pa12: comp2_out_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_out_pb5: comp2_out_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp2_out_pb11: comp2_out_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_out_pb1: comp3_out_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_out_pc0: comp3_out_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ comp3_out_pc2: comp3_out_pc2 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x7) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ dac1_out1_pa4: dac1_out1_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ dac1_out2_pa5: dac1_out2_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ fdcan1_rx_pa11: fdcan1_rx_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan1_rx_pb8: fdcan1_rx_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan1_rx_pc4: fdcan1_rx_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan1_rx_pd0: fdcan1_rx_pd0 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_rx_pb0: fdcan2_rx_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_rx_pb5: fdcan2_rx_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_rx_pb12: fdcan2_rx_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_rx_pc2: fdcan2_rx_pc2 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ fdcan1_tx_pa12: fdcan1_tx_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan1_tx_pb9: fdcan1_tx_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan1_tx_pc5: fdcan1_tx_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan1_tx_pd1: fdcan1_tx_pd1 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_tx_pb1: fdcan2_tx_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_tx_pb6: fdcan2_tx_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_tx_pb13: fdcan2_tx_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ fdcan2_tx_pc3: fdcan2_tx_pc3 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ i2c1_scl_pa9: i2c1_scl_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c1_scl_pb6: i2c1_scl_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c1_scl_pb8: i2c1_scl_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_scl_pa7: i2c2_scl_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_scl_pa9: i2c2_scl_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_scl_pa11: i2c2_scl_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_scl_pb3: i2c2_scl_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_scl_pb10: i2c2_scl_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_scl_pb13: i2c2_scl_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c3_scl_pa7: i2c3_scl_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c3_scl_pb3: i2c3_scl_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c3_scl_pc0: i2c3_scl_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + + + /omit-if-no-ref/ i2c1_sda_pa10: i2c1_sda_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c1_sda_pb7: i2c1_sda_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c1_sda_pb9: i2c1_sda_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_sda_pa6: i2c2_sda_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_sda_pa10: i2c2_sda_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_sda_pa12: i2c2_sda_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_sda_pb4: i2c2_sda_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_sda_pb11: i2c2_sda_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c2_sda_pb14: i2c2_sda_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c3_sda_pa6: i2c3_sda_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c3_sda_pb4: i2c3_sda_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + /omit-if-no-ref/ i2c3_sda_pc1: i2c3_sda_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + drive-open-drain; + }; + + + + /omit-if-no-ref/ i2c1_smba_pa1: i2c1_smba_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ i2c1_smba_pb5: i2c1_smba_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ i2c2_smba_pa8: i2c2_smba_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ i2c2_smba_pa15: i2c2_smba_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ i2c2_smba_pb12: i2c2_smba_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + + + /omit-if-no-ref/ i2s1_ck_pa1: i2s1_ck_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s1_ck_pa5: i2s1_ck_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s1_ck_pb3: i2s1_ck_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s1_ck_pd8: i2s1_ck_pd8 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_ck_pa0: i2s2_ck_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_ck_pb8: i2s2_ck_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_ck_pb10: i2s2_ck_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_ck_pb13: i2s2_ck_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_ck_pd1: i2s2_ck_pd1 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + + + /omit-if-no-ref/ i2s1_mck_pa6: i2s1_mck_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s1_mck_pa11: i2s1_mck_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s1_mck_pb4: i2s1_mck_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s1_mck_pd5: i2s1_mck_pd5 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pa3: i2s2_mck_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pa9: i2s2_mck_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pb2: i2s2_mck_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pb6: i2s2_mck_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pb14: i2s2_mck_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pc2: i2s2_mck_pc2 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ i2s2_mck_pd3: i2s2_mck_pd3 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + + + /omit-if-no-ref/ i2s1_sd_pa2: i2s1_sd_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_sd_pa7: i2s1_sd_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_sd_pa12: i2s1_sd_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_sd_pb5: i2s1_sd_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_sd_pd6: i2s1_sd_pd6 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pa4: i2s2_sd_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pa10: i2s2_sd_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pb7: i2s2_sd_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pb11: i2s2_sd_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pb15: i2s2_sd_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pc3: i2s2_sd_pc3 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_sd_pd4: i2s2_sd_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ i2s1_ws_pa4: i2s1_ws_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_ws_pa15: i2s1_ws_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_ws_pb0: i2s1_ws_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s1_ws_pd9: i2s1_ws_pd9 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_ws_pa8: i2s2_ws_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_ws_pb9: i2s2_ws_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_ws_pb12: i2s2_ws_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ i2s2_ws_pd0: i2s2_ws_pd0 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ sys_swdio_pa13: sys_swdio_pa13 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ sys_swclk_pa14: sys_swclk_pa14 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ rcc_mco_pa8: rcc_mco_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ rcc_mco_pa9: rcc_mco_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ rcc_mco_2_pa10: rcc_mco_2_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ rcc_mco_2_pa15: rcc_mco_2_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ rcc_mco_2_pb2: rcc_mco_2_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ rcc_mco_pf2: rcc_mco_pf2 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + slew-rate = "very-high-speed"; + }; + + + + /omit-if-no-ref/ spi1_miso_pa6: spi1_miso_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_miso_pa11: spi1_miso_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_miso_pb4: spi1_miso_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_miso_pd5: spi1_miso_pd5 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pa3: spi2_miso_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pa9: spi2_miso_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pb2: spi2_miso_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pb6: spi2_miso_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pb14: spi2_miso_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pc2: spi2_miso_pc2 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_miso_pd3: spi2_miso_pd3 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi3_miso_pb4: spi3_miso_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi3_miso_pc11: spi3_miso_pc11 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + + + /omit-if-no-ref/ spi1_mosi_pa2: spi1_mosi_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_mosi_pa7: spi1_mosi_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_mosi_pa12: spi1_mosi_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_mosi_pb5: spi1_mosi_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi1_mosi_pd6: spi1_mosi_pd6 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pa4: spi2_mosi_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pa10: spi2_mosi_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pb7: spi2_mosi_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pb11: spi2_mosi_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pb15: spi2_mosi_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pc3: spi2_mosi_pc3 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi2_mosi_pd4: spi2_mosi_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi3_mosi_pb5: spi3_mosi_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + /omit-if-no-ref/ spi3_mosi_pc12: spi3_mosi_pc12 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-down; + }; + + + + /omit-if-no-ref/ spi1_nss_pa4: spi1_nss_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi1_nss_pa15: spi1_nss_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi1_nss_pb0: spi1_nss_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi1_nss_pd9: spi1_nss_pd9 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi2_nss_pa8: spi2_nss_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi2_nss_pb9: spi2_nss_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi2_nss_pb12: spi2_nss_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi2_nss_pd0: spi2_nss_pd0 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi3_nss_pa4: spi3_nss_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ spi3_nss_pa15: spi3_nss_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + + + /omit-if-no-ref/ spi1_sck_pa1: spi1_sck_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi1_sck_pa5: spi1_sck_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi1_sck_pb3: spi1_sck_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi1_sck_pd8: spi1_sck_pd8 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi2_sck_pa0: spi2_sck_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi2_sck_pb8: spi2_sck_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi2_sck_pb10: spi2_sck_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi2_sck_pb13: spi2_sck_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi2_sck_pd1: spi2_sck_pd1 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi3_sck_pb3: spi3_sck_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + /omit-if-no-ref/ spi3_sck_pc10: spi3_sck_pc10 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-down; + slew-rate = "very-high-speed"; + }; + + + + /omit-if-no-ref/ tim1_ch1n_pa7: tim1_ch1n_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch1_pa8: tim1_ch1_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch2_pa9: tim1_ch2_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch3_pa10: tim1_ch3_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch4_pa11: tim1_ch4_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch2n_pb0: tim1_ch2n_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch3n_pb1: tim1_ch3n_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch2_pb3: tim1_ch2_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch3_pb6: tim1_ch3_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch1n_pb13: tim1_ch1n_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch2n_pb14: tim1_ch2n_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch3n_pb15: tim1_ch3n_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch1_pc8: tim1_ch1_pc8 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch2_pc9: tim1_ch2_pc9 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch3_pc10: tim1_ch3_pc10 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch4_pc11: tim1_ch4_pc11 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch1n_pd2: tim1_ch1n_pd2 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch2n_pd3: tim1_ch2n_pd3 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim1_ch3n_pd4: tim1_ch3n_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch1_pa0: tim2_ch1_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch2_pa1: tim2_ch2_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch3_pa2: tim2_ch3_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch4_pa3: tim2_ch4_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch1_pa5: tim2_ch1_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch1_pa15: tim2_ch1_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch2_pb3: tim2_ch2_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch3_pb10: tim2_ch3_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch4_pb11: tim2_ch4_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch1_pc4: tim2_ch1_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch2_pc5: tim2_ch2_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch3_pc6: tim2_ch3_pc6 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim2_ch4_pc7: tim2_ch4_pc7 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch1_pa6: tim3_ch1_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch2_pa7: tim3_ch2_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch3_pb0: tim3_ch3_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch4_pb1: tim3_ch4_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch1_pb4: tim3_ch1_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch2_pb5: tim3_ch2_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch1_pc6: tim3_ch1_pc6 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch2_pc7: tim3_ch2_pc7 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch3_pc8: tim3_ch3_pc8 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim3_ch4_pc9: tim3_ch4_pc9 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim14_ch1_pa4: tim14_ch1_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim14_ch1_pa7: tim14_ch1_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim14_ch1_pb1: tim14_ch1_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim4_ch1_pb6: tim4_ch1_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim4_ch2_pb7: tim4_ch2_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim4_ch3_pb8: tim4_ch3_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim4_ch4_pb9: tim4_ch4_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x9) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim14_ch1_pc12: tim14_ch1_pc12 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim14_ch1_pf0: tim14_ch1_pf0 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1n_pa1: tim15_ch1n_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1_pa2: tim15_ch1_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch2_pa3: tim15_ch2_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1n_pb13: tim15_ch1n_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1_pb14: tim15_ch1_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1n_pb15: tim15_ch1n_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch2_pb15: tim15_ch2_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1_pc1: tim15_ch1_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch2_pc2: tim15_ch2_pc2 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim15_ch1n_pf1: tim15_ch1n_pf1 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim16_ch1_pa6: tim16_ch1_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim16_ch1n_pb6: tim16_ch1n_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim16_ch1_pb8: tim16_ch1_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim16_ch1_pd0: tim16_ch1_pd0 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim17_ch1_pa7: tim17_ch1_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim17_ch1n_pb7: tim17_ch1n_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim17_ch1_pb9: tim17_ch1_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ tim17_ch1_pd1: tim17_ch1_pd1 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ lpuart1_cts_pa6: lpuart1_cts_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart1_cts_pa11: usart1_cts_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart1_cts_pb4: usart1_cts_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart1_cts_pb13: lpuart1_cts_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart2_cts_pa0: usart2_cts_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_cts_pb0: lpuart2_cts_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_cts_pc8: lpuart2_cts_pc8 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart2_cts_pd3: usart2_cts_pd3 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_cts_pa6: usart3_cts_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_cts_pb13: usart3_cts_pb13 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart4_cts_pb7: usart4_cts_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart5_cts_pb6: usart5_cts_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart5_cts_pd5: usart5_cts_pd5 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart6_cts_pa6: usart6_cts_pa6 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart6_cts_pb15: usart6_cts_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + + + /omit-if-no-ref/ usart1_de_pa12: usart1_de_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart1_de_pb1: lpuart1_de_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart1_de_pb3: usart1_de_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart1_de_pb12: lpuart1_de_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart2_de_pa1: usart2_de_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart2_de_pb1: lpuart2_de_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart2_de_pc9: lpuart2_de_pc9 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart2_de_pd4: usart2_de_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart2_de_pf2: lpuart2_de_pf2 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_de_pa15: usart3_de_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_de_pb1: usart3_de_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_de_pb14: usart3_de_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_de_pd2: usart3_de_pd2 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart4_de_pa15: usart4_de_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart5_de_pb5: usart5_de_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart5_de_pd4: usart5_de_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart6_de_pa7: usart6_de_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart6_de_pb14: usart6_de_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + + + /omit-if-no-ref/ usart1_rts_pa12: usart1_rts_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart1_rts_pb1: lpuart1_rts_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart1_rts_pb3: usart1_rts_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart1_rts_pb12: lpuart1_rts_pb12 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart2_rts_pa1: usart2_rts_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart2_rts_pb1: lpuart2_rts_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart2_rts_pc9: lpuart2_rts_pc9 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart2_rts_pd4: usart2_rts_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ lpuart2_rts_pf2: lpuart2_rts_pf2 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_rts_pa15: usart3_rts_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x5) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_rts_pb1: usart3_rts_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_rts_pb14: usart3_rts_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart3_rts_pd2: usart3_rts_pd2 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart4_rts_pa15: usart4_rts_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart5_rts_pb5: usart5_rts_pb5 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart5_rts_pd4: usart5_rts_pd4 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart6_rts_pa7: usart6_rts_pa7 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + /omit-if-no-ref/ usart6_rts_pb14: usart6_rts_pb14 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + drive-push-pull; + }; + + + + /omit-if-no-ref/ lpuart1_rx_pa3: lpuart1_rx_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart1_rx_pa10: usart1_rx_pa10 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart1_rx_pb7: usart1_rx_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ lpuart1_rx_pb10: lpuart1_rx_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ lpuart1_rx_pc0: lpuart1_rx_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart1_rx_pc5: usart1_rx_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart2_rx_pa3: usart2_rx_pa3 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ lpuart2_rx_pa13: lpuart2_rx_pa13 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart2_rx_pa15: usart2_rx_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ lpuart2_rx_pb7: lpuart2_rx_pb7 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ lpuart2_rx_pc1: lpuart2_rx_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ lpuart2_rx_pc7: lpuart2_rx_pc7 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((7) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart2_rx_pd6: usart2_rx_pd6 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart3_rx_pb0: usart3_rx_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart3_rx_pb9: usart3_rx_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart3_rx_pb11: usart3_rx_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart3_rx_pc5: usart3_rx_pc5 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart3_rx_pc11: usart3_rx_pc11 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart3_rx_pd9: usart3_rx_pd9 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart4_rx_pa1: usart4_rx_pa1 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart4_rx_pc11: usart4_rx_pc11 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart5_rx_pb1: usart5_rx_pb1 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart5_rx_pb4: usart5_rx_pb4 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart5_rx_pd2: usart5_rx_pd2 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart6_rx_pa5: usart6_rx_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart6_rx_pb9: usart6_rx_pb9 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usart6_rx_pc1: usart6_rx_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ lpuart1_tx_pa2: lpuart1_tx_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart1_tx_pa9: usart1_tx_pa9 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart1_tx_pb6: usart1_tx_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart1_tx_pb11: lpuart1_tx_pb11 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart1_tx_pc1: lpuart1_tx_pc1 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((1) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart1_tx_pc4: usart1_tx_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart2_tx_pa2: usart2_tx_pa2 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_tx_pa14: lpuart2_tx_pa14 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart2_tx_pa14: usart2_tx_pa14 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((14) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_tx_pb6: lpuart2_tx_pb6 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0xa) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_tx_pc0: lpuart2_tx_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_tx_pc6: lpuart2_tx_pc6 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((6) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart2_tx_pd5: usart2_tx_pd5 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ lpuart2_tx_pf2: lpuart2_tx_pf2 { + pinmux = <((((('F') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pa5: usart3_tx_pa5 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((5) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pb2: usart3_tx_pb2 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pb8: usart3_tx_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pb10: usart3_tx_pb10 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pc4: usart3_tx_pc4 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pc10: usart3_tx_pc10 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart3_tx_pd8: usart3_tx_pd8 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x0) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart4_tx_pa0: usart4_tx_pa0 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart4_tx_pc10: usart4_tx_pc10 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((10) & 0xFU) << 5U) | (((0x1) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart5_tx_pb0: usart5_tx_pb0 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart5_tx_pb3: usart5_tx_pb3 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart5_tx_pc12: usart5_tx_pc12 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart5_tx_pd3: usart5_tx_pd3 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((3) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart6_tx_pa4: usart6_tx_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x3) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart6_tx_pb8: usart6_tx_pb8 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x8) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + /omit-if-no-ref/ usart6_tx_pc0: usart6_tx_pc0 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x4) & 0x1FU) << 0U))>; + bias-pull-up; + }; + + + + /omit-if-no-ref/ ucpd1_cc1_pa8: ucpd1_cc1_pa8 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((8) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ ucpd1_cc2_pb15: ucpd1_cc2_pb15 { + pinmux = <((((('B') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ ucpd2_cc1_pd0: ucpd2_cc1_pd0 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((0) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ ucpd2_cc2_pd2: ucpd2_cc2_pd2 { + pinmux = <((((('D') - 'A') & 0x1FU) << 9U) | (((2) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + + + /omit-if-no-ref/ usb_noe_pa4: usb_noe_pa4 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((4) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usb_dm_pa11: usb_dm_pa11 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((11) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usb_dp_pa12: usb_dp_pa12 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((12) & 0xFU) << 5U) | (((0x10) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usb_noe_pa13: usb_noe_pa13 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((13) & 0xFU) << 5U) | (((0x2) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usb_noe_pa15: usb_noe_pa15 { + pinmux = <((((('A') - 'A') & 0x1FU) << 9U) | (((15) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + }; + + /omit-if-no-ref/ usb_noe_pc9: usb_noe_pc9 { + pinmux = <((((('C') - 'A') & 0x1FU) << 9U) | (((9) & 0xFU) << 5U) | (((0x6) & 0x1FU) << 0U))>; + }; + + }; + }; +}; +# 10 "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts" 2 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h" 1 3 4 +# 11 "C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews/ews.dts" 2 + +/ { + model = "EWS STM32G0B1KBU6 board"; + compatible = "st,stm32g0b1kb-ews"; + + chosen { + zephyr,console = &usart1; + zephyr,shell-uart = &usart1; + zephyr,uart-mcumgr = &usart1; + zephyr,sram = &sram0; + zephyr,flash = &flash0; + zephyr,code-partition = &slot0_partition; + zephyr,canbus = &fdcan2; + }; + + leds: leds { + compatible = "gpio-leds"; + status_led: led_0 { + gpios = <&gpiob 4 (0 << 0)>; + label = "Status LED"; + }; + }; + + gpio_keys { + compatible = "gpio-keys"; + pfet1: pfet1 { + label = "PFET1"; + gpios = <&gpioa 8 (0 << 0)>; + zephyr,code = <2>; + }; + pfet2: pfet2 { + label = "PFET2"; + gpios = <&gpiob 2 (0 << 0)>; + zephyr,code = <3>; + }; + }; + + aliases { + led0 = &status_led; + pfet0 = &pfet1; + pfet1 = &pfet2; + watchdog0 = &iwdg; + die-temp0 = &die_temp; + volt-sensor0 = &vref; + volt-sensor1 = &vbat; + }; +}; + +&clk_lsi { + status = "okay"; +}; + +&clk_hsi { + status = "okay"; +}; + +&clk_hsi48 { + status = "okay"; + crs-usb-sof; +}; + +&pll { + div-m = <1>; + mul-n = <8>; + div-p = <2>; + div-q = <2>; + div-r = <2>; + clocks = <&clk_hsi>; + status = "okay"; +}; + +&rcc { + clocks = <&pll>; + clock-frequency = <(((64) * 1000) * 1000)>; + ahb-prescaler = <1>; + apb1-prescaler = <1>; +}; + +zephyr_udc0: &usb { + pinctrl-0 = <&usb_dm_pa11 &usb_dp_pa12>; + pinctrl-names = "default"; + status = "okay"; +}; + +&usart1 { + pinctrl-0 = <&usart1_tx_pc4 &usart1_rx_pc5>; + pinctrl-names = "default"; + current-speed = <115200>; + status = "okay"; +}; + +&rtc { + clocks = <&rcc (0x03c) (1 << 10)>, + <&rcc 0x003 ((((0x5C) & 0xFFFFU) << 0U) | (((8) & 0x1FU) << 16U) | ((((9) - (8)) & 0x3U) << 21U) | ((((2)) & 0xFFU) << 24U))>; + status = "okay"; +}; + +&iwdg { + status = "okay"; +}; + +&fdcan2 { + clocks = <&rcc (0x03c) (1 << 12)>, + <&rcc ((((((((0x003 + 1) + 1) + 1) + 1) + 1) + 1) + 1) + 1) ((((0x58) & 0xFFFFU) << 0U) | (((8) & 0x1FU) << 16U) | ((((9) - (8)) & 0x3U) << 21U) | ((((1)) & 0xFFU) << 24U))>; + pinctrl-0 = <&fdcan2_rx_pb0 &fdcan2_tx_pb1>; + pinctrl-names = "default"; + status = "okay"; +}; + +&die_temp { + status = "okay"; +}; + +&vref { + status = "okay"; +}; + +&vbat { + status = "okay"; +}; + +&flash0 { + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + boot_partition: partition@0 { + label = "mcuboot"; + reg = <0x00000000 ((16) * 1024)>; + read-only; + }; + + slot0_partition: partition@4000 { + label = "image-0"; + reg = <0x00004000 ((96) * 1024)>; + }; + + slot1_partition: partition@1c000 { + label = "image-1"; + reg = <0x0001c000 ((16) * 1024)>; + }; + }; +}; + +stm32_lp_tick_source: &lptim1 { + clocks = <&rcc (0x03c) (1 << 31)>, + <&rcc 0x003 ((((0x54) & 0xFFFFU) << 0U) | (((18) & 0x1FU) << 16U) | ((((19) - (18)) & 0x3U) << 21U) | ((((1)) & 0xFFU) << 24U))>; + status = "okay"; +}; +# 0 "" 2 +# 1 "C:/Users/iteedi/zephyrproject/zephyr/misc/empty_file.c" diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf b/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf new file mode 100644 index 0000000..394af9b Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/zephyr.elf differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.hex b/firmware/canfd_cdc_composite/build/zephyr/zephyr.hex new file mode 100644 index 0000000..c5e3d33 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr.hex @@ -0,0 +1,3222 @@ +:020000040800F2 +:10000000703000202D2F0008DB980008192F000801 +:1000100000000000000000000000000000000000E0 +:10002000000000000000000000000000093000088F +:100030000000000000000000992F0008115D00087A +:1000400079310008793100087931000879310008E8 +:1000500079310008793100087931000879310008D8 +:1000600079310008793100087931000879310008C8 +:1000700079310008793100087931000879310008B8 +:1000800079310008793100087931000879310008A8 +:100090007931000879310008793100087931000898 +:1000A0007931000879310008793100087931000888 +:0C00B0007931000879310008793100082E +:1000BC0002B4714649084900095649008E4402BCF5 +:1000CC007047C04602B4714649084900095C4900B2 +:1000DC008E4402BC7047C046002934D00123002254 +:1000EC0010B488422CD301242407A14204D28142AB +:1000FC0002D209011B01F8E7E400A14204D28142BB +:10010C0002D249005B00F8E7884201D3401A1A4337 +:10011C004C08A04202D3001B5C0822438C08A0426E +:10012C0002D3001B9C082243CC08A04202D3001B24 +:10013C00DC082243002803D01B0901D00909E3E79E +:10014C00100010BC704701B5002000F05FF802BD34 +:10015C000029F8D003B5FFF7C1FF0EBC4243891A42 +:10016C001847C046002941D010B404004C40A446A6 +:10017C0001230022002900D54942002800D5404225 +:10018C0088422CD301242407A14204D2814202D2FA +:10019C0009011B01F8E7E400A14204D2814202D21A +:1001AC0049005B00F8E7884201D3401A1A434C0817 +:1001BC00A04202D3001B5C0822438C08A04202D34D +:1001CC00001B9C082243CC08A04202D3001BDC0875 +:1001DC002243002803D01B0901D00909E3E71000D2 +:1001EC006446002C00D5404210BC704701B500207D +:1001FC0000F00CF802BDC0460029F7D003B5FFF79C +:10020C00B3FF0EBC4243891A1847C0467047C0461C +:10021C001C2101231B04984201D3000C10391B0A2A +:10022C00984201D3000A08391B09984201D30009EE +:10023C00043902A2105C40187047C0460403020245 +:10024C0001010101000000000000000041420840D3 +:10025C001C2101231B04984201D3000C10391B0AEA +:10026C00984201D3000A08391B09984201D30009AE +:10027C00043902A2105C401A7047C0461B1C1D1D9D +:10028C001E1E1E1E1F1F1F1F1F1F1F1F002B11D1E5 +:10029C00002A0FD1002900D1002802D00021C94327 +:1002AC00080007B4024802A14018029003BDC046E2 +:1002BC005DFFFFFF03B4684601B5029800F039F802 +:1002CC00019B9E4602B00CBC7047C046D0400B0050 +:1002DC00D1409C46203AD340184352426346934047 +:1002EC00184370479140030090409C46203A93403D +:1002FC00194352426346D3401943704710B5002945 +:10030C0003D1FFF785FF203002E00800FFF780FFE4 +:10031C0010BDC04603000A7801311A700133002A5F +:10032C00F9D170470023C25C0133002AFBD1581E5F +:10033C007047F0B506000F0015001C0085B08B420D +:10034C0063D801D1824260D821002800FFF7D6FF84 +:10035C00390000903000FFF7D1FF009B21001B1AE1 +:10036C001A0028000393FFF7BDFF00900191B942DA +:10037C0045D801D1B04242D8009B019C01200021FC +:10038C00039AF61AA741FFF7ADFF04000D00039B7B +:10039C00002B2BD0019B009ADB0750081843019BC4 +:1003AC005908039B9C46B9422CD801D1B04229D89C +:1003BC0032003B00121A8B41012692185B41002738 +:1003CC00B6185F4101235B429C446346002BEAD183 +:1003DC0030003900039AFFF779FF039AA4197D4185 +:1003EC0006000F00FFF77EFF241A8D410A9B002B9D +:1003FC0001D01E605F602000290005B0F0BD002414 +:10040C000025C4E7B6197F41DCE700240025EDE7A1 +:10041C0070B5294D03212800284A09F072F9284E9D +:10042C0030000AF035F8002808D1012128001324E7 +:10043C00244A09F066F96442200070BD102031692D +:10044C00B3680A6882430A60A022042130001B684A +:10045C0012039847041E06DA1B4A230001212800C8 +:10046C0009F056F9E8E700F02BF9041E01DA174AF7 +:10047C00F3E700F08BFA041E01D0154AEDE700F00B +:10048C0031F8041E01DA134AE7E700F017FA041EEC +:10049C0001DA114AE1E703212800104A09F031F989 +:1004AC00B36810215B693000984700F037F80021E1 +:1004BC000B4807F03FFFF3E7A8AD000842B1000876 +:1004CC0010AB000870B100088CB10008ADB1000889 +:1004DC00D3B10008F7B100081CB2000840B2000804 +:1004EC008813000010B5094809F0D2FF031E084814 +:1004FC0006D10121074A09F004F91320404210BD2E +:10050C000321054A09F0FDF80020F8E750AB00087C +:10051C0070AD000866B200087FB20008F0B5A7B055 +:10052C00444B03939B681B68002B07D00F2502AA32 +:10053C00AD18290003989847041E01D027B0F0BDD0 +:10054C003D4F2A783B680A2A01D00D2A68D1002B2E +:10055C00E6DD0022394E3A49F254300008320AF0F6 +:10056C0060F906AD002808D10121080000F0EAF876 +:10057C0034492800FFF7CEFE40E033490922300011 +:10058C000AF04FF9011E04D1012000F0DBF82F49CD +:10059C00EFE7082230002E490AF043F9002805D174 +:1005AC000121023000F0CEF82A49E2E72A4909225B +:1005BC0030000AF036F9011E04D1022000F0C2F816 +:1005CC002649D6E70622300025490AF02AF90028E8 +:1005DC001CD1013000F006F9224E002800D0224E2A +:1005EC00022000F0FFF81F4B002800D01E4B009398 +:1005FC008021330028001D4A08F040FA2800FFF73C +:10060C0091FEA04204D800233B6089E71849B0E76B +:10061C00295D039B03989B6801345B689847EDE761 +:10062C003E2B04DC591C39600449CA5478E73C6001 +:10063C0076E7C04650AB00081008002014140020C8 +:10064C0097B20008A0B20008ABB20008B5B200081F +:10065C00C1B20008CAB20008D5B20008DFB2000867 +:10066C00EBB20008B1B200089DB20008F2B200086B +:10067C0009B300080300F7B519790068DB888268B4 +:10068C0094460269DC0715D4B02464032343012784 +:10069C003D000A4C16681C408D4001943400AC435C +:1006AC003B4201D034002C43634614601B68019A12 +:1006BC009847FEBDD02464036340E8E7FFFFEFFFDB +:1006CC0070B5174809F0E4FE164D002808D1012139 +:1006DC0028001324144A09F014F86442200070BD59 +:1006EC00124809F0D5FE0028F1D01148FFF7C2FFDF +:1006FC00041E06DA0F4A23000121280009F008F82D +:10070C00ECE70D48FFF7B6FF041E01DA0B4AF2E7DF +:10071C00032128000A4A08F0F4FF0024DEE7C04653 +:10072C0030AB0008B8AD00082EB3000810AB0008C1 +:10073C0024AE00084AB300081CAE00086CB30008D5 +:10074C008EB30008B0B50C0000AF012820D11B48B7 +:10075C0008F027FC002819D1194B1C70194B002CE0 +:10076C0000D0194B6C4688B06A46184993618023B7 +:10077C009B009383164B51611361E62115480023AE +:10078C001032490101F038F80020A546BD46B0BD35 +:10079C0002280FD1104808F004FC0028F6D10F4BAA +:1007AC001C70084B002C00D0074B6C4688B06A4676 +:1007BC000B49DBE716204042E8E7C04624AE0008B0 +:1007CC0055140020B1B200089DB20008A7B3000870 +:1007DC0003000001B8AD00081CAE00085414002042 +:1007EC00B0B300080300012802D1044B18787047FD +:1007FC000020022BFBD1024BF8E7C0465514002019 +:10080C0054140020082390B587B000AF0C00F818E2 +:10081C000021102209F0FDFF012321685B423B609F +:10082C0079606379DA0703D5802212060A437A606D +:10083C009A0704D580227968D2050A437A605A0750 +:10084C0001D50122BA721B0703D50223BA7A1343CE +:10085C00BB7223793B7209F07CFF0A220023FFF75D +:10086C0015FD786123791A1C082B00D908220C235A +:10087C002100F818D2B2083109F0C2FF1821380053 +:10088C0000F068F88AB0216823796A461362052360 +:10089C000748D1615061074813619061A42100237E +:1008AC0005481032890100F0A7FFBD4607B090BD86 +:1008BC00C6B3000852B4000888AD0008F0B587B084 +:1008CC001C4F380009F0E4FD1B4E002809D1012112 +:1008DC0030001324194A08F014FF6442200007B0BA +:1008EC00F0BD0A226846164909F08AFF69463800AD +:1008FC0009F0B9F8041E06DA124A2300012130006F +:10090C0008F006FFEAE70025012203AB1A72380053 +:10091C002A000D4903955D6003F09AFA0400A84281 +:10092C0001DA0A4AE9E703213000094A08F0E9FE36 +:10093C002C00D3E770AB000888AD0008DFB30008CB +:10094C0010AE0008F4B300081108000811B4000838 +:10095C0031B4000880B500AF88B06A46084BD1614D +:10096C005361084B842193610423136100230648CF +:10097C001032890100F040FFBD46002080BDC0460A +:10098C006DB40008F0B40008F0AD000870B50C4D63 +:10099C00032128000B4A08F0B4FE002001F060FE91 +:1009AC00041E07D001210300074A280008F0B0FEFE +:1009BC00200070BD03212800044A08F0A2FEF7E7CE +:1009CC00F0AD00088DB40008B7B40008D0B400082E +:1009DC00F0B597B0059304230B921A400B9B0A9227 +:1009EC00DA0807231A40013207001C9D03910D926F +:1009FC00820700D0C5E1041D002804D0072909D8BE +:100A0C001C20404254E1039A1A401300A4180822F7 +:100A1C00D31A0393059B0426013B069300230993E9 +:100A2C000C9304930293013B07930196002F01D082 +:100A3C00059B23600D9B002B00DDF1E09D4B059A7F +:100A4C009A4203D39C4B9A4200D2E9E00B99E21BE9 +:100A5C009308890700D50DE1049A0F2A00D9BBE051 +:100A6C00002F00D10EE104990EAA53540A000799E5 +:100A7C0012AB99540C9B01330C93F4E008260196AD +:100A8C00069B01330693069B9878002800D105E15C +:100A9C00029B002B08D12528F2D1079B0133079329 +:100AAC00012302930426EAE77A284AD84B280ED869 +:100ABC00472846D829282CD825283FD041D820288B +:100ACC00DED0233843425841C3B20293D8E74C38A6 +:100ADC002E2836D8FFF7ECFAD43535353535353583 +:100AEC00353535353735353535353535356135377A +:100AFC0037616161D437D235D4351837183535792B +:100B0C00E63735353735E600002308930426029383 +:100B1C0027E0012213002A38C0B2834067490B42F8 +:100B2C00AED1E2211800890508400B4235D11900DD +:100B3C00114002911342A3D0089013E0079B013B94 +:100B4C0007930023C1E70022069B08925B78029270 +:100B5C006C2B07D10426069B01961B786C2B01D1BC +:100B6C00B6190196013CA0193100FFF7B5FA704394 +:100B7C000400002F3BD0019B039ADB1B1B189342F4 +:100B8C0000D93DE7089B002B41D1019B042B20D1C0 +:100B9C0008CD03600423043415E0072107358D4389 +:100BAC0064188C430CCD002F08D00131C91B03985D +:100BBC000919814200D923E72260636000230826CB +:100BCC0002933300083401935AE7029B08930023E5 +:100BDC009CE7019B082B01D0162012E70723073551 +:100BEC009D430CCD0260436008230834EBE7089B5F +:100BFC00002B0CD1019B042B01D10435CAE7019BBE +:100C0C00082BE9D10735013B9D430835ECE7069BE2 +:100C1C00023306930D9B013B0D9308CD059305E71D +:100C2C000B9B9B0722D50121E21B9308802080009F +:100C3C008242D1D2049A0F2ACED8002F1CD004980D +:100C4C00DBB20EAA13549C46079B12AA135400291C +:100C5C0000D10FE780226346524213430EAA13546D +:100C6C00099B01330993049B01330493069B0434C1 +:100C7C00013B07E70021D9E7002903D0039B01338F +:100C8C000393F0E7039B023303930A9B002BEAD1F7 +:100C9C000598FFF747FB039B1B18F1E78022E31B2A +:100CAC00D200934298D2002F0AD103980838C0186A +:100CBC0017B0F0BD98A900085CC70008DAFF000067 +:100CCC009B08302238603B706B469B180A9A1B7845 +:100CDC00002A0BD0FB70099BBB70002B1BD100258D +:100CEC000EAE049BAB421BD1E01BE1E77B70F2E73D +:100CFC000EADED560EA9595C002D07DA039E1519A1 +:100D0C000140B54200D97BE62170013401330499CE +:100D1C009942EDD1E3E7012200237F20D21BF6E7B5 +:100D2C00099B002B02D033787F2B1BD80A9B002BFE +:100D3C001BD012ABEB5C2370002301340193012315 +:100D4C00019ADB1B1B199B18039A934200D957E697 +:100D5C003378019A237001342000059909F050FD75 +:100D6C00019B1C1901350136BBE733789B00FB183E +:100D7C001A6805920A9A05981A60FFF7D3FA431C71 +:100D8C00DCE70E203DE6C046F0B59BB000AF3B6201 +:100D9C008023FB181B6806001B07DB0F7B61837825 +:100DAC00F9623A63BB6300290AD10478BB6BA400D7 +:100DBC00E41845780419FB6A9D421BD8A31BFB62FF +:100DCC00F378BB61BB6B002B04D08023FB181B6832 +:100DDC00DB0719D4BB69002B47D13B6B002B03D02D +:100DEC0030003A6AF96A9847FB6AFB63BD46F86BB8 +:100DFC001BB0F0BD01342000FFF794FAFB6A013000 +:100E0C0001332418FB62D6E73378FB619B007B62CD +:100E1C007368BB627B6AF5183B6B002B00D029E131 +:100E2C00FB6AFB63BB6BEC180023BB63A54232D09F +:100E3C002B789B009859FFF775FA84217B181B6857 +:100E4C000130002B0CD08822BA18BB6B126893426D +:100E5C0006D27A1812685B009852BB6B0133BB63E5 +:100E6C00FB6B01351B18FB63E0E78023FB181B6849 +:100E7C009B07B2D53378FB619B007B627368BB62C6 +:100E8C007B6AF5183B6B002B77D1FB6AFB63BB6B62 +:100E9C00EC183B6BBB6380220523BA181268250043 +:100EAC0013405A4253410133FB62BB695B00E318A8 +:100EBC003B633B6BAB4299D02B787B636B789B008D +:100ECC009C59B84B9C4202D3B74B9C4223D37B69B1 +:100EDC00002B33D0796BB86A08F014F900282DD0A8 +:100EEC006C468AB06A46B14B5361BB6A93617B6BAB +:100EFC00D36180239B001384AD4B1361922100239B +:100F0C00AC481032890100F077FCA546FB6B023B24 +:100F1C00FB630235CDE77B69002B05D0796BB86A92 +:100F2C0008F0F0F80028DBD180230122FB181B68A5 +:100F3C00134209D1FB6BFA6A9B1AE9E78023022260 +:100F4C00FB181B681342E4D02000FFF7EBF9842157 +:100F5C007B181B68002B0DD08822BA18BB6B12684B +:100F6C00934207D2791809685B00421C5A52BB6B3A +:100F7C000133BB63FB6B1B18CAE7BB6B1C1E7B638B +:100F8C0015D0802104237A1812681A4014007A6351 +:100F9C007A1812681A420AD00023BC6B7B63183390 +:100FAC0040229B182900BA6BD81909F029FCBB6B9D +:100FBC00EB18FB60FB63BB695B003B613A69FB6848 +:100FCC00944663447B60FB6B7A68934257D17B6B8E +:100FDC00757800215A198023FB181B68D2B29B0725 +:100FEC0000D461088020381800680023C00705D49D +:100FFC008033FB181B685B07DB1723407270B370E0 +:10100C00F17030003A6A796A3B6B9847F8630028B4 +:10101C0000DAEBE6FB6940203370BB6B2100B37048 +:10102C00BB693A6AF37018231B18D81975703B6B9F +:10103C009847041E00DAB1E0FB6ABA6BF868991A9B +:10104C007B6A3A6AC91A3B699C46C91A60443B6B75 +:10105C009847002800DAA3E00025FB6B1C19231825 +:10106C00FB637B6B9D4261D300213A6A08003B6BAA +:10107C009847BBE6BB6B00247B63082390E7FB6BB4 +:10108C00484A1B78BB60FB6B5D78AB009B59934265 +:10109C0002D3454A93420CD37B69002B30D0B968FC +:1010AC00B86A08F02FF800282AD0FB6B0233FB63D8 +:1010BC0089E77B69002B05D0B968B86A08F022F87B +:1010CC000028F2D180230122FB181B6813420AD09E +:1010DC007B6B9B18073240215218796BD219DBB20B +:1010EC0055547B63E1E78023FB181B685B07DCD559 +:1010FC00182240215218631CD2191555DCB2D4E7C2 +:10110C0080230222FB181B68134203D07B6B063230 +:10111C000133E0E7402118225218B968631CD21938 +:10112C001155DBB20234E4B2D554BEE74022082399 +:10113C009B18DB19EB5C0732BA18137084229B00E6 +:10114C009B59BB63BB181C68002C09D08823FB1867 +:10115C001B6800249D4203D2BA1812686B00D45A43 +:10116C0047230121F8183A6A3B6B9847002817DB94 +:10117C00FB6B1B18FB63002C04D1B86BFFF7D2F888 +:10118C00013084B221003A6AB86B3B6B9847002857 +:10119C0006DBFB6B01351B18FB6362E7F86325E686 +:1011AC00F86323E698A900085CC7000815B5000889 +:1011BC000400000168AD0008014B18607047C04680 +:1011CC0000000020F7B504000D001E00019207F08E +:1011DC00F1F8030009F0D0FB054F32003B500199A8 +:1011EC002800A04709F0C8FB385801F0B3FEC046F0 +:1011FC0008000000802102200A4B0905DA6B82B03E +:10120C000A43DA63DA6B0A4007490192019A4A6889 +:10121C00824300204A60DA6B04490A40DA6302B068 +:10122C007047C0460010024000580140FFFFFFF716 +:10123C0080230D4A9B00116882B00B43012113607F +:10124C000A4B0B4A1A600B4B1A6C0A431A641B6C40 +:10125C00094A0B400193019BC0231168DB000B432F +:10126C00136002B07047C0460020024030000020DE +:10127C000024F4000010024000000140F7B5050006 +:10128C000600002D01D13000FEBD2800FEF7DEFF68 +:10129C0001238340DA430E4F04019D433B19019314 +:1012AC001B7B0092002BECD0E3591B69002B09D15E +:1012BC00009B3C191E40636804221968019808F0D1 +:1012CC00E3F9DEE7381998470028DAD1F0E7C04691 +:1012DC0000AE0008F0B5002289B00F490F4809F0A4 +:1012EC003CFA0024002600270E20C0220C4D03904F +:1012FC000696079728000B4B0B4904940294019413 +:10130C000094920006F07CFD0849280009F036F99B +:10131C00200009B0F0BDC0463D130008C8050020F0 +:10132C00500100204116000870140020DDB50008A3 +:10133C0010B5024806F06EFB10BDC046CC00002074 +:10134C00F7B500901F48019108F07DF9061E35D0C5 +:10135C0000252800FEBD237B002B11D02368DB6801 +:10136C00002B01D02000984763689F7123681B698C +:10137C00002B1BD1636804222000196808F084F943 +:10138C0001361034104B9C42E5D3009B002BE0D06F +:10139C00002DDDD02800FFF771FF019B0500002B0D +:1013AC00F6D00021642006F0C5FFF1E72000984735 +:1013BC000028DFD03B00B3401D43E1E705000127C7 +:1013CC00024CDFE72408002010AE000800AE000835 +:1013DC00014B8000C058704740AE0008030010B5A8 +:1013EC000800002B05D0044A136000F0ABFC002071 +:1013FC0010BD16204042FBE70400002010B5054C40 +:10140C002378002B02D1044806F004FB012323703F +:10141C0010BDC04656140020CC00002010B50400AE +:10142C00074808F010F9002C03D00121054809F0F9 +:10143C00C6F9054809F09DF9044806F0EBFA10BD11 +:10144C001C08002020080020C8050020CC0000202B +:10145C0010B50021014809F0BFF910BD1C0800208F +:10146C0070B5FFF7F5FF0500084C094B9C4200D303 +:10147C0070BD63685B79002B06D023685B68002B1A +:10148C0002D02900200098471034EEE700AE000887 +:10149C0010AE000810B5044C0449200007F063FF9F +:1014AC00034B1C6010BDC046680000202CAE000829 +:1014BC00140800200023FA210C4A10B513700C4AB2 +:1014CC00890013600B4A0C481360FFF787FFFFF786 +:1014DC00E1FF0A4B0A4918008B4200D310BD1A1ABF +:1014EC005C681211013222711033F5E75714002099 +:1014FC001C080020200800205D96000800AE0008A3 +:10150C0010AE000810B5044C01000022002320008E +:10151C0007F04AFF10BDC0466800002010B5024815 +:10152C0007F0DCFF10BDC0466800002010B5034B6F +:10153C000100186808F023F810BDC04614080020FC +:10154C0010B5024808F054F810BDC04668000020E1 +:10155C0070B5204B1878002826D0FFF7DFFF1E4C03 +:10156C00051E2CD11D4B1E4C1B68002B11DD09F0E8 +:10157C00F0F80A220023FEF789FE22686368801ABD +:10158C009941002903D1FA239B00984201D9FFF716 +:10159C0067FF22686368FA200021800012184B4113 +:1015AC0022606360FFF7CCFF70BD63685B79002B32 +:1015BC0004D02368290020001B6898471034094B7D +:1015CC009C42F2D32800FFF7B1FF0121064809F035 +:1015DC00F6F8C7E75614002000AE00081C080020DF +:1015EC00C005002010AE00082008002070B50E4D7C +:1015FC00297800290CD10120FFF7A2FE0B4C0C4BD3 +:10160C009C4206D3FFF7A4FF0028FBD101232B70CB +:10161C0070BD63685B79002B03D0236820009B6846 +:10162C0098471034EBE7C0465714002000AE000872 +:10163C0010AE0008F7B500210800FFF781FE041E6C +:10164C002DD0FA2700267F0009F096F91C4B1D4A75 +:10165C001B581360002B06D01B4B1B68092B02DD9B +:10166C001A4806F0D7F900230093002C07D020006D +:10167C00FFF704FE041E02D101277F423E00FFF754 +:10168C0067FF0190002808D1009B114D002B13D14E +:10169C000E483A00330006F0EFF9019BE4E701270E +:1016AC007F423E00D0E72B689B69002B03D00022C1 +:1016BC002800110098471035064B9D42F3D3E7E7FD +:1016CC00080000001808002020080020CC00002092 +:1016DC0000AE000810AE000813B5154807F0B3FFB4 +:1016EC00144B1B78002B0AD0EFF3108472B6FFF763 +:1016FC002FFF002C02D162B6BFF36F8F13BD0E4BC0 +:10170C001B68002BFAD0002809D1002200230B48BB +:10171C000092019300230A4A07F05CF9EEE70928CE +:10172C00ECD1064809F025F8064806F073F9E5E710 +:10173C00200800205714002018080020C80500209D +:10174C0010270000CC00002010B5064B04001B68CD +:10175C0098472100A060044807F0A4FEFFF7BCFFE7 +:10176C0010BDC0460400002068000020044B054A50 +:10177C0000209B1ADB08994201D2C9008858704797 +:10178C0000AE000850AD0008F0B55E1C85B0B50089 +:10179C0000902800072317309843033080080F006F +:1017AC000192FFF7AFFE02AB04000322581D00218B +:1017BC0009F02FF803AB1E70002C0BD0039B2100FB +:1017CC002361002314312A1F0198C058C8500433D8 +:1017DC009A42F9D1E023BA015B001A406D02054B25 +:1017EC002A431A4020000023009907F071FF05B02E +:1017FC00F0BDC046C0FF0F00F0B591B004AF3B6028 +:10180C000B035B0D0D0078607A613B610C0D002BB6 +:10181C0000D173E0BB60002604237E62BE62FE62D0 +:10182C0002931833FB1801930A23182200930233F6 +:10183C009B18DB193200B9687869FFF7A5FA802389 +:10184C00F8601B01984224D37B696C461A795B794A +:10185C008AB01B0213437A69927912041A437B698A +:10186C00DB791B06134304AA9361294B2949D361E5 +:10187C0080239B001384284B516113619221330008 +:10188C00264810328901FFF7B7FFA546BD460DB0BB +:10189C00F0BDFB6817345B055A0D3A61204A1B0BEF +:1018AC0015401D43FB68E01807239843033080085C +:1018BC00FFF728FE041E15D0030010337B62FB6873 +:1018CC00FE62BB62042302931833FB1801930A23B4 +:1018DC001821009302335B18124AB9687869DB1936 +:1018EC00FFF752FA3B690E4A5B0215401D432A0072 +:1018FC0020003B68796807F0EBFEC7E72000072360 +:10190C001730984303308008FFF7FCFD0400E9E72B +:10191C00FF070000F2B500080400000190AD0008BC +:10192C00FF01F0FFAB960008F0B587B00E9F0400E6 +:10193C00150002910393002F15D00F9B10210593D6 +:10194C00009300203B000D9AFFF742F8802306001D +:10195C001B01984208D30221174A1848184B07F06C +:10196C00D7FE07B0F0BD3E00072322000C9C1D40A3 +:10197C001A40D2001734AD011543A0197202154359 +:10198C0098430C9A0330120580081543FFF7BAFDF3 +:10199C00041E09D0002F07D00F9B310000930D9A25 +:1019AC003B001030FFF714F82A002000039B02992B +:1019BC0007F08EFED5E7C04631B6000890AD0008A2 +:1019CC00FF0700004068002804D0044BC01AC00870 +:1019DC0000B2704701204042FBE7C04650AD000802 +:1019EC000EB417B5054C05AB04CB010020000193D8 +:1019FC0001F0CCFB1EBC08BC03B01847799700085B +:101A0C0010B5CB0604D4890603D50349FFF7E8FFCC +:101A1C0010BD0249FAE7C046BFB20008BEB20008CA +:101A2C00F0B591B0079317AB1B7804000D0006922C +:101A3C000593002B00D1B4E002261B9B1B9A1E4081 +:101A4C0001231A400C921B9A07331A4008921B9AD6 +:101A5C00F8331A400992002707F014FE0200B8422E +:101A6C0004D020008D49FFF7BBFF0700002E09D0E2 +:101A7C0044231B9A1A4235D12A0020008849FFF7CB +:101A8C00AFFF3F180C9B002B0AD0059A854B920098 +:101A9C00D258002A00D1844A20008449FFF7A0FFC5 +:101AAC00099B002B5AD0089B002B77D11D00069B5D +:101ABC00002B05D01A0020007D49FFF791FF05008F +:101ACC00189B7C48ED19002B00D0BEE01A9B002B14 +:101ADC0074D11B9BDB0700D5DAE020001B99FFF7C4 +:101AEC008FFFBEE00020744B1E688642C9D0734B3A +:101AFC0028001968FEF7F0FAFA253100FEF728FBEA +:101B0C00AD0069430A9008003100FEF721FB0E91ED +:101B1C00E1210D9009010A98FEF71AFB0B910B9825 +:101B2C003C21FEF7D9FAE1210F9009010A98FEF742 +:101B3C00D3FA0A900E9831006843FEF7CDFA0D9B4C +:101B4C0002903C210B980193FEF702FB20000091C0 +:101B5C000F9B0A9A5A49FFF743FF92E7089B099D8E +:101B6C00002B08D0059A574B920020005649D258AA +:101B7C00FFF736FF0500069B002B05D01A0020004E +:101B8C004B49FFF72DFF2D18079B002B98D01A00FF +:101B9C0020004E49FFF724FF2D1891E700230793EF +:101BAC00E0E7079B4A48012B00D14248189B059D52 +:101BBC00002B4AD11A9B002B53D000251A9F102FB3 +:101BCC0000D9102720001B99FFF71AFF0026B542F9 +:101BDC004CDC199B20001A783E49FFF701FF0126C7 +:101BEC0007231E4203D120003B49FFF7F9FEB74201 +:101BFC0042D9199B20009A5D3649FFF7F1FE013658 +:101C0C00102EEDD1002620003449FFF7E9FE3300F9 +:101C1C00199AD25C1300203B5E2B00D92E22200097 +:101C2C002F49FFF7DDFE0136102E2AD007231E4266 +:101C3C0003D120002849FFF7D3FE3300B742E7D881 +:101C4C0020002549FFF7CCFEEDE7189B2200254923 +:101C5C0007F024FA1A9B002BB0D1059B002B00D067 +:101C6C0037E7200007F076FD11B0F0BD20001A49CF +:101C7C00FFF7B6FE0136AAE720001B49FFF7B0FEBE +:101C8C00BDE7199BDB1919931A9BDB1B1A93E2E72F +:101C9C002000054A0549FFF7A3FE1EE76EB60008B3 +:101CAC0072B6000850AE000869B60008ADB3000863 +:101CBC0097B60008799700082C0800202808002007 +:101CCC007BB6000864AE00089BB60008A1B60008FD +:101CDC009F970008A6B60008AEB60008B0B600087C +:101CEC00B2B6000899310008ACB6000873B5114AB9 +:101CFC0004000B000568914200D9130005216846C9 +:101D0C000D4A06F0BBFE0600636828000B220B4947 +:101D1C005B6807F010FD63683200280069465B6859 +:101D2C0007F009FD636828001B2205495B6807F072 +:101D3C0002FD73BD0F27000032BE0008D1B60008AB +:101D4C00B5B60008012310B500211C00074A9042CB +:101D5C0007D8074A002900D101231360054B1860EE +:101D6C0010BD210040085B00F1E7C04640420F0067 +:101D7C00280800202C08002070B50D00040046181F +:101D8C00B44201D1280070BD217803480134836826 +:101D9C005B689847F4E7C04650AB0008F7B5114BA9 +:101DAC00114C5B6A0093114B0193019B9C4202D333 +:101DBC008620404212E06368009DAB420FD3256938 +:101DCC00002D0CD09F7803799C46664643791B0204 +:101DDC003343FF2633409F4201D1A847FEBD243434 +:101DEC00E3E7C046540800204B0100204B010020C3 +:101DFC00F7B504000E001700144D154B9D4202D38D +:101E0C008620404218E0134B69685B6A99421BD3E9 +:101E1C00AB69002B18D08A780192227994466046DF +:101E2C00627912020243FF2002400198904204D1D1 +:101E3C003A00310020009847FEBD4A79012A03D1AF +:101E4C003A003100200098472435D6E74B0100209A +:101E5C004B01002054080020F8B505000E001700B7 +:101E6C00094C0A4B9C4202D3862040420AE063692B +:101E7C00002B01D12434F4E73A00310028009847B4 +:101E8C000028F7D1F8BDC0464B0100204B010020C3 +:101E9C0010B508220021024808F0BBFC10BDC0465A +:101EAC000F09002030B50A4B0A4CA34201D3002085 +:101EBC0030BD1A7F196AD2005218914201D12433D5 +:101ECC00F3E708310D1F2D788542F6D10120EFE79D +:101EDC004B0100204B010020F7B56B460579DC1D4A +:101EEC000E0025706B0609D02800FFF7DBFF0028D9 +:101EFC0017D00020124B1B78834212D0114F12487E +:101F0C00002E0FD02B000321104A07F0BBFC2078C9 +:101F1C0001F0C2FCFB69002B02D02100082098477D +:101F2C000120FEBD2B000321094A07F0ABFC2078F1 +:101F3C0001F0D4FCFB69002BF2D021000920EEE764 +:101F4C000E09002054080020E8AD000817B700085F +:101F5C002AB7000810B5044C030020000121034AE5 +:101F6C0007F090FC002010BDE8AD00083FB700085A +:101F7C0070B5050001F008FD0300040078330ED1A4 +:101F8C002B0002210B4A0C4807F07CFC280007F0C0 +:101F9C007DFC0A4A002413688343136007E0002881 +:101FAC00F4D02B000121064A034807F06BFC2000FB +:101FBC0070BDC0465AB70008E8AD000818090020EB +:101FCC007BB7000810B5084C23785B069B0F0A33CF +:101FDC009B001B59181E05D02000044A0449984741 +:101FEC00C043C00F10BDC046540800205C08002040 +:101FFC0064080020F0B585B004000191042813D0CA +:10200C00012828D1204B1B78002B24D000F0F2FDA6 +:10201C001E4E1F4B9E421BD20025336A0293337F08 +:10202C00AB4204D82436F4E7FFF732FFEAE7029B11 +:10203C00EF00DF19387901F0A7FC0390387907F02D +:10204C0025FC144A136883431360039B002B0FDA9F +:10205C0000220D4B1A700D4D0D4B9D420BD30E4BA8 +:10206C001B6A002B02D020000199984705B0F0BDE7 +:10207C000135EDB2D3E7EB68002B03D0210028002B +:10208C00019A98472435E7E70D0900204B01002001 +:10209C004B010020180900205408002073B56B4632 +:1020AC00040080781870637922791B0213436A4606 +:1020BC0053800322E37813406A46137107F0E6FB62 +:1020CC00234B06001B68234D03420DD0A47820003F +:1020DC0000F076FD2000FFF74BFF08F049FA0028CE +:1020EC0002D1963008F0DCFA684601F08BFB6B46A7 +:1020FC0002001B7878321BD10221174A174807F0CF +:10210C00C1FB6B46187801F00FFC0300783318D133 +:10211C006B4602211B78124A104807F0B3FB2B00C8 +:10212C000120B933C43518702B6833432B6007E09A +:10213C000C4A0028E5D00948012107F0A3FB002038 +:10214C0076BD0028EBD06B46074A1B78F3E7C046F8 +:10215C0018090020540800209DB70008E8AD0008BD +:10216C00E4B70008C0B7000804B80008F0B5AE4FDB +:10217C000600BB690C00150085B0002B1FD131780F +:10218C00CB06DB0E012B00D1A5E0022B00D121E107 +:10219C00002B2AD12A6870787F293BD9062813D0C6 +:1021AC00082832D0002820D1012350701370C33777 +:1021BC00397899400B4313700223236002E098474F +:1021CC000028DCD1002012E0F278B0781202104323 +:1021DC00120A111FD6B2012907D9072A05D8C1B294 +:1021EC000191796A0F78002F03D11620404205B077 +:1021FC00F0BD4878B04204D10198984200D122E158 +:10220C000133C919EEE70B78D7E7BA373B7813706F +:10221C000123D2E701380828E7D8FDF749FF48E643 +:10222C0052E605E6E6E60B00B07801F06BFA002802 +:10223C00C8D0DAE7F378B2781B027C6A134332D148 +:10224C00FFF726FE3900B378BA310B70FB69002B0F +:10225C00B8D003209847B5E76378042B0CD0052B36 +:10226C0014D0022B0AD1F378B27865791B02134390 +:10227C009D4203D1012001E0E37801932378E41817 +:10228C002378002BE8D10028AFD0D9E7F378B278C7 +:10229C001B0213439D42F1D1019B002BEED1200078 +:1022AC00FFF7FCFEEAE7FF2500200195E8E7F3784D +:1022BC00B2781B021343012B97D10022C3373A701B +:1022CC0080E7F378B2781B021343012B00D08CE724 +:1022DC00C3373B7076E72B6802933B00BA331B780D +:1022EC00002B00D181E7737932791B021343DAB2E8 +:1022FC0094467A6A01921578002D00D175E75078D2 +:10230C000390022803D11079604500D9A4E052193A +:10231C00F1E7029B1A705A70039B4EE701998A18D9 +:10232C000192A3E00B2A00D05FE70024FF25039461 +:10233C0002950AE0019B5B78042B14D0052B2ED060 +:10234C00019B019A1B78D3180193019B1B78002BDE +:10235C00F0D1FB69002B02D0072003999847002C81 +:10236C0000D02FE741E7019BDB780293019B327988 +:10237C009D7873791B0213439D42E1D1F378B278B7 +:10238C001B021343029A9A42DAD1019B0024039355 +:10239C00072DD5D87B19BB331A700134D0E773796C +:1023AC0032791B0213439D42CAD1B378029A9342ED +:1023BC000BD0019B9C78200000F002FC2000FFF762 +:1023CC00D7FD43425841C4B2BAE70198FFF766FE05 +:1023DC000400B5E773787F2919D9002B00D004E7E6 +:1023EC0036792D6873060AD03000FFF75BFD0028A4 +:1023FC0000D1FAE6BA373B78002B00D1F5E629007C +:10240C00300007F0B4FA00236B700233D5E6012BD1 +:10241C000CD0032B00D0E8E6F378B2781B02134300 +:10242C0000D0E2E6012107E054080020F178B378EF +:10243C000902194300D0D8E63000FFF74DFD002803 +:10244C0000D0BFE6D1E62960022A00D0DBE6CB78CB +:10245C008A781B021343B0E672787F2900D861E7B3 +:10246C00002A00D155E70A2A00D0BEE6019A12785C +:10247C00002A00D1B9E601994978042900D04DE72A +:10248C00019989788B4200D048E70022072B02D8AB +:10249C00FB18BB331A78029B1A70B9E6F7B5050026 +:1024AC001F000426009101923B002800019A00991C +:1024BC0001F098FA030004000B330AD12B0002211F +:1024CC00054A064807F0DEF9013E05F0B7FE002E7E +:1024DC00EAD12000FEBDC04625B80008E8AD0008D2 +:1024EC0013B5154C237D002B1ED1E26801AB802067 +:1024FC00A1680192FFF7D2FF019AA3689B18A36011 +:10250C00E3689B1AE3600ED1002A0CD02069E388A3 +:10251C00834208DD2300C8331978FDF76DFE0029CE +:10252C0001D10123237513BD002180200B000A006B +:10253C00217501F057FAF6E754080020002330B556 +:10254C0085B004000D000193984261D199423BD1B2 +:10255C000B000822280002A907F018FA002804DA58 +:10256C00802001F099F905B030BD6B462D4C029AD4 +:10257C00DB892260039A257562602B4A2561A26073 +:10258C006A46127AE56052B2002A10DB802B09D918 +:10259C000121264A264807F0B4F8802001F07CF986 +:1025AC002800DEE7002B02D02361E360DBE7FFF7B6 +:1025BC0009FD0028D4D02269E388934200DD130082 +:1025CC00E360FFF78DFFCEE7164D01ABEA68A96813 +:1025DC00002A05DC020007F0D9F90028C3DABFE7AE +:1025EC0007F0D4F9002804DA802001F055F9200016 +:1025FC00B7E7019AAB689B18AB60EB689B1AEB6072 +:10260C00B1D1094BAB60FFF7DDFC0028D9D1A7E7AE +:10261C008028A8D1034BDA68002AD2D11B7D002B6D +:10262C00CFD1A0E7540800208C0800204CB800083B +:10263C00E8AD0008054B064A58629A62054A00202C +:10264C00DA62054A1A63054A9A61704754080020F9 +:10265C0079210008A91D0008651E0008FD1D000851 +:10266C00F0B5040085B04E4B009300980122524205 +:10267C00D31705F00BF94B4B4B4D1B78002B0CD0A3 +:10268C0002214A4A4A4807F03CF8782464420098F0 +:10269C0005F074F9200005B0F0BD6B6A002B0DD16C +:1026AC0000F0CEF8FFF7C6FF6B6A002B06D10121B4 +:1026BC00404A3F4807F025F80124E7E73E482C62E2 +:1026CC00E8616E6A01F016F800F030FF041EDEDBE4 +:1026DC0000F0B0FA041EDADB7378012B02D1F37927 +:1026EC00002B06D10121354A314807F00AF816248F +:1026FC00CCE72A000026C832137002AA10005380BF +:10270C001671167001F07EF80400B042BFDB802712 +:10271C0002AB18001F7001F075F80400B042B6DB74 +:10272C00274B30001900019307F015F90400B04253 +:10273C00ADDB3800019907F00EF90400B042A6DBBE +:10274C00204E214B9E4219D3002001F0EDF8041EBF +:10275C009DDB2E000127C436336880203B43336059 +:10276C0001F0E2F8041E00DA91E7802332685B0284 +:10277C001343B835002433602F7088E70024376A80 +:10278C00337FA34201D82436DBE7E300FB1818792A +:10279C00196807F0E0F800288ED10134E4B2EFE7B5 +:1027AC00B80000200C0900205408002065B800086F +:1027BC00E8AD000888B8000801200008ADB8000892 +:1027CC00492500084B0100204B010020F0B58BB0CF +:1027DC001122194905A808F013F81022002101A8AC +:1027EC0008F017F8154C12220021200008F011F8FF +:1027FC00102101A802F0AEFE00281ADD082800DA2C +:10280C000820083801AB1B180F2021000022844639 +:10281C0014276D46985CED190609AE5D6546284097 +:10282C006D46ED19285C01320E7048700231082A91 +:10283C00EED120000BB0F0BDE7B800085A14002010 +:10284C00F0B58B4B8BB01B7800AF7B61002B03D0AA +:10285C008848BD460BB0F0BD864C874BBB6100234E +:10286C001D00FB603B61FB612378002B07D1834B80 +:10287C0002349C42F1D101227D4B1A70E8E760785A +:10288C0005281FD8FDF71EFCAF03F1AF2153202202 +:10289C007B69B9180B70402324217B847B697918E0 +:1028AC000B70B81800F094FF002809D008237B8423 +:1028BC001833F81800F08CFF002801D07B697B845A +:1028CC007B8CE3712378E418CEE7E378002BF9D105 +:1028DC00A378002B21D03B690133DBB23B61F1E7DC +:1028EC006A6894421CD024359D42F9D36D4688B059 +:1028FC006A46634B9461536103231361C221002325 +:10290C00604810324901FEF777FFAD465D48012162 +:10291C005D4A06F0F6FE00209BE75C4D5C4BE3E75E +:10292C00AB68002BD7D0200039699847D3E7002D2E +:10293C0057D1584A0121534806F0E3FEE6E7BB683D +:10294C002A6ADB00D3187B60A2781B799A423FD1AC +:10295C0001260322F3B23B60E37813402132BA180C +:10296C001370637922791B0213437B84A3787F2B2A +:10297C0024D93300012210339A401300BA691A4249 +:10298C0023D180233A6813432022B91808000B7016 +:10299C0000F01EFF002818D12023FB181B787A6842 +:1029AC00A37013715BB2002B02DA3E681036F6B2DC +:1029BC000123B340BA691A43BA6183E70123B340D8 +:1029CC00BA691A4201D1F3B2DEE70136102EC0D13A +:1029DC00BB680133BB602B7FBA689A42AFD32E4AD7 +:1029EC00A8E70023F6E7FB68032B24D1FFF7EEFEE4 +:1029FC00B860002812D0FDF795FC061E0ED01028EA +:102A0C0004D00221254A1F4806F07BFE3200A01C90 +:102A1C00102E00DD1022B96807F0F2FE2378E218C0 +:102A2C005B08E318911E121B032A0CD5FB680133BB +:102A3C00DBB2FB6046E7FB68002BEFD1FB69002B98 +:102A4C0008D1174A76E77A69013B4A705A780A70BE +:102A5C000A00E7E7FB69FA69E31A93709BB21B0A59 +:102A6C00D37013003A691A71E0E7FC612AE7C0469B +:102A7C0059140020DC000020010001004B01002053 +:102A8C00F8B80008E0AD0008DEB900084B010020E2 +:102A9C004B01002018B9000859B9000876B9000894 +:102AAC00C1B90008094A0023110010B514788442FA +:102ABC0005D15468002C02D09B01C81810BD0133FD +:102ACC004032042BF2D10020F8E7C0462009002048 +:102ADC00F0B504002C3C63680600257887B01033F1 +:102AEC0027D1E16BE2688B0735D5002A07D1042387 +:102AFC00194202D0002363601BE00B43E36305AB78 +:102B0C002800A168FFF7CAFC031E08D00121294A3E +:102B1C002948009506F004FE16235B42EBE7059A64 +:102B2C00A3689B18A360E3689B1AE36023699B1856 +:102B3C002361636810330CD0236967690393A3691D +:102B4C00029307F015FD002828D031001B4807F030 +:102B5C0003FD07B0F0BD05AB2800A16800F0AEFF87 +:102B6C00031ED3D1059FA368DB19A360E368DB1BAD +:102B7C00E3602369DB192361002FBBD0280006F02A +:102B8C0014FF01003800FDF7E3FA0029B2D1E36825 +:102B9C00002BAFD0280000F0D9FFCAE760613000ED +:102BAC00103804F037FF002FD3D02800029A039975 +:102BBC00B847CEE70CBA0008F8AD0008F0060020C4 +:102BCC0010B5EFF3108472B6FFF76CFF011E09D03D +:102BDC004368103306D18C235B4243602C3104488C +:102BEC0007F0BAFC002C02D162B6BFF36F8F10BD98 +:102BFC00F006002070B500250C4CEFF3108672B671 +:102C0C006368103307D18C2321005B420848636052 +:102C1C002C3107F0A1FC002E02D162B6BFF36F8FEE +:102C2C0001354034042DE8D170BDC0462009002088 +:102C3C00F006002070B500250126084C200008493C +:102C4C0007F072FC2000320031001038013507F01B +:102C5C0049FC4034042DF1D1002070BD4C090020FA +:102C6C00DD2A000810B5034A03480021121A06F0A9 +:102C7C0020FE10BD70140020500100200648074AA9 +:102C8C0010B5121A064906F018FE064A06480749FE +:102C9C00121A06F012FE10BD000000204B0100209D +:102CAC005CC7000800000020000000205CC7000882 +:102CBC00F0B585B000AF0C1EB86036D06E468AB049 +:102CCC006D4609686268A3682B6205232048A961D8 +:102CDC006861EA612B61A1212A001E481032002391 +:102CEC0089017A60F860FEF787FDB546E168AD466C +:102CFC00226963692B6205231748A9616861EA613F +:102D0C002B61A12100237A68F8688901FEF774FD14 +:102D1C00B546E3690121114AF86806F0F9FCA3698C +:102D2C0001210F4AF86806F0F3FCBB68012B07D1B0 +:102D3C00EFF305830B4A0748B968103B06F0E8FC33 +:102D4C002100B86804F02CFCBD4605B0F0BDC046AF +:102D5C0036BA0008B0AD000865BA000894BA00088D +:102D6C00A3BA0008D1BA000830BFFDE7F7B50A4B8B +:102D7C000A4D0600EF18CC1B2A00200008490193CD +:102D8C0007F03EFD60190021019A07F042FD380062 +:102D9C00083C74660830FEBD040000000000000012 +:102DAC0010AE0008054B5A699B689A4205D08023E7 +:102DBC00034A5B0551680B4353607047E0130020D6 +:102DCC0000ED00E0F0B53E4B8BB05B6800AF7B6074 +:102DDC00DB05DB0D04003B6062B6BFF36F8F394E31 +:102DEC00130EFF2B08D1F33B1340082B3DD10121CF +:102DFC003000354A06F085FC00252C003B68032B7F +:102E0C0039D1324A0121300006F07BFCA369304AEB +:102E1C00934202D32F4A934205D32F4A934249D36C +:102E2C002E4A934246D2023B1A882D4B9A4241D1EC +:102E3C002368012130002B4A06F06AFC266808231F +:102E4C002022F818210007F0DBFC7B6A002D33D020 +:102E5C00DA0502D1244A13437B6208233000F918A7 +:102E6C00FFF726FFBD460BB0F0BD01251207C5D5F7 +:102E7C000C000025C2E7F822796852001B4B114266 +:102E8C0000D01B4B6A468AB07A606A4693613B68F5 +:102E9C001849103BD36180239B001384164B51615E +:102EAC00136191210023300010328901FEF7A4FC3C +:102EBC007B689D460026C2E75B0A5B02CCE7C046F6 +:102ECC0000ED00E0B0AD000812BB00083DBB0008EF +:102EDC00BC00000890A900080000002000000020A1 +:102EEC0002DF000054BB0008FF010000E4BA000838 +:102EFC00F9BA000870BB0008040000010821024A5E +:102F0C0053698B435361704700ED00E0EFF3088089 +:102F1C00EFF3098101B57246FFF754FF01BDC046BE +:102F2C00094880F3088872B608480949401880F3AC +:102F3C000988EFF314800221084380F31488BFF34F +:102F4C006F8F06F0D0FC000070300020701700204E +:102F5C000008000010B50A4B9B6883420DD1EFF3BB +:102F6C000583002B09D08022064B520559680A4371 +:102F7C005A605A6A04490A405A6205F021FA10BD97 +:102F8C00E013002000ED00E0FF7FFFFF15498A6889 +:102F9C0015481044EFF3098CF0C043464C46554697 +:102FAC005E466746F8C072B6104F114E4A698A6089 +:102FBC003E60104C141920680F4C2060906E00235A +:102FCC009366002800D162B6074C10191030F8C86F +:102FDC009846A146AA46B346BC462438F0C88CF3A2 +:102FEC0009887047E01300203000000004ED00E079 +:102FFC000000000864000000200A00200420714634 +:10300C00014202D0EFF3098001D1EFF3088081690E +:10301C00023909780229FFD001B5724606F051FC3D +:10302C0001BDC04643B2000605D41F221A4001233D +:10303C009340014A1360704700E100E043B2000680 +:10304C0009D41F221A4001239340034AD367BFF3CC +:10305C004F8FBFF36F8F704704E100E030B5FF2551 +:10306C0003220B00290040B20240D20091409B0188 +:10307C002B40C943934000280ADBC0240A4A80082D +:10308C0080008018A40002590A401343035130BD3C +:10309C000F2210400838054A800880008018C26949 +:1030AC0011401943C161F2E700E100E000ED00E0DE +:1030BC00FF22044B9343044A9360BFF34F8FBFF33B +:1030CC006F8F70470000000800ED00E010B5203A4B +:1030DC001360029B01245360039B06499360049B7D +:1030EC00A143D36080235B04D3610023916102650B +:1030FC00836610BDD111000870B50B4B150098609C +:10310C00426E0A4B0E001A602C1C86F309880020B4 +:10311C00034B9847201C002100220023014C204720 +:10312C000F990008D1110008E0130020200A00209C +:10313C001022014B1A61704700ED00E0F0B5C0247D +:10314C0000220326FF25A40010002F003040C000F1 +:10315C008740054993089B005B1819590132B94304 +:10316C0019511F2AF0D1F0BD00E100E010B5EFF3CA +:10317C000583054A103BDB00D118496898588847ED +:10318C00FFF710FE10BDC04690AB0008F0B587B03D +:10319C0007000E0014000021102268461D0007F0E5 +:1031AC0038FB6A4602239370054B2A0021006846BF +:1031BC0001930497059605F08BFC07B0F0BDC04653 +:1031CC002999000810B5024B1B689847002010BDC8 +:1031DC00240A0020034B044A1860022391780B4305 +:1031EC0093707047240A002010000020072310B5AC +:1031FC000449054A99430548521A05F015FF002069 +:10320C0010BDC0467754002000400220280A002040 +:10321C00F8B50600002501277378AB4200D8F8BD3D +:10322C0034786419200000F0FDF800280ED020003E +:10323C0000F022F9074AE1008B58002B06D05218F7 +:10324C001F2138000C40A040516898470135EDB261 +:10325C00E2E7C046340A00200022052010B50C4CD1 +:10326C00110020706070FFF7F9FE0022062011009B +:10327C00A070E070FFF7F2FE0C220721054807F062 +:10328C00C8FA002207201100FFF7E8FE002010BD4D +:10329C00400000204400002010B50400FF20002C4A +:1032AC0005D02000FCF7B4FF1F23181AC0B2044B42 +:1032BC001856044BDA6F1443DC67FFF7B3FE10BDEE +:1032CC004000002004180240024AD36F8343D367A6 +:1032DC007047C04604180240020000B508000329DC +:1032EC000AD80E4BFCF7EEFE02090C131968914339 +:1032FC00196059689143596000BD19681143F7E78B +:10330C00596811435960196891431960F4E71968B9 +:10331C001143196059680A435A60EDE700180240DE +:10332C0070B5FF230D001400002804D0FCF770FFCB +:10333C001F231B1ADBB2094AD8008358AB4203D1B6 +:10334C0011184968A14204D0002B04D11550121851 +:10335C005460002070BD10204042FBE7340A00206E +:10336C00FF2310B5002804D0FCF752FF1F231B1AB3 +:10337C00DBB20021024ADB009950D218516010BD1B +:10338C00340A0020C022C30452031340032210B598 +:10339C000724800803431A401B0C9C4099400448A6 +:1033AC0092001218106EA0430843106610BDC04660 +:1033BC0000180240C022C3045203134003228008A9 +:1033CC0003431A40044918329200505807221B0C30 +:1033DC009A401040D84070470018024013B50E4C6C +:1033EC00200007F055F8002807D10C4801210C4AA1 +:1033FC0006F087F9132040420AE0402300933F3B3C +:10340C000193A3681B68002B03D0694620009847E2 +:10341C0016BD5820EFE7C04630AA000878AD00086A +:10342C0090BB00081F2201210240030008009040BD +:10343C0010B502003F2B05D90C480D4A06F068F96F +:10344C00002010BD0B481F2B0AD8C36813409A42AA +:10345C0004D001691140891A4B4259410800F0E728 +:10346C00C36A13409A42F9D0016BF3E778AD0008B8 +:10347C00AFBB0008001802401F22012102400300CC +:10348C00080010B590403F2B06D90848084A06F0B2 +:10349C003FF91620404210BD064A1F2B03D8D060BE +:1034AC0010610020F7E7D0621063FAE778AD0008EE +:1034BC00AFBB0008001802400200802103008A43C1 +:1034CC000020072A08DC5AB20448002A00DA044813 +:1034DC0024228B435343C0187047C046980D0020DC +:1034EC00B80E002010B5024802F0AAFD10BDC0466F +:1034FC00B40A0020044B020010B51800034906F072 +:10350C001DFA1620404210BDD8AD0008EFBB0008D4 +:10351C00044B020010B51800034906F00FFA1620F0 +:10352C00404210BDD8AD000808BC0008F7B55B4C94 +:10353C00200006F0ADFF002807D15949594806F084 +:10354C0004FA132464422000FEBDA568AB69002B6D +:10355C0005D15549534806F0F8F90524F2E7534EC6 +:10356C0000223100200098470028F2D12B68002B54 +:10357C0001D14F49EEE720004E4998470028F8D179 +:10358C00EB68002B01D14C49E4E73100200001AA83 +:10359C009847061EF7D1019A484B9A4205D04849E4 +:1035AC00404806F0CBF98624CCE7464D464BE872F2 +:1035BC002B6008232B71063BEB71FF33FF3331007B +:1035CC00424801AA2B8106F01DFD041E07DB019B5E +:1035DC0032001979186801F0DBFF041E05DA2200AD +:1035EC003B49304806F0AAF9ADE7280002F0D8FCB8 +:1035FC003849021E0BD1280006F0D3FD3649021EB5 +:10360C0005D1280006F0BAFD021E04D03349254826 +:10361C0006F094F9A1E7B921402390270400012674 +:10362C0089006B52043168542D497F006B52043170 +:10363C0068542C496B508323DB00E81800193200C6 +:10364C003100243406F04EFFBC42F4D10022082095 +:10365C001100FFF703FD0820FFF7E4FC8020224B4C +:10366C004005D96B214A014211D1D96B0143D96371 +:10367C00D96B01400191019980215068C900014327 +:10368C005160DA6B1A490A40DA6300245BE7802345 +:10369C005168DB000B435360F7E7C04630AA0008C3 +:1036AC001ABC0008D8AD000839BC0008D4AE00081C +:1036BC005BBC0008CCAE000876BC0008006CDC02D9 +:1036CC009ABC0008B40A0020005C0040ACAE0008B4 +:1036DC00B6BC0008D4BC0008E8BC0008FCBC000860 +:1036EC000404000024070000001002400070004099 +:1036FC00FFFFFFEFB822024B920098507047C04674 +:10370C00B40A002013B504000848210006F05DFD42 +:10371C0003000020834208D00548009301212300B8 +:10372C00044A05F0FDFF0520404216BDB40A0020F6 +:10373C00D8AD000811BD0008130042B213B5040047 +:10374C00002A0BDA802801D1002B0AD01148220064 +:10375C00114906F0F3F81620404216BD402B00D953 +:10376C0040238022210091430C4A0D48890189187D +:10377C000A18210006F08CFD030000208342ECD0D7 +:10378C000448009301212300064A05F0C9FF0520D7 +:10379C00E2E7C046D8AD000808BC000824050000CC +:1037AC00B40A002037BD000843B210B50C00002B42 +:1037BC0001DB002902D1FFF7ABFE10BD034B01006A +:1037CC00180006F080FD20600020F6E7B40A002007 +:1037DC0010B502790378002A02D107495A0604D1A0 +:1037EC0078220020134205D00449054806F0ADF8B4 +:1037FC000120404210BDC0465DBD00087CBD0008E4 +:10380C00D8AD0008F7B50378040018000193FFF752 +:10381C0053FE051E10D06188438822798B4229D231 +:10382C0080201B4E1B4F00018446F359012A06D100 +:10383C004800C01860450ED316204042FEBDC91882 +:10384C008142F9D200223000019906F0B8FD62885D +:10385C006A80F3590CE0C9180904CB18300001999F +:10386C0006F0ADFD63885B006B806388F2595B00EA +:10387C009B18F35122796388012A01D15B009BB21A +:10388C002B802379032BD7D800202B71D6E7C04689 +:10389C00B40A00202407000037B50400FFF70CFE23 +:1038AC00051E13D021000A4806F02DFD00280AD071 +:1038BC00084D0090230028000121074A05F030FF35 +:1038CC000520404201E001236B713EBD1620F8E754 +:1038DC00B40A0020D8AD0008A0BD000873B50600DE +:1038EC00FFF7EAFD041E16D04379002B11D03100EE +:1038FC000A4806F036FD051E09D00948330001219F +:10390C00084A009505F00CFF0520404202E060716A +:10391C00E060002076BD1620F7E7C046B40A002010 +:10392C00D8AD0008C7BD000873B50400FFF7C4FD8F +:10393C00051E1FD0104E037902882100300006F0BE +:10394C0055FC00280AD00D4D0090230028000121C1 +:10395C000B4A05F0E5FE052040420AE063B2002B5D +:10396C0007DD084BA101C91820002A888919FFF727 +:10397C00E3FE76BD1620EFE7B40A0020D8AD0008B0 +:10398C00EEBD00082405000037B50400FFF794FDD8 +:10399C0000281BD00E4883681B69002B01D1002026 +:1039AC003EBD0C4998470228F9D121000A4806F07F +:1039BC0049FC0028F3D0094D009023002800012178 +:1039CC00074A05F0ADFE05204042E9E71620FBE76B +:1039DC0030AA0008CCAE0008B40A0020D8AD00080C +:1039EC0011BE0008F0B585B0040016001F0003914D +:1039FC00FFF762FD002802D063B2002B07DB220028 +:103A0C0029492A4805F09AFF16256D4248E01430E2 +:103A1C00029000220023029804F02EF8051E06D016 +:103A2C002A002349214805F089FF0B25EDE706F014 +:103A3C009FFD002802D10830FFF700FB802C02D13B +:103A4C00402E00D94026210033001A48039A06F074 +:103A5C0042FC011E12D0184A009123000121134888 +:103A6C0005F05EFE029803F0D5FF06F081FD0028FC +:103A7C0002D10830FFF7D6FA0525C6E7802C05D110 +:103A8C00002E03D002002000FFF756FE06F070FD5A +:103A9C00002802D10820FFF7C5FA002F00D03E60A5 +:103AAC00280005B0F0BDC04608BC0008D8AD000821 +:103ABC0035BE0008B40A002053BE0008F7B5040058 +:103ACC00009117000193FFF7F7FC1A49051E04D06B +:103ADC0063B2C668002B07DA17491848220005F0B4 +:103AEC002DFF16204042FEBD009B002B18D0BE427D +:103AFC0000D93E00124BA101C9182B693200C9181C +:103B0C00104B0098C91806F07BFEEB689B1BEB6012 +:103B1C002B699B192B61019B002B08D10020E2E73C +:103B2C00002FF8D00849054805F00FFFF3E7019B7B +:103B3C001E60F3E77ABE00088EBE0008D8AD000800 +:103B4C0024050000B40A0020AFBE000810B5040024 +:103B5C00FFF7B2FC002802D063B2002B03DA20007E +:103B6C00FFF7C8FC10BDC368002B01D00020F9E79B +:103B7C00034BA1010288C9182000FFF7DDFDF5E712 +:103B8C00D80F002070B5114C00234022802120005A +:103B9C0006F02CFB0023402219002000902606F092 +:103BAC0025FB002576008323DB00E0184019243523 +:103BBC0003F030FFB542F6D1B8239B00E358002B3D +:103BCC0002D000210120984770BDC046B40A0020E5 +:103BDC00B82210B5044B92009B58002B02D0002148 +:103BEC000520984710BDC046B40A0020B82210B575 +:103BFC00044B92009B58002B02D0002106209847C2 +:103C0C0010BDC046B40A0020BC23082270B5104C6D +:103C1C000025104E9B00E25032000433E5500E4B51 +:103C2C0003CB03C2BB239B00E358AB420ED029004D +:103C3C0028009847094BE25AAA4207D0063BE35C9E +:103C4C007F2B03D831002800FFF776FD70BDC046EE +:103C5C00B40A0020D80F0020500D0020A202000052 +:103C6C00F0B591B0029316AB069204CB03911B886E +:103C7C0004920193029B5C889B880134E418029B9C +:103C8C00DB88E418002A00D1D4E0FA23019A9B00C7 +:103C9C009A4200D3CEE083680FA99B6A984700280C +:103CAC0000D0C9E0019B002B0CD1644B049A9A42C2 +:103CBC0040D8634B93429B414A229343614A9446BA +:103CCC00634401930F9B0499180061430D93FCF717 +:103CDC0003FA069B1B89984200D21800049B05909E +:103CEC0043430C93584B0A93029B059A1B899342AE +:103CFC0022DA0A98039B039ADB8892885B08191CCA +:103D0C00934200D9111C039B8AB21980069B1B8815 +:103D1C009A4206D9029B19880B1C914200D9131C9C +:103D2C009BB2039A1380484B984201D186204042A3 +:103D3C0011B0F0BD454BC4E70C990D98FCF708FA8F +:103D4C000990002930D1029BFA219B8889000793A6 +:103D5C00029B5B880B930B9A079B9C18069BA4B247 +:103D6C009B880893069B5D886B469E8C019B5843F1 +:103D7C00FCF7B2F9069B301ADA8880B21700904231 +:103D8C0006D9029BDB881F1C834200D9071CBFB2DB +:103D9C00731EDB1B9BB29C420FD2029B361B013E57 +:103DAC00DB88B7B2BB4212D2049A059B944601330E +:103DBC0005930C9B63440C9396E708994C19A4B299 +:103DCC009C4217D9361B013EB7B2BA42ECD86308F5 +:103DDC009D4206D26A46958D0B9A9A4200D91D1CBB +:103DEC00ADB2661B079BB6B2B34205D2E51A1E00F4 +:103DFC00ADB204E01C00EAE7089BB342F6D8FA2304 +:103E0C00601C9B0058430999FCF766F9019A030062 +:103E1C00101A9A4200D2981A0A9B9842C4D2039B59 +:103E2C00059A5D809E80DF801A81002800D161E7B1 +:103E3C000A90B9E716207AE7052078E700350C00E0 +:103E4C0020A107006B030000FFFFFF7FEE020000C4 +:103E5C00F7B5846800AFA446002928D0002B26D0E3 +:103E6C001C7A1E685D68E40725D58024A405A6424B +:103E7C0001D2A54229D31D21082316486A468EB0CB +:103E8C007A606A461362936280239B00124C1386FD +:103E9C00124B54619061D1615662D562136100235B +:103EAC000F4810491032FDF7A7FC7B689D46162081 +:103EBC004042BD46FEBD80242401A64201D2A5424B +:103ECC0003D30B2103230848D8E76446A469A04711 +:103EDC00EFE7C046CCBE00080BBF0008080000018D +:103EEC0050AD000840440000D5BE000873B5140066 +:103EFC001D0082683032064E83683A33B44204D8CF +:103F0C0001950094FFF7ACFE76BD16204042FBE70E +:103F1C0040420F0073B514001D0082684832064EF3 +:103F2C0083685233B44204D801950094FFF798FE8D +:103F3C0076BD16204042FBE700127A0037B5436885 +:103F4C000D009B691B689847041E06D001212B00AD +:103F5C00034A0448009405F0E3FB20003EBDC04634 +:103F6C0058BF000858AD000837B543680D009B6971 +:103F7C005B689847041E06D001212B00034A0448B5 +:103F8C00009405F0CDFB20003EBDC0467BBF000871 +:103F9C0058AD0008F0B59BB003934368050002913F +:103FAC0001920021482208A8DF6906F032FC2800A3 +:103FBC00019905AAFFF7C2FF002818D17F22059BA3 +:103FCC00134214D03F2248241B0A1A405443029B2C +:103FDC0000921C19A4B206AA08232100280005F09F +:103FEC006BFD021E05D03C493C4805F07BFD1BB027 +:103FFC00F0BD04AB9B7B1B071B0FDAB2944608AADF +:10400C00137104ABDB7A990603D502215079014375 +:10401C00517106AA9279910604D5042108A8467913 +:10402C0031434171D20604D5082208A948790243CC +:10403C004A715AB2002A04DA102208A948790243BC +:10404C004A7106A9CE7908AA7606760E5B061FD5AC +:10405C00069BDB00DB080893012351790B4353715A +:10406C0062461F4B9B5C402B2FD808AA52799207B3 +:10407C0013D4002B11D003220333083493432800AC +:10408C000AAAA1B205F018FD021E06D01549ABE72D +:10409C004B88DB045B0D0893E2E708A94B79F6002B +:1040AC00DB0710D5BB689E1933687268002B01D0F2 +:1040BC00280098472800009A0399FFF755FF00281D +:1040CC0000D174E793E77B68EDE70121064A0348CA +:1040DC0005F004FDEEE7C0469FBF000858AD000890 +:1040EC0024C40008C6BF0008EBBF0008F7B50500E4 +:1040FC00066901225242D3171036300005F0F9FC44 +:10410C001821280001AAFFF719FF041E28D110233B +:10411C00019A18219A4328000192FFF725FF041EEB +:10412C001ED101F0BFFE1821070001AA2800FFF7DD +:10413C0005FF041E14D10822019B134210D001F07C +:10414C00B1FE0E4BC01B98420FD91022019B1821B7 +:10415C001A4328000192FFF707FF041E00D10B3C05 +:10416C00300005F0CAFC2000FEBD1821280001AA71 +:10417C00FFF7E4FE0028DED00400F1E700A86100A0 +:10418C0070B50469050023790E00002B25D110347D +:10419C0001225242D317200005F0ABFC7F21F3889B +:1041AC003288013B0B40FF21013A52061A43B38877 +:1041BC000902013B1B020B401A4333890849013B9E +:1041CC001B040B4028001C211A43FFF7CDFE0500F1 +:1041DC00200005F092FC280070BD10256D42FAE716 +:1041EC000000FF01F0B5036987B001931B7905004E +:1041FC004768002B00D06AE0386800280ED083682E +:10420C00019A1B6811689847041E07D02200314997 +:10421C00314805F067FC200007B0F0BD2E69012283 +:10422C005242D3171036300005F063FC18212800D9 +:10423C0005AAFFF783FE041E0ED0300005F05DFCCE +:10424C0025482200254905F04DFC38680028E2D0AD +:10425C0083685B689847DEE70123059A18219A4327 +:10426C0028000592FFF780FE041EE6D106F071FAD5 +:10427C00029003912800182105AAFFF75FFE041E87 +:10428C00DBD10122059B134208D1300005F035FC2F +:10429C00002CD5D10123019A1371BCE706F059FA11 +:1042AC00029A039B801A994100290DDC03D1FA2351 +:1042BC009B00984208D81821280005AAFFF73EFE5B +:1042CC000028DED00400E0E70B246442DDE778240C +:1042DC006442A0E7FCBF000858AD000826C00008E7 +:1042EC00F0B506000D00076985B0072907D92A002B +:1042FC002A492B4805F0F6FB8624644242E03B79C0 +:10430C00002B48D13B0010330193019801225242FB +:10431C00D31705F0EEFB1821300002AAFFF70EFEB2 +:10432C00041E2CD11021300003AAFFF707FE041E37 +:10433C0025D18022029BE90727D51A43102302922C +:10434C00039A13430393029B20211A008A43A80764 +:10435C0001D50A001A436B071AD5C0239B001A43D8 +:10436C00182130000292FFF7FFFD041E07D1102127 +:10437C003000039AFFF7F8FD041E00D13D60019850 +:10438C0005F0BBFB200005B0F0BD93430293DAE7C8 +:10439C00044B1A40E4E71024AFE7C04649C00008BC +:1043AC0058AD0008FFFCFFFFF7B5502101AA04002F +:1043BC004768FFF7C3FD002835D199260125019BDD +:1043CC001A00324033422ED050212000FFF7CCFD92 +:1043DC00002828D1019B2B4205D0A823A422200021 +:1043EC00F98EFFF7D7FD019BDB0605D5B823B42268 +:1043FC002000398FFFF7CEFD019B1B0704D5290048 +:10440C00094A0A4805F06AFB019B1B0604D52900E2 +:10441C00074A064805F062FB5021200001AAFFF76D +:10442C008DFD0028CBD0F7BD62C0000858AD000848 +:10443C0078C00008F0B5040003698BB002935021DA +:10444C00200006AAFFF77AFD002805D106995F4BDC +:10445C000A001A40194201D10BB0F0BD50212000C6 +:10446C00FFF782FD0028F7D1E022069B920413424D +:10447C0037D026692000B36807AA0093F36803932A +:10448C006368DF6904ABDD1D290005F0DCFB002847 +:10449C0027D12B780193009B002B05D02000039B88 +:1044AC00079A0199009DA847019B032B19D1012262 +:1044BC00D42120005242FFF757FD051E11D13B7B42 +:1044CC009D4254D31821200008AAFFF737FD00287D +:1044DC0007D10123089A18219A4320000892FFF76C +:1044EC0043FD8022069B5201134222D06768FB6970 +:1044FC00009323690193F421200007AAFFF71EFD06 +:10450C00002816D13F23079D1D4212D01F232D0AD0 +:10451C00B98F1D40EB00C91808AE320008232000EB +:10452C0089B205F0C9FA021E36D02949294805F08E +:10453C00D9FA069B1B0408D50121274A254805F00A +:10454C00CDFA0298243003F065FA069B9B0004D543 +:10455C000121224A1F4805F0C1FA069B9B0300D497 +:10456C006DE701211E4A1B4805F0B8FA67E73A6867 +:10457C00E90052181368002B0CD0002010603A6828 +:10458C00200052187221526849429847300024305A +:10459C0003F040FA013592E72A00F8212000F67961 +:1045AC00FFF7E2FC051EC4D1009BF6001B689B19AB +:1045BC005A681E68039218600198243003F02AFA96 +:1045CC0029002000039AB04795E7C0460090823B33 +:1045DC008EC0000858AD0008B4C00008C9C000085F +:1045EC00E4C00008F0B58FB00993436807920693B6 +:1045FC00039004910C79DF690669784A231C0F2C0F +:10460C0000D90F23DBB2D35C002108220CA8059340 +:10461C0006F0FFF801214025049BAC465A7953085B +:10462C000B40900128405B01034308A8C37480230E +:10463C00D008313D084025405B4200012B43034329 +:10464C0090080840400103436046834308A88375E3 +:10465C000F2A06D96249634805F044FA862464425D +:10466C00B3E033685B0707D40C231A4204D05E4ACC +:10467C005C4805F033FAF1E7059B402B09D9402340 +:10468C0001210093594A5748059B05F049F8162417 +:10469C00E5E7520707D50F2C08D955492200514898 +:1046AC0005F020FAF3E75349082CF7D83379002B9F +:1046BC0000D18DE0442103980BAAFFF73FFC041EA8 +:1046CC0000D082E00B9B1B0600D583E03300243323 +:1046DC000893079A099B089803F0CEF9041E00D0A2 +:1046EC007AE0343601225242D3173000079605F097 +:1046FC0000FA3B7BA34241DC0126764204990CAACA +:10470C00D671049B49791B68C9073FD50C9ADB000D +:10471C00520FDB08520713430C9348257543069B35 +:10472C00ADB2D98F0398691889B208230CAA05F089 +:10473C00C9F93149041E16D1049B5B799B072DD412 +:10474C00059B002B2AD0032206990333C98F934370 +:10475C000831049A69180398083289B205F0B2F945 +:10476C00041E1BD0254922001E4805F0BBF90798F2 +:10477C0005F0C3F9089803F04DF926E03A68E1001A +:10478C008A582600002AB9D00134B3E751881C4856 +:10479C005B05DB0C01400B435380BEE73B68149A6E +:1047AC00F5005A513B68159A5B195A600122D021C9 +:1047BC00B2400398FFF7D8FB041E03D000223B68DD +:1047CC005A51D4E7079805F098F920000FB0F0BDC6 +:1047DC00732444E7722442E70B2440E724C4000806 +:1047EC00FFC0000858AD000822C100084DC10008E8 +:1047FC007DC100089FC10008C1C10008EBC10008C1 +:10480C0003E0FFFFF0B587B0039242680291D769CD +:10481C0001921A682A4912040A40802100245B681C +:10482C0006695B0509065B0D0B431A4310360592AE +:10483C00050001225242D3173000009605F059F9B9 +:10484C007B7BA3420ADC1C2502211E4A1E4805F074 +:10485C0045F9009805F051F96D422DE07A68E600B3 +:10486C00B258002A0DD00134EBE7009805F045F959 +:10487C007B68029A25009A517B68039A9B195A60AF +:10488C001AE00123382004AAD17923400133814353 +:10489C00DB000B43D371019AA300518E2800C91879 +:1048AC0089B2042305AA05F00DF9051EDDD02A00F6 +:1048BC000649054805F016F9280007B0F0BDC046BA +:1048CC000000FF073FC2000858AD000813C20008E3 +:1048DC00F0B51D00436887B00291039201932A7AC8 +:1048EC000400DE69012A06D93A493B4805F0FAF87A +:1048FC00862464426AE0002A43D004AB076905228F +:10490C000021D81C05F085FF2A68049BD2005B0FA0 +:10491C00D2085B0713430493802380216A68002527 +:10492C00D200D2081B061343059A89050A4013438B +:10493C0010370593380001225242D317009705F027 +:10494C00D8F8B37B9D4209DB0221244A224805F0AA +:10495C00C5F8009805F0D1F81C24CAE7B268EF003E +:10496C00BA58002A14D00135ECE7009805F0C5F8C8 +:10497C00B368029A2C00DA51B368039ADB195A60B7 +:10498C0022E02B00039A0299FFF73CFF04001DE084 +:10499C0001231F2104AAD2782B4001330A405B016A +:1049AC00134304AAD370019B2000998E0823C919C4 +:1049BC0089B205F087F8041ED7D0220008490648B2 +:1049CC0005F090F8002C01DB737BE418200007B095 +:1049DC00F0BDC0465FC2000858AD000883C2000895 +:1049EC0013C20008F7B5436805000C1EDE690769A1 +:1049FC00019305DA22002049204805F073F8F7BD31 +:104A0C00103701225242D317380005F072F8727B2E +:104A1C0094421ADBB37B1849A21A934228DD002179 +:104A2C00B368D2009950B36828009B185960019B59 +:104A3C00998E891889B2082205F04AF81049021E8D +:104A4C0016D1380005F059F8D9E700227368E10057 +:104A5C005A507368A4005B185A60019B0432598E3B +:104A6C002800091989B205F033F8021EE9D005496E +:104A7C00024805F037F8E4E7A3C2000858AD000877 +:104A8C00BEC20008EAC20008F8B50469456823797B +:104A9C000600EF69002B46D0FA220023920005F0A5 +:104AAC0030F8002807D00121204A214805F016F8DB +:104ABC0005256D420CE0286800280BD083685B68E4 +:104ACC009847051E06D02A001A49194805F00AF81D +:104ADC002800F8BD0025300005F0F6F825713B7B69 +:104AEC009D420BD3103401225242D317200005F003 +:104AFC0000F8200005F001F80025E9E73A68E90024 +:104B0C0052181368002B0CD0002010603A6830004B +:104B1C00521873215268494298472000243002F001 +:104B2C0079FF0135DBE77825C3E7C04616C30008DB +:104B3C0058AD000830C30008F0B589B04568066967 +:104B4C0004000A22002102A8EF6905F062FE0A2285 +:104B5C00002105A805F05DFE3000103005F0BBFC0F +:104B6C003000343005F0B7FC397B30000A002430BB +:104B7C0005F0B8FC286800280AD005F089FC00284C +:104B8C0006D101214F4A504804F0A8FF132013E02E +:104B9C002000FFF7ABFA4D4A002808D1FA22002377 +:104BAC002000920004F0ADFF002808D0484A464887 +:104BBC00012104F093FF0520404209B0F0BD200014 +:104BCC0005F082F81821200001AAFFF7B7F9002898 +:104BDC00F3D1019A3F4B18211A4020000192FFF7A4 +:104BEC00C3F90028E9D11021200001AAFFF7A6F98A +:104BFC000028E2D11021019A20008A430192FFF78C +:104C0C00B3F90028D9D18021200001AAFFF796F929 +:104C1C000028D2D12B22019B80211A432000019223 +:104C2C00FFF7A2F90028C8D1EA682B8A200002A954 +:104C3C00FFF75CF9284A1630B9D06A696B8A2000F4 +:104C4C0005A9FFF767F9254A1630B0D0200002A954 +:104C5C0004F009FF021E04D021491B4804F042FF56 +:104C6C0094E705A9200004F010FF1E49021EF4D1A0 +:104C7C001D4A542120000192FFF776F900289CD19F +:104C8C009922582120000192FFF76EF9002800D0DC +:104C9C0093E703225C2120000192FFF765F90028BD +:104CAC0000D08AE70122E021524220000192FFF756 +:104CBC005BF9002800D080E701002A6C200004F08A +:104CCC0007FF7AE775C3000858AD00085BC30008FE +:104CDC0016C300085BFCFFFF8FC30008B1C30008BC +:104CEC00DDC30008FBC3000899908203D02843D091 +:104CFC002BD8A82842D011D884281CD00300883B7C +:104D0C009BB21C2B20D801229A4026490A4212D170 +:104D1C00082B35D01C2B17D1902015E0B82831D09A +:104D2C000BD8B42830D00FD803000422AC3B9343EB +:104D3C009BB2002B08D11C4806E0CC2826D003D807 +:104D4C00BC28F8D0C828F6D07047E02820D007D867 +:104D5C00D8281FD0DC281FD0D428F5D1D020F3E7D9 +:104D6C00F4281BD004D8E4281AD0F028E3D0EBE7C1 +:104D7C00F828E9D1E820E7E7CC20E5E79420E3E741 +:104D8C008420E1E79C20DFE79820DDE7C820DBE703 +:104D9C00DC20D9E7D420D7E7D820D5E7E420D3E727 +:104DAC00E020D1E701001101FFFF000070B543685E +:104DBC0008005E6C0D001400FFF798FF1D4B984225 +:104DCC0034D03368C0180368582D1FD019D804226A +:104DDC009543502D17D1FF22F820990192051140CF +:104DEC00C002DA00024011430122FE201A40114396 +:104DFC0040019A00024011431C225B0013400B43FC +:104E0C0001E0802D0FD02360002070BD02211A001C +:104E1C000A400B4200D0D022DB0701D42260F3E71A +:104E2C000D231343EFE73F221340ECE7862040426B +:104E3C00EBE7C046FFFF000070B5436808005D6CEF +:104E4C000E001400FFF752FF1C4B984232D0582E24 +:104E5C0021D019D804239E43502E17D1FF22F821BC +:104E6C00A309120413400902E2080A401343012269 +:104E7C00FE2122401343C900A2080A4013430E220C +:104E8C00640814401C4301E0802E0FD02B68C0181E +:104E9C000460002070BDD02323405A1E93410D2284 +:104EAC0022405C000123002AECD1EFE73F23234092 +:104EBC00034CE7E786204042ECE7C046FFFF0000CA +:104ECC0000001C08F0B5436885B05B6C0500002140 +:104EDC00586903AA009305F095F8041E07DB039BA1 +:104EEC0000221979186800F053FB041E08DA344AC2 +:104EFC0023000121334804F00BFC200005B0F0BD69 +:104F0C006B685E6C304F380005F0C2FA002851D047 +:104F1C00BB68F1680193B368012B13D9019B08316D +:104F2C009B69002B0BD0002238009847041E09DA2D +:104F3C000121264A234804F0E4FB254AD8E75824EB +:104F4C006442F5E7019BF1681B68002B35D03800F3 +:104F5C009847041EF1DB337E002B06D0280004F0AA +:104F6C00B3FE337E1B4A5B081360280004F0ACFED2 +:104F7C008021280003AAFEF7E1FF041EBDD1039B8C +:104F8C00154A80211A4328000392FEF7EDFF041EF8 +:104F9C00B3D18022C02128005204FEF7E5FF041E85 +:104FAC00ABD12800FFF7C8FD041EA6D1009B1B69DE +:104FBC009847A2E713246442BFE75824FBE7C04696 +:104FCC003DC4000860AD000830AA00085BC40008AE +:104FDC0085C400080065004000001C0873B54368D8 +:104FEC000C005E6C1A4D280005F052FA00282CD0EB +:104FFC00AB68B268F168DB68012A17D90831002B5D +:10500C0007D1144A1448012104F07BFB05204042CF +:10501C000BE0280001AA98470028F2DB0F4B0198FF +:10502C001A68002A0CD12060002076BD002B01D11B +:10503C000B4AE7E7280001AA98470028EEDAF7E7C1 +:10504C0019684900FBF748F8EDE71320DFE7C04685 +:10505C0030AA0008A6C4000860AD00080065004036 +:10506C00D2C40008024B18684005C00F7047C046F8 +:10507C00001002400B8813B50C481B051A0D1B18A9 +:10508C001B0D0C2B0ED80A4C486813191A680243D6 +:10509C0000201A600B881B051B0D1B191B68019344 +:1050AC00019B16BD86204042FBE7C0460000C0FCB9 +:1050BC00001002400B8809481B051A0D1B181B0D0C +:1050CC000C2B07D80020064B4968D3181A688A4362 +:1050DC001A60704786204042FBE7C0460000C0FCC7 +:1050EC000010024070B508881F4B00050D0014001D +:1050FC001B68000D0C2818D8002801D1863870BD0B +:10510C0002380A2809D8FAF7DDFF260622242626BB +:10511C0008081D1D1D00FA23DB018022236029686D +:10512C005201914219D20020E9E7104A801800057B +:10513C00000D0C2803D80E4AC240D207EDD48620AD +:10514C004042DCE700F02AF9C3005B08E5E7094BB5 +:10515C00E3E7094BE1E70023DFE7090B1800013116 +:10516C00FAF7BAFF2060DEE730000020CC0F000019 +:10517C00111100000024F400006CDC020C2806D88D +:10518C00044BC3400020DB0700D4863870478620D0 +:10519C004042FBE73A1F000070B508880C00000580 +:1051AC00000DFFF7EBFF00281EDB6368FF2B1AD006 +:1051BC0001225802800F013082401F2099B21B0C33 +:1051CC000340013A9A40094E89190D6895430D60C8 +:1051DC00636899B21A0E1B0C03409A40130089198C +:1051EC000C6823430B60002070BDC04600100240C9 +:1051FC000B880A4A1B05180D9B1810B51B0D0C2BA0 +:10520C0008D8074BC0180368486898434342584174 +:10521C00013010BDFFF7B2FFF8E7C0460000C0FC3C +:10522C0000100240F7B5524F00F0D0F8380004F0EF +:10523C00A7FD00F049FE1F214E4C4F4AA3683D00CC +:10524C001B051B0F9B009B580B40D840136801900B +:10525C000B401D41A84202D2280002F069F9FFF769 +:10526C0001FF012808D0802322685B0013432360D0 +:10527C00FFF7F8FE0128FBD12368404A1340236056 +:10528C000123226E134323660223226E1A42FCD0A2 +:10529C0080232268DB031343236080231B042268D2 +:1052AC001A42FCD03822A3681340102B18D1FFF7F8 +:1052BC00D9FE012808D0802322685B0013432360A9 +:1052CC00FFF7D0FE0128FBD10722A3689343A3600C +:1052DC003823A2681A42FCD1A368294A1340A36060 +:1052EC002368284A134080222360920423681342C7 +:1052FC00FCD1254B2549186880260840802189025D +:10530C00014319608021186849020143196019682A +:10531C001F48760401400A431A601A6832431A6027 +:10532C0000F040F823681E43802326609B0422680B +:10533C001A42FCD0A368124A1340A3600723A26848 +:10534C009A43053B13433822A360A3681340102BE8 +:10535C00FBD1019BAB4202D3280002F0E9F80D4BC4 +:10536C000D4A1F60A36800201340A360FEBDC04619 +:10537C000090D00300100240C4B00008FFC7FFFF2C +:10538C00FFF0FFFFFFFFFFFE0C100240FFFFC1FF0D +:10539C00FFFFFFF130000020FF8FFFFF0048704738 +:1053AC000024F400064B074AD9681140064A0A4308 +:1053BC00DA608022D96852050A43DA607047C04629 +:1053CC00001002408C80FF1F0208002080210F4B30 +:1053DC004905DA6B82B00A43DA63DA6B0A40802142 +:1053EC000192019ADA6B49020A43DA634022DB6BC1 +:1053FC000B400093009B064B19680A431A6020224D +:10540C0019680A431A6002B07047C0460010024087 +:10541C00006C004010B5084805F03AF8002808D098 +:10542C00064C2000FDF7D6FE2000FBF7C5FE002041 +:10543C0010BD13204042FBE750AB00084D54000850 +:10544C0070B50400074D0A2804D1AB680D21280063 +:10545C005B689847AB6828005B68E1B2984720000E +:10546C0070BDC04650AB0008F7B547681E00036915 +:10547C00B868009201930C0004F05BFA8023009A48 +:10548C0005009B039A4215D12000BD68FDF792FFE1 +:10549C0085420DD12100280004F04BFA0400FDF7E1 +:1054AC0013FF2000FDF75CFF00212000FDF714FF27 +:1054BC000020FEBD8023009ADB039A4224D0802377 +:1054CC00DB049E421CD0C023DB049E421AD08023F6 +:1054DC0016209B049E4218D1022628000D49019AE1 +:1054EC00FDF71EFF002812D12000B968FDF74AFF16 +:1054FC0028003100FDF7F0FE2800FDF7CDFED7E7C0 +:10550C000126EAE70326E8E786204042D1E710208F +:10551C00FBE7C046B59F000870B5036904005860EE +:10552C000B4D280004F0B4FF00280FD0AB68616865 +:10553C001B680C31002B04D028009847002803DC92 +:10554C0070BD58204042FBE70020F9E71320F9E733 +:10555C0030AA00081FB50B4B0C001B681BBA01933B +:10556C00094B1B681BBA0293084B1B681BBA0393AD +:10557C000C2900D90C24220001A905F041F92000C6 +:10558C0004B010BD9875FF1F9475FF1F9075FF1F19 +:10559C00F7B504000025C90043180193019B9C42F8 +:1055AC0001D1002035E01F271023226817401A4232 +:1055BC0017D1202563681D43F821530949000B407E +:1055CC00E2395209FF390A401A4300921B09192B80 +:1055DC0020D8114A9B009E58002E0AD1132040421D +:1055EC0017E0102F03D0112FE6D16568E4E73025C2 +:1055FC00E2E7300004F04CFF0028EFD00F230099B5 +:10560C002A00194030003B0004F0E7FC0834002865 +:10561C00C4DAFEBD1620E2E70CB0000870B50369D1 +:10562C00C0225B680C001B68D2000B6080214368B1 +:10563C0005001B68C9001B68134002228B4204D072 +:10564C001C4A9B185A425341DAB2C0218020227165 +:10565C006B6889011B6800225B6840010B40834228 +:10566C0006D002328B4203D0013A002B00D002321A +:10567C0062716B681B6818681968C023DB001940DD +:10568C000D4B184004F008FDC022A0716B6892000D +:10569C001B689B681340094A9B185A425341DBB262 +:1056AC00E3716A6812689268520400D503230020E3 +:1056BC00E37170BD00FAFFFF0010001000FDFFFF4A +:1056CC00F0B5436885B000AF05001E6802697960CB +:1056DC00002939D01068D9688368DB68002B0DD09D +:1056EC000C22BA189847041E0BDA01211A4A1B48DF +:1056FC0004F007F82000BD4605B0F0BD5824644204 +:10570C00F3E73368164A7968134033607B685808AE +:10571C00FB68C018FAF7E0FC0F2818D86C468AB062 +:10572C002B686A4693617B680E49D36180239B008A +:10573C0013840D4B516113619121002307481032E2 +:10574C008901FCF759F8A54616246442D2E780B2C9 +:10575C000024F060CEE7C04689C50008D0AD000833 +:10576C00FF7FFFFFB7C5000804000001F7B50C0070 +:10577C00036941685D682379012B13D09A1E564248 +:10578C007241920200926679022E0ED8494F760031 +:10579C00F75BA679022E0BD0042E34D05E1EB341DB +:1057AC001B0308E0C022D200ECE78027BF01F0E722 +:1057BC005E4273411B07E67901960026B446019EB2 +:1057CC00012E02D1C026B600B4460968A5421DD1EF +:1057DC000C68394E009A3440224313430B604B68DB +:1057EC00364A13403B434B60436835491A6893680B +:1057FC000B4061460B4393602968FFF761FF00285B +:10580C0000DD0020FEBD80235B01D4E7C0220E68C2 +:10581C00D2001640009AB24205D00E68294A1640B2 +:10582C00009A16430E60C0264268B60111684A6899 +:10583C003240974204D04A68204E32403A434A6084 +:10584C004268214E11680A683240934204D00A68BB +:10585C001E4E324013430B60C021436889001A6806 +:10586C0093680B409C4505D0936815490B406146E5 +:10587C000B43936080224368D2011B6899681142E4 +:10588C0006D0019A032A09D09A6811490A4004E00B +:10589C000199032902D199680A439A6021682B68FF +:1058AC009942AED0FFF70CFF0028ABDB23682B60CE +:1058BC00A7E7C0463CB10008FFE9FFEFFFCFFFFFB1 +:1058CC00FFFCFFFFFFF9FFFF00100010FFEFFFEFE1 +:1058DC00FFBFFFFFF0B5060045680469744885B04A +:1058EC0000AF206004F0D4FD002806D1714A0121DC +:1058FC00714803F006FF13240BE02068E968836805 +:10590C001B68002B07D101216C4A6B4803F0F9FE90 +:10591C00582464420AE09847041E0BD10C23002142 +:10592C00286AFA1804F06EFB041E0BDA2000BD4640 +:10593C0005B0F0BD0121614A5F4803F0E2FE002C86 +:10594C00F4DBEBE7FB68002219791868FFF720FEFF +:10595C00041EEBDB0122756833692C685B687B6085 +:10596C00236893432360686804F092FD002801D1FA +:10597C00534ABCE76868A9688368DB68002B00D0D1 +:10598C009847EFF31082012383F310880C212368CE +:10599C000B43236082F3108830007968FFF7E6FE32 +:1059AC00002801DA1624B4E72B7D002B03D0082342 +:1059BC00A2681343A3606B7D002B04D08022636824 +:1059CC00120213436360AB7D002B04D0802263680A +:1059DC00520213436360EB7D002B04D0802263687A +:1059EC009202134363602B7E002B49D0354B9C42B3 +:1059FC0029D0354B9C4226D0344B9C4223D0344B7F +:105A0C009C4220D0334B9C421DD0334B9C421AD02D +:105A1C00324B9C4217D0324B9C4214D06C4688B00F +:105A2C006A463368936180239B002E4993832E4BE7 +:105A3C0051611361E22100231F4810324901FBF729 +:105A4C00DBFEA546AEE773681A6880239168DB011C +:105A5C000B43936022686B7E24495B050A40134319 +:105A6C0023602268AB7E22491B040A401343236047 +:105A7C00EB7E002B04D08022A36812021343A36098 +:105A8C002B7F002B04D0802322689B0513432360BB +:105A9C00012322681343236080239B03E2691A428B +:105AAC00FCD08023DB03E2691A42FCD000243DE7E2 +:105ABC0030AA00081ABC0008D0AD0008CEC50008FA +:105ACC00EEC500080038014000440040004800408A +:105ADC00004C004000500040003C01400080004061 +:105AEC000084004009C6000803000001FFFF1FFCF2 +:105AFC00FFFFE0FFF7B5436800901C6803690D00D9 +:105B0C005B6801934B790A799C468879012A16D1F6 +:105B1C00022B2ED9C02180230600C9009B0102282C +:105B2C0000D188E0042836D00020824237D0802073 +:105B3C00033A4001012A32D886204042FEBD022A97 +:105B4C0009D1022B23D980210600C900022860D07C +:105B5C0080239B01E6E7022B1BD9060000210228BB +:105B6C00F6D10021002A54D18020110040050322D7 +:105B7C001AE0C021C9006646344B7600F35A060081 +:105B8C000228CFD1002A56D18020400507E0802181 +:105B9C00F0E70021EFE7002ACED1802040018027DA +:105BAC0000227F01BB423CD16245C5D104F074FA9E +:105BBC00B042C1D1EB79002B19D0012B42D1244B2F +:105BCC009C4214D0234B9C4211D0234B9C420ED0B0 +:105BDC00224B9C420BD0224B9C4208D0214B9C4226 +:105BEC0005D0214B9C4202D0204B9C42A4D10126D3 +:105BFC0023682900B34300982360FFF7B7FD002802 +:105C0C009ADB236800201E43019B266006CD06C349 +:105C1C0094E7033A012A00D88EE78023002002265D +:105C2C009B01C0270222BF01BB42BDD0013A002B11 +:105C3C00BAD00232B8E7033A012A00D87CE7022630 +:105C4C000020ACE7032BBAD076E7C0463CB1000885 +:105C5C00003801400044004000480040004C004027 +:105C6C0000500040003C0140008000400084004097 +:105C7C0070B580251049114B8C681B680E68104854 +:105C8C008A686D02002C08D1002A11D11A002E420C +:105C9C0009D100681818801A70BD002A0AD02E424B +:105CAC0001D1A242F5D90468E41804600968F0E750 +:105CBC001C00F4E71A00F2E710E000E0DC1300200F +:105CCC00D81300200A4A0020136A1B021B0A136215 +:105CDC00C822084B52011A60074B084A1860084B3F +:105CEC005A600722986019680A431A607047C046C8 +:105CFC0000ED00E0DC130020D8130020FF1800009A +:105D0C0010E000E0F8B50024FFF7B2FF104E2300BE +:105D1C003168104D0A00286869688018594128605C +:105D2C006960C8210C4D346049012E686F68801B76 +:105D3C00FAF7D2F9C8214901414323000A0092190C +:105D4C007B412A606B6002F041FDFDF72BF8F8BD3A +:105D5C00D81300200806002000060020F0B53B4BAD +:105D6C003B4D87B0002960D0421C08D101212A6824 +:105D7C008A432A60FF2212061A6007B0F0BD1B6826 +:105D8C00039300230293012854DCEFF31083059353 +:105D9C0072B6FFF76DFF00221100AB6804932D4B18 +:105DAC001E685F6836184F41300039001860596022 +:105DBC00294B009601971A60284B1C68009B1B1BF3 +:105DCC0093423EDBC82702987F017843244A39006E +:105DDC008018C018FAF780F9009B7843E41A8023E6 +:105DEC002018DB00984200D218001E4B984200D9B4 +:105DFC001800164B174918600138AB686860002012 +:105E0C00A860049AD41A9A421ED2039D6219030008 +:105E1C000C684D6812196B410A604B60059B002B96 +:105E2C00ABD162B6BFF36F8FA7E71B680393431C1C +:105E3C00A7D10D480D4B984200DD1800431E02936C +:105E4C00A3E78020C000D4E72200E0E7DC130020A9 +:105E5C0010E000E008060020D81300200006002007 +:105E6C00FF18000000DCFF003C0A00003D0A0000A7 +:105E7C0070B5EFF3108572B6084A094B14681B68AD +:105E8C00E41AFFF7F5FE0019002D02D162B6BFF33C +:105E9C006F8FC8214901FAF71FF970BD0806002061 +:105EAC000006002070B5EFF3108572B6054B1C6828 +:105EBC00FFF7DEFE2018002D02D162B6BFF36F8F04 +:105ECC0070BDC04608060020382370B51D4CA26872 +:105EDC001A4205D123681C489B045B0FD84070BD47 +:105EEC00A2681A40082A27D0A2681A40102A17D193 +:105EFC00E368E168DB43E5684906490F6F322D0A18 +:105F0C00013115409B0709D11048FAF7E5F8E16813 +:105F1C006843490F0131FAF7DFF8E0E70A48F4E784 +:105F2C00A2681A40202A09D0A26800201340182B1E +:105F3C00D5D1FA20C001D2E70448D0E78020000276 +:105F4C00CDE7C046001002400024F40000127A0095 +:105F5C000A2382B00193019B002B07D1054BC00093 +:105F6C00C01800688001800D02B07047019B013B96 +:105F7C00F0E7C046009800400A2382B00193019BD1 +:105F8C00002B07D1054BC000C01840688001800D64 +:105F9C0002B07047019B013BF0E7C04600980040FF +:105FAC0073B504000120002C2FD0244D635DDAB2B0 +:105FBC00002B05D1A5239B002000E25404F0DDF852 +:105FCC0003236355206800F02FFD002322001900E5 +:105FDC00012620791432984218D1002122000800A1 +:105FEC005532FF328B421BD16B46227C1A70E36810 +:105FFC006168A268206804F00EFA00236374013310 +:10600C006355237B012B15D0002076BD1370013313 +:10601C005670D170116151619161DBB22832DAE7AF +:10602C00117001315070D070106150619061C9B223 +:10603C002832D7E7200004F0DAF9E5E795020000F2 +:10604C00F0B5040087B0006804F007FACA4B1A6870 +:10605C0004231A420ED0802580222D021202054004 +:10606C00104201D100F032FC8022256812026B6CC8 +:10607C00134201D107B0F0BD0F270F226B6C1F40EC +:10608C00134200D0A4E0190001321140134221D177 +:10609C002B68BA4A200013408022120213432B6053 +:1060AC00237DB74ADB009B181B68A26A9B019B0DE2 +:1060BC002363D318A36203F097FC637C002BD3D02B +:1060CC00E26A2168002ACFD18020637C0343CB6431 +:1060DC006274C9E72B6880221E001201164013421D +:1060EC001BD0AA235B00E05CFFF746FF2200A72130 +:1060FC005532FF3289000300D06161182800D28824 +:10610C0001F0E8F921689F4B0A6820001A408023AF +:10611C0013430B60FDF778FDA6E71B04A4D52A6892 +:10612C00984B1A40802313432B60AA2325005B0055 +:10613C00E05C2768FFF720FF5535FF35031EE8614B +:10614C000ED0696900290BD03800EA8801F0C2F939 +:10615C006B69EA6931009B1820006B6103F02FFC1E +:10616C0023681B681A0500D57EE7C02292011340F4 +:10617C00934200D178E7824A53689B019B09536094 +:10618C002B693E2B17D91F20590903405842434114 +:10619C00C91A53688906194380231B060B435360A5 +:1061AC002168794A0B681340C02292015A40774B00 +:1061BC0013430B6058E7002B01D15168ECE7012029 +:1061CC0059080340C9185368890619435160E7E719 +:1061DC00BB00ED1801932B6803936B469B890293CC +:1061EC00039B1B043ED52A68664B1A40802313433D +:1061FC002B6028257D4365192B006133FF331A78FA +:10620C00236804932B005533FF33002A69D1187887 +:10621C00FFF7B2FE0190002809D02B005B33FF334F +:10622C00FC351A88E96E0300049801F053F9282311 +:10623C00190079436218FC32506F019D4019506768 +:10624C00D06E4019D066106F002803D0926E954224 +:10625C0000D3FDE07B43E3185533FF33200019785E +:10626C0003F0ADFB039B22681B0600D4FCE6BB00CD +:10627C00D218136841490B40802109020B4313606B +:10628C002823190079436618F27D012A00D018E101 +:10629C007A1C53430022E3185A60731CDB7F934231 +:1062AC0017D0039B5B0600D4E8E0737D934200D0CB +:1062BC00D5E0337D3249DB005B181A6892019209F4 +:1062CC001A608022337D1206DB005B1819680A43C2 +:1062DC001A6028237B43E318197D200003F084FB0C +:1062EC00C2E62A005832FF3212781E78022A00D0F9 +:1062FC0086E08023029ADB011A400592029A300054 +:10630C00FC351A4248D0FFF723FE2A6F0300019098 +:10631C00824222D3121A2A6721D0029A52060ED533 +:10632C0028227A43A2185532FF321178226889004C +:10633C005218106816490840164901431160002B89 +:10634C0000D174E72821794361180A005D32FF32CD +:10635C00FC311288C96E206867E700222A67049A0C +:10636C00B6009619326808490A40802189015140CB +:10637C00064A0A433260D0E7A00001400F8FFF07A6 +:10638C00009800408F0FFF078FBFFF078080000031 +:10639C008F8FFF07C0800000FFF7EEFD2A6F030010 +:1063AC00019082421DD3121A2A671CD0029A5206FF +:1063BC000ED428227A43A2185532FF321178226863 +:1063CC00890052181068C6490840C649014311603B +:1063DC00002B00D12BE72821794361180A005F328A +:1063EC00B5E7059A2A67049AB60096193268BE4931 +:1063FC000A40802189015140BC4A0A433260D5E7EA +:10640C00049AB60096193168B54A1140B54A0A4348 +:10641C003260187826688300F3181B685B040ED56D +:10642C00FFF796FD0190002800D100E72B005D33AB +:10643C00FF33FC351A88E96E03003000F5E6FFF7F0 +:10644C009BFD0190002800D1F1E62B005F33EFE7B4 +:10645C005531FF312068611800F078FD02E7012BFF +:10646C0000D036E7337DA249DB005B181A6892B284 +:10647C001A60337DDB005B181A6829E7737D002BEB +:10648C0010D1337D9A49DB005B185A68920192094E +:10649C005A608022337D1206DB005B1859680A4370 +:1064AC005A6016E7012B00D013E7337D9049DB00CF +:1064BC005B185A6892B25A60337DDB005B185A68DD +:1064CC00EEE780230398039A5B00357D18401A424F +:1064DC0019D1874AEB009B181B68F26A9B019B0D34 +:1064EC009A4202D82900F062F7E6D21AF262B26A36 +:1064FC001431D218B262326B6118D318336320682E +:10650C0000F024FDB0E52368029A039340231A405F +:10651C000192029A28001A4200D1EDE0FFF718FD13 +:10652C008022F36AD201834214D80023F362029BC7 +:10653C0013400193737D002B52D0012B5FD16C4A19 +:10654C00ED00AD182B689BB22B60337DDB009B18E4 +:10655C001A6853E01B1AF362029B134200D087E0C7 +:10656C0028227A43A218150038352B78012B00D03D +:10657C0006E1936A1B189362336B1B183363516BE0 +:10658C00536A99427ED3C91A516328227A43A218BE +:10659C00517D002900D092E0117D554EC90089191A +:1065AC0008688001800908603E2B75D91F201840AF +:1065BC00454268415909091A107D8A068021C0009C +:1065CC008019056809062A430A4302602821794389 +:1065DC0061188A8B9BB2896A206800F083FCCFE03B +:1065EC00434AED00AD182B689B019B092B60337D52 +:1065FC00DB009B188022196812060A431A602822B5 +:10660C007A43A218517D137D002924D13848DB0030 +:10661C001B185968890189095960137D8022DB0098 +:10662C001B18596812060A435A6028257D436519C0 +:10663C002000297D03F0D8F9019B002B00D19FE0AD +:10664C002A7D236892009B181968254A1140294A13 +:10665C000A431A6094E00129E7D12548DB001B1896 +:10666C00596889B25960137DDB001B185A68DBE747 +:10667C00039BAD005D192A68194B1A401D4B13433F +:10668C002B606DE7002902D1030029707DE7002300 +:10669C002B7053630B0078E7117D154AC9008918DC +:1066AC00002B05D180220868120602430A608DE790 +:1066BC0001205A081840121892060868F5E70129BB +:1066CC0084D1117D0A4DC9004919086880B208604F +:1066DC00127D1904D200521910680143116075E73C +:1066EC008F8FFF07C08000008FBFFF0780800000E6 +:1066FC000098004080C00000FFF73EFC8022F36A47 +:10670C00D20183424CD2019BF362029B1340019352 +:10671C0028237B43E3185A7D002A00D08DE0B14931 +:10672C00ED006D182A68920192092A6080221B7D67 +:10673C001206DB005B1819680A431A6028227A4398 +:10674C00A218517D137D002900D084E0A548DB0000 +:10675C001B185968890189095960137D8022DB0057 +:10676C001B18596812060A435A6028257D4365197F +:10677C002000297D03F038F9019B002B00D15FE745 +:10678C0028237B43E3181A7D236892009B181A6810 +:10679C0095490A4030215140944A0A431A6063E4F7 +:1067AC0002991B1A1140F3620191002BB0D0019B8E +:1067BC00002B08D1039BAD005D192A688C4B1A4045 +:1067CC008C4B13432B6028227A43A21815003835C2 +:1067DC002B78012BD4D1936A1B189362336B1B1843 +:1067EC003363516B536A994242D3C91A51632822BD +:1067FC007A43A218517D002957D1117D794EC900D9 +:10680C00891948688001800948603E2B3AD91F20BD +:10681C001840454268415909091A107D8A068021A1 +:10682C00C0008019456809062A430A4342602821A2 +:10683C0079436118CA8B9BB2CDE6012A00D07DE763 +:10684C006849ED006D182A6892B22A601B7DDB0046 +:10685C005B181A6871E7012987D16248DB001B18A5 +:10686C00596889B25960137DDB001B185A687BE7A5 +:10687C00002902D103002970B9E7002353632B7060 +:10688C000B00B4E7117D574AC9008918002B05D1BC +:10689C0080224868120602434A60C8E701205A0861 +:1068AC001840121892064868F5E70129BFD1117DEE +:1068BC004C4DC9004919486880B24860127D1904D2 +:1068CC00D2005219506801435160B0E742050DD512 +:1068DC0022684949536C20000B405364FDF752F970 +:1068EC002900200003F071FCFFF7C4FB420406D51D +:1068FC0022684249536C0B405364FFF7BBFB802268 +:10690C00010092011140104203D022683C49536CA3 +:10691C00F1E7C20418D52068026C9A43026408207F +:10692C002268136C83431364B3239B00E25C012A3B +:10693C0003D12000E15403F06DFD2000FDF756F962 +:10694C0022683049536CD6E7020512D5082221681B +:10695C00086C02430A6421682B484A6C02404A6462 +:10696C0021680A6C13430B642000FDF731F9FFF723 +:10697C0081FB020621D5216824484A6C02404A64F6 +:10698C00B3229200A15C0029EED12168086C03436C +:10699C000B6408232168086C03430B640121A15488 +:1069AC003C22236820005B6D9B081340B4229200AC +:1069BC00A35003F02FFDFFF75DFB830509D522687B +:1069CC001349536C20000B40536403F0FDFBFFF79D +:1069DC0051FBC00501D4FFF74DFB22680D49536CE8 +:1069EC0089E7C04600980040BF8FFF0780800000F9 +:1069FC008F8FFF0780C00000FFFB0000FFBF00006F +:106A0C00FFDF0000FFEF0000FFF700007FFF00003A +:106A1C00FFFD0000FFFE000003000020014A586447 +:106A2C001A64704780BF0000036C024A1340036471 +:106A3C00002070477F40FFFFF7B50D789F4AAD00EF +:106A4C0045192C6803001440CA780192032A04D813 +:106A5C001000F9F737FB054846430122019202E08A +:106A6C00802292001443964A14432C600F78954D63 +:106A7C00BE009E1934682C403C43144334600E7B9A +:106A8C000C78002E00D08DE08F4F4E78E400E41986 +:106A9C00002E30D02668360C360426600E78CC8852 +:106AAC00F600F6193768A408A4003C4334600C784F +:106ABC00A4001C192668760604D526682E40834D42 +:106ACC00354325600C78C978A400814D1B19012928 +:106ADC000BD020211C682C40614008E0C022D20061 +:106AEC0014430022BAE78022F9E7196829400A43C7 +:106AFC001A600198FEBD6668360C36046660724CEE +:106B0C000E782000F6003619CC887768A408A4000B +:106B1C003C4374600C78E40024186668B601B6092E +:106B2C0066600E690C783E2E24D91F20770906402A +:106B3C00300046424641BF1B634EE400A419BE061A +:106B4C00802760683F0606433E4366600C78A400CD +:106B5C001C192668760404D526682E405D4D3543F5 +:106B6C00256009785C4D002916D1C0211C682C4089 +:106B7C008901B1E75448E4002418002E03D1802683 +:106B8C0067683606E0E7012077080640BF1966689B +:106B9C00BF0637436760D9E789005B181C68802102 +:106BAC002C40E5E7CE78A4001C19022E55D127689D +:106BBC004A4E2F403E43444F266038000C78E40088 +:106BCC00E4192668360C360426600E780C89F6001B +:106BDC00F6193768A408A4003C4334600C78E40030 +:106BEC0024186668360C360466600E784C89F600FC +:106BFC0036187768A408A4003C43802774600C788E +:106C0C004878A400324EFF011C1900282AD12068B4 +:106C1C00384206D027682F40BC4660462D4F0743AC +:106C2C0027600C78A4001C1927687F0604D52768F8 +:106C3C002F40264D3D432560C0250C782648A400E6 +:106C4C001C192768AD0107407D4015432560097864 +:106C5C0089005B181968314049E72668204F3E408F +:106C6C001643A8E72068384206D027682F40BC4658 +:106C7C006046184F074327600C78A4001C1927683E +:106C8C007F0604D527682F40104D3D4325600C78B6 +:106C9C00CD78A4001C19012D0CD025682E40202580 +:106CAC0075401543256009780B4889005B181968F5 +:106CBC0001401CE725683540F3E7C0468F89FF0784 +:106CCC00808000008F8FFF0700980040C08000007C +:106CDC00BF8FFF0780C000008FBFFF0780810000BF +:106CEC008F8EFF07F0B50B780C7B9B004D78414ADB +:106CFC00C318002C22D11C68002D11D0640605D5B8 +:106D0C001D683D4C25403D4C2C431C600B789B0072 +:106D1C00C31819683A4801400A431A600020F0BDB4 +:106D2C00640405D51D68344C2540364C2C431C603E +:106D3C000B789B00C31819683348ECE780262E4C5F +:106D4C002F4FF601002D27D11D68354204D01E6847 +:106D5C002C4D264035431D600B78284D9B00C318E5 +:106D6C001E68760603D51E6826402E431E600B78DF +:106D7C009B00C3181E68344025431D600B78224DC0 +:106D8C009B00C3181C682C4014431C600B789B00A0 +:106D9C00C31819683940BFE71D68354204D01E6816 +:106DAC00184D26402E431E600B789B00C3181E689E +:106DBC00760606D51E682640B44665460F4E2E4311 +:106DCC001E600B780F4D9B00C3181E683440254382 +:106DDC001D600B789B00C3181C683C4014431C605E +:106DEC000B7809499B00C01803680B401A430260DA +:106DFC0094E7C046808000008F8FFF07C0800000A2 +:106E0C00BF8FFF0780C000008FBFFF070B780B4AB6 +:106E1C009B00C0184B780168002B07D0084B194019 +:106E2C0010234B401343036000207047054B19405F +:106E3C0080235B014B401A430260F5E78080000021 +:106E4C00BF8FFF078FBFFF0710B50B7B002B1CD12B +:106E5C000B784A789B00C318002A18D01A6852067F +:106E6C0005D51C68154A1440154A22431A60CB7884 +:106E7C00012B0AD00B7813499B00C3181A680A40DF +:106E8C0020215140104A0A431A60002010BD1A6894 +:106E9C00520405D51C68094A14400C4A22431A6056 +:106EAC000B780B4A9B00C01803681340C022920158 +:106EBC005A40054B13430360E7E7C0468F8FFF072B +:106ECC00C0800000BF8FFF078080000080C00000E2 +:106EDC008FBFFF07836D024A134083650020704704 +:106EEC00FF7FFFFFF7B50324D81C23401C00651E51 +:106EFC00AC418008001B144C0D00121904000192C7 +:106F0C00002C0FD1002B0CD02500800009184E5DF1 +:106F1C00EF00BE4001353443AEB2B342F7D1121884 +:106F2C001460F7BD2E78013CB44667466E78360285 +:106F3C003E43AF783F043743EE78043536063E4384 +:106F4C00019F40C70197DBE700980040F7B50C00A4 +:106F5C0049780600227B012900D09BE12069A569B4 +:106F6C00854200D90500002A20D1ABB2E2886169C4 +:106F7C003000FFF7B7FF2378C049DB005B181A68B5 +:106F8C002D0492B21A602378DB005B181A68154343 +:106F9C001D602378BA4A9B00F318196811403022FF +:106FAC004A40B8490A431A600020FEBD2278E778AF +:106FBC009100236A7118022F00D040E10A689842B0 +:106FCC0000D336E1B04B40201A40B04B13430B605A +:106FDC00236A22785B1B23629300F3181B68617889 +:106FEC009C461F00ABB2019363460740034200D19D +:106FFC008DE000295AD1A149D20052180B005168DA +:10700C0089018909516021783E2D3FD921382840CA +:10701C0047427841C9006A09C918121A4868920691 +:10702C0002438020000602434A6062896169ABB268 +:10703C003000FFF757FF636921695B196361236AAD +:10704C0000228B4201D95A1B2B0022626278002A43 +:10705C004CD12278894FD200D21911688901890943 +:10706C00116021783E2B31D91F20184045426841D0 +:10707C00C9005A09C919121A0868920602438020DD +:10708C00000602430A609BB222898CE07B4BC9004C +:10709C00C918002D03D1802248681206C3E70120CD +:1070AC006A082840121892064868BCE70129BCD12E +:1070BC007248D2001218516889B2516022782904A2 +:1070CC00D2001218506801435160AEE76B4AC900F8 +:1070DC008918002B03D1802208681206D1E7012001 +:1070EC005A081840121892060868CAE7012ACAD131 +:1070FC0022786248D2001218116889B21160227885 +:10710C001904D2001218106801431160BBE7002962 +:10711C005ED15A49D200521811688901890911604F +:10712C0021783E2D44D91F20284003005842584155 +:10713C006A09121A5148C9000918086892060243D4 +:10714C008020000602430A602289ABB230006169DC +:10715C00FFF7C8FE636922695B196361236A934276 +:10716C0001D95F1B2B0062782762002A50D122784C +:10717C00424FD200D2195168890189095160217896 +:10718C003E2B35D91F20184045426841C9005A0989 +:10719C00C919121A4868920602438020000602435D +:1071AC004A609BB2628930006169FFF79BFEF0E692 +:1071BC00324BC900C918002D03D180220868120671 +:1071CC00C0E701206A082840121892060868B9E73F +:1071DC000129B9D12948D2001218116889B211605D +:1071EC0022782904D2001218106801431160ABE711 +:1071FC00224AC9008918002B03D180224868120644 +:10720C00CDE701205A081840121892064868C6E7C4 +:10721C00012AC6D122781948D2001218516889B2B5 +:10722C00516022781904D200121850680143516041 +:10723C00B7E717480240134802430A6058E75B1B44 +:10724C0023620868ABB229040C4DD20052194006D7 +:10725C0009D5506880B250602278D200521950681B +:10726C00014351609EE7106880B210602278034899 +:10727C00D200121810680143116005E70098004015 +:10728C00BF8FFF07808000008F8FFF078081000079 +:10729C008F8EFF07002A22D1A36921698B4201D965 +:1072AC005A1A0B00A2612278844DD20052195168EF +:1072BC0089018909516022783E2B00D8ECE01F200F +:1072CC005909034058424341C91A8B068021D20008 +:1072DC0052195068090603430B43536075E0E37879 +:1072EC00022B00D08DE000291AD12378734DDB00DE +:1072FC005B191A68920192091A60226923783E2A56 +:10730C002DD91F205109024050424241891A8A0648 +:10731C008021DB005B191868090602430A431A60D6 +:10732C0062782378002A5DD1644DDB005B195A68C2 +:10733C00920192095A60226923783E2A21D91F2092 +:10734C005109024050424241891A8A068021DB00D1 +:10735C005B195868090602430A435A6022E05749F0 +:10736C00DB005B18002A03D1802219681206D5E7CE +:10737C0001205108024089181A68890611431960C6 +:10738C00CEE74E49DB005B18002A03D180225968F6 +:10739C001206E1E701205108024089185A68890653 +:1073AC0011435960E3692278002B0ED09200B21879 +:1073BC00136843490B408B4201D0002B05D1116857 +:1073CC00404B1940404B0B43136023783F4A9B00C2 +:1073DC00F61833681340C02292015A403C4B1343B9 +:1073EC003360E1E5012ADDD13449DB005B185A68D2 +:1073FC0092B25A6023782269DB005B185968120438 +:10740C00AAE70120834200D0CFE5A36922690020BE +:10741C00934201D9981A1300A061002919D122783E +:10742C00264FD200D219116889018909116021787F +:10743C003E2B21D91F20184045426841C9005A09EA +:10744C00C919121A086892060243802000060243EA +:10745C000A6061782278002900D125E70129B4D18E +:10746C001648D200121851681B0489B25160227858 +:10747C00D200121851682FE7104AC9008918002B46 +:10748C0003D1802208681206E1E701205A0818404F +:10749C00121892060868DAE70849D2005218002B35 +:1074AC0003D1802351681B0616E7012059080340BD +:1074BC00C918536889061943516086E70098004043 +:1074CC00404000008F8FFF07C08000008FBFFF0778 +:1074DC0080800000F7B50324D81C2340134C80088F +:1074EC0012191C00651EAC41001B0D00040001921A +:1074FC00002C0ED1002B0BD080001218091810682C +:10750C000500E200D5400D550134A2B29342F7D1EB +:10751C00F7BD019F013C40CF0197370A2E706F7069 +:10752C00370C360EAF70EE700435E1E70098004072 +:10753C000F4B411E02000120994217D80D4902231E +:10754C008A4203D80C4B93429B415B4207200B4968 +:10755C000A6882431A430A600A680240934201D0C7 +:10756C000A680240981A421E9041C0B27047C04649 +:10757C00FF8FD003006CDC0200366E01002002404D +:10758C0010B50400FAF732F803480121034A02F05F +:10759C00B8F8200002F089FFB0AD000846C600081C +:1075AC00F0B585B005000C0000AFEFF310837B60E5 +:1075BC0072B62D4A9368FB602C4B042802D82C4BD6 +:1075CC008100CB586E468AB0117C6A46D361294B38 +:1075DC0029489384294B5061956111621361B12143 +:1075EC00274B1032BB60B86800238901FAF704F905 +:1075FC00B546002C07D0E369DB0504D00121214AF4 +:10760C00B86802F07EF8FB68002B07D0180002F077 +:10761C00B8FF002802D00378002B00D11A486E4620 +:10762C008AB06A46194BD0615361FB689361114B68 +:10763C001384174B136191210023114810328901D7 +:10764C00FAF7DAF82100B5462800FFF799FF7B68B6 +:10765C00002B02D162B6BFF36F8FF868FBF77AFC90 +:10766C00BD4605B0F0BDC046E013002055C600086D +:10767C0004B10008010300006BC6000805000001FE +:10768C00B0AD000893C6000863C60008B4C6000875 +:10769C0004000001F8B501270A4E83009D59013002 +:1076AC0084003359AB4200D8F8BD6868002806D076 +:1076BC00037F3B4201D102F0D2FE0835F1E72B6883 +:1076CC009847FAE718B10008012270B5234B032044 +:1076DC0086B01A70FFF7DEFF01F0B6F90420FFF751 +:1076EC00D9FF1F4C26001F4DAC420ED300F05CFDA1 +:1076FC00AE4220D300F068FDF8F78AFE01211A4A49 +:10770C00137B8B43137306B070BD636A0593236AB6 +:10771C000493E3690393A369029363690193236957 +:10772C000093E368A2686168206800F02FFB23686F +:10773C005C653034D7E7B26AF36A511C01D1591C2D +:10774C0005D011003068194303D100F013FE303618 +:10775C00CEE70649183000F0A9FFF8E76C140020BA +:10776C0088AC000888AC00088006002077A60008CA +:10777C0070B5702601250400464301021148802291 +:10778C000918002086B004950E3503950535654320 +:10779C000D4B0590029001900C48F6182D180C4BCF +:1077AC0030000095520000F0F1FA0422737B2C7427 +:1077BC00934373730134074BE402E418EE606C607E +:1077CC0006B070BD701F002010060020E0130020D2 +:1077DC00BFA4000870170020F0B5002087B0FFF799 +:1077EC0059FF214B83F308882049214B0A6A002555 +:1077FC001A40C0231B0413430B62FBF77FFBFBF700 +:10780C0097FCF9F757FE1B4800F026FBF9F710FD23 +:10781C000120FFF73FFF0220FFF73CFF00F004FDC3 +:10782C00154C164B80225C61154B164E05930123AB +:10783C0015490493520133002000039502950195DC +:10784C00009500F0A3FA04220700637B2000934309 +:10785C00637302F0D4FE2800FFF78AFF3200390070 +:10786C002000FBF749FCC046701F002000ED00E033 +:10787C00FFFF00FF8007002080060020E01300209F +:10788C00D8B50008D576000870200020F0B585B07A +:10789C0004001F000392EFF3108672B6C368354ADA +:1078AC00002B0ED080689168884217D0039B3B4315 +:1078BC001AD1002E02D162B6BFF36F8F1020404256 +:1078CC000AE09168897B49B20133E36093682161D6 +:1078DC00A360002E04D0002005B0F0BD2169F3E7B1 +:1078EC0062B6BFF36F8FF6E70E23897BC35649B29E +:1078FC00994200DD19000A007F3201DA7F214942EA +:10790C0000258B4202DD02F0DBFD05001A4B220044 +:10791C000293039B310002980093019700F088FBBF +:10792C000028D8D0EFF3108672B6A068002819D0C2 +:10793C00236821699C420BD0002B09D09B7B5BB246 +:10794C00994200DD19000B007F3301DA7F21494297 +:10795C0002F0B6FD002805D03100029800F0F8FBCB +:10796C000B20ACE7002DF7D1002EF9D162B6BFF396 +:10797C006F8FF5E7E01300206D140020F8B58368D5 +:10798C000500002B3CD0214A926893423BD1C3683E +:10799C00012B03D9013BC3600020F8BDEFF3108726 +:1079AC0072B60169806802F08BFD2C68AC4208D17C +:1079BC000023AB60EB609F42EED162B6BFF36F8FDA +:1079CC00EAE7002CF4D062682368002613605A6042 +:1079DC0002222000637B2660934363736660A6607B +:1079EC00183002F08CFE0E23AC60E35620002B61A5 +:1079FC00E66602F004FE3900054800F0A9FBCBE76F +:107A0C0016204042C9E70120FBE7C046E0130020E6 +:107A1C006D14002070B5EFF3108572B60468A042A7 +:107A2C001AD0002C18D062682368002613605A60A4 +:107A3C0002222000637B2660934363736660A6601A +:107A4C00183002F05CFE2000E66602F0D8FD29003A +:107A5C00084800F07DFB70BD8268C3689B1A591EF4 +:107A6C008B419B188360002DF5D162B6BFF36F8FED +:107A7C00F1E7C0466D14002013B50400EFF310813C +:107A8C0072B68068002808D00138A060002902D1A5 +:107A9C0062B6BFF36F8F002016BD1000184307D1DC +:107AAC00002902D162B6BFF36F8F10204042F3E77A +:107ABC00009201932200024800F0BAFAECE7C046AB +:107ACC006D1400200123802213B5054C054906488E +:107ADC0000945B42D20000F015F9002016BDC046A0 +:107AEC0030B1000870300020F0060020F0B5050021 +:107AFC0087B0EFF3108772B62E006C6F8C36002CAB +:107B0C001CD10221300002F0FAFC002866D02C00B7 +:107B1C00843400220121200002F0D3FD0028F8D18A +:107B2C000023029301225242D317009201932A00A0 +:107B3C0039007C323C4800F0D9FCDAE72368AA6FA4 +:107B4C006B67944200D1AB670222336813433360F6 +:107B5C000423E2689A43033B1343E3606368002FFA +:107B6C0047D020009847EFF31083059372B6E36873 +:107B7C0001211A008A43100908423ED1E260E368F1 +:107B8C009A071AD502229343E360284B1868002801 +:107B9C0013D00021026800280FD04768BC423AD1AC +:107BAC000268002931D159681A60814200D15A60AB +:107BBC00002303600830FFF72DFF02223368934344 +:107BCC00059A3360DB05DB0F002A02D162B6BFF3E6 +:107BDC006F8F002B8DD100F031FB8AE73368DB0609 +:107BEC009ED53060002F02D162B6BFF36F8F07B005 +:107BFC00F0BD62B6BFF36F8FB3E711229343E3601E +:107C0C0020001030FFF706FFB9E70A605A6882427D +:107C1C00CED15960CCE79446002A01D011688C462D +:107C2C00010010006246B6E76D140020001400201D +:107C3C00F7B5C3680D00590801220F000400174066 +:107C4C0011424CD19B0813421ED12B68002B01D141 +:107C5C0083682B600127E3683B4202D0A368FF19BD +:107C6C002B602E68002E48D03100254B8C319A6841 +:107C7C00336F01919A4222D00A68012193080B407C +:107C8C000A4204D113277F4200232B6015E0002BFE +:107C9C0025D1D3080B40002B21D100232360B36FD7 +:107CAC00002B27D1B4677467300002F034FC042336 +:107CBC00E2681343E3602B68A3603800FEBD02F05A +:107CCC0057FC019B01221B6800280AD1D9081140DE +:107CDC001342D7D00029E0D09B081342DDD11027E6 +:107CEC00D1E7990811401342CCD00029F7D1DB0819 +:107CFC001340D0E71C60B467D6E71627C3E7C0462D +:107D0C00E0130020F0B5040000206067A06720009D +:107D1C0089B07C30261D0E9DE067F067083000604E +:107D2C0040600120002D07D0287946427041FF2683 +:107D3C004042B0430230FF3026008C3630600126C2 +:107D4C007642F7170696079700260F48039304967A +:107D5C000300029620000196009400F051F8B54201 +:107D6C000CD02968B14202D0200002F007FC6B79DC +:107D7C00002B03D00123227B13432373200000F03C +:107D8C00F9FA246709B0F0BDF97A0008F0B587B0AC +:107D9C000593030058338365C365109B0727037352 +:107DAC00042300250732BA434373D2190F9BBA43FD +:107DBC0083738B180E0085601900C5738561C561CE +:107DCC0004000493FAF7D2FF049BC019B8431F1A9E +:107DDC000E9B3A0002930D9B310001930C9B2000EB +:107DEC000093059BFBF772F9044B65659B68AB42EE +:107DFC0000D01B6E3800236607B0F0BDE0130020E6 +:107E0C0070B50400002086B005900E98119D04906A +:107E1C000D98109E03900C9802900B9801900A9864 +:107E2C0000902000FFF7B2FF2B00721C01D1013330 +:107E3C0005D02B00334305D1200000F09BFA200025 +:107E4C0006B070BD200032002B000249183000F043 +:107E5C002DFCF4E777A60008022310B50400FF33CD +:107E6C00838100F0EBFD014B9C6010BDE013002002 +:107E7C000B21084A49429368D966986680230649C3 +:107E8C005B05486803434B6062B6BFF36F8F936822 +:107E9C00D86E7047E013002000ED00E00D2370B5A4 +:107EAC00C356427B002B38DBD30636D180235B4292 +:107EBC0013431B4C4373A3691A49E2698B4207D1E4 +:107ECC00016042601060E06111E09A42F8D01B68DA +:107EDC00002BF5D00E250E2645579E57B542F4D0F3 +:107EEC00AE42F2DD5A680360426010605860A569CA +:107EFC008D4201D0002D00D1E568A3685A7BD206D3 +:107F0C0005D1DA897F2A02D9AA69002A06D0AB42A8 +:107F1C0002D0280000F02CFB656170BD6361FCE7AA +:107F2C00E0130020F81300200D2270B582560500D6 +:107F3C00437B002A04DA7F221340437302F023FBB5 +:107F4C000D4E0E4AB469B368944201D0002C00D196 +:107F5C00F468AB4208D05A7BD20605D1DA897F2A65 +:107F6C0002D9A269002A05D0A34202D0200000F059 +:107F7C00FFFA2300736170BDE0130020F81300209A +:107F8C0010B5511C01D1591C03D00249183000F016 +:107F9C008DFB10BD77A600080D2270B5825604002B +:107FAC00437B002A04DA7F221340437302F0EBFA7E +:107FBC008023627B5B4213431B4D6373AB691B498C +:107FCC00EA698B4207D1216062601460EC6111E0B8 +:107FDC009A42F8D01B68002BF5D00E200E262056A6 +:107FEC009E57B042F4D08642F2DD5A68236062603C +:107FFC0014605C60AE69AB688E4201D0002E00D17B +:10800C00EE68A34208D05A7BD20605D1DA897F2AC2 +:10801C0002D9B269002A05D0B34202D0300000F078 +:10802C00A7FA33006B6170BDE0130020F813002039 +:10803C0070B50C0011000A4A0A4B90681860EFF3F7 +:10804C00108372B69568280002F0B0FA049A059B6A +:10805C002800FFF795FF2000FFF70AFF70BDC04610 +:10806C00E013002008140020F7B50400EFF310878C +:10807C0072B61F22437B1A4050425041C0B201904D +:10808C004DB2002A3CD17F3213406373200002F0C2 +:10809C007AFA8023627B5B4213432B4EA573637386 +:1080AC00B3692A498B4229D1F2692160626014605C +:1080BC00F4610FE09A42F8D01B68002BF5D00E202B +:1080CC0018568542F6D0A842F4DD5A6823606260E7 +:1080DC0014605C60B4698C4201D0002C00D1F4684F +:1080EC00B3689C4202D0200000F042FA7461002F69 +:1080FC0002D162B6BFF36F8F0198FEBDF269DCE767 +:10810C009B071FD5A668200002F03DFAA5733368C3 +:10811C009E4209D17368266063601C607460E6E758 +:10812C0072689342F6D01B68002BF3D00E229A563D +:10813C009542F5D0AA42F3DD5A6823606260146060 +:10814C005C60D4E7A573D2E7E0130020F81300209D +:10815C0010B500290AD1EFF30580002807D1064B92 +:10816C009A685B699A4202D0FFF782FE10BD62B634 +:10817C00BFF36F8FFAE7C046E013002010B500285C +:10818C000AD1EFF30580002807D1064B5A699B688A +:10819C009A4202D0FFF76CFE10BD62B6BFF36F8F30 +:1081AC00FAE7C046E0130020EFF3108172B6054BDE +:1081BC009A68D37B013BD373002902D162B6BFF31B +:1081CC006F8F7047E013002070B5EFF3108672B616 +:1081DC00134DAB68DA7B0132DA73AC69114A944205 +:1081EC0001D0002C00D1EC685A7BD20605D1DA897B +:1081FC007F2A02D9A269002A05D0A34202D020000E +:10820C0000F0B6F923006B61002E02D162B6BFF309 +:10821C006F8FEFF3108072B6FFF7B0FF70BDC046E2 +:10822C00E0130020F8130020024B034A9A61DA6134 +:10823C007047C046E0130020F813002070B5EFF330 +:10824C00108572B61C4CA168E3690A68CB1A581EDB +:10825C00834149685B420A6051601340E169A2683E +:10826C00002B05D1154B516013600A60E2610CE0E4 +:10827C000E200E2610569E57B04218D0864216DDA0 +:10828C005968136051600A605A60A6690B4B9E4294 +:10829C0001D0002E00D1E668A3689E4202D03000C7 +:1082AC0000F066F928006661FFF7E2FD70BD8B42B5 +:1082BC00D8D01B68D4E7C046E0130020F813002088 +:1082CC00F8B5030007000C000B4303D1FFF7B6FF12 +:1082DC000020F8BDEFF3108672B6134D134BA8684F +:1082EC001860FFF721FEA86823003A0010491830E7 +:1082FC0000F0DCF90423AA680400517B30000B4326 +:10830C005373FFF7B5FDAB689A6A002AE0D180225F +:10831C00DB6A12069342DBD102F017FA201AC34330 +:10832C00DB171840D5E7C046E013002008140020E6 +:10833C0077A6000870B504000D00FFF7C1FF01001F +:10834C002000631C01D1013510D00A00CB17092085 +:10835C000021801859410A220023F7F797FF0029C2 +:10836C0003D180231B06984200D3014870BDC04640 +:10837C00FFFFFF7F70B50400EFF3108572B6042683 +:10838C00437B33420DD0183002F0B9F9637B2000E7 +:10839C00B3436373FFF782FD29000548FFF7D8FE4E +:1083AC0070BD002DFCD162B6BFF36F8FF8E7C046ED +:1083BC006D140020014B98687047C046E0130020F4 +:1083CC00F0B5037B85B004000393EFF310830193A6 +:1083DC0072B6019B02930823427B1A4207D0019B81 +:1083EC00002B02D162B6BFF36F8F05B0F0BD190040 +:1083FC00114348B2002857DB6173A368002B02D0ED +:10840C00200002F0C8F820002600183002F077F99E +:10841C005836A56DAE4201D0002D4DD1304F002500 +:10842C00BB689C4204D1EFF305856A1E9541EDB201 +:10843C00BE692C4A964201D0002E00D1FE68B34290 +:10844C0002D0300000F094F820007E6101F056FA62 +:10845C00002D02D02448FFF7FFFCBB689C4238D1AA +:10846C00EFF30583002B34D1237BDB070FD5019B66 +:10847C00002B02D162B6BFF36F8F62B6BFF36F8F62 +:10848C000423181C02DFEFF3108372B602930298D8 +:10849C00FFF7EEFC039BDB07A7D562B6BFF36F8F2C +:1084AC000423181C02DFA0E77F210A40134320009D +:1084BC00637302F068F8A0E7280002F06CF828005B +:1084CC00183002F01CF900232800EB66FFF7E6FCDD +:1084DC009FE7019B002BDDD162B6BFF36F8FD9E70D +:1084EC00E0130020F81300208007002073B5069DD0 +:1084FC00079E089C00950196FFF79AFD002C03D06F +:10850C00024B9B681B69236076BDC046E0130020BC +:10851C000121044B044AC01A044BC0104343D154EC +:10852C007047C046F00700206D140020ABAAAAAA21 +:10853C00C289030000207F2A11D80A4A106800283B +:10854C000DD00E21084A595612680020914206DBC4 +:10855C005A7BD20603D10548181A431E98410123B1 +:10856C0018407047340000200C1400201006002026 +:10857C0070B518240C4B05001E7C0C4B7443E4188E +:10858C00200002F0BCF80022094B28009A55FFF796 +:10859C00CFFF002807D0074B20001A680649013A84 +:1085AC00D31700F083F870BDE0130020F007002013 +:1085BC006D140020340000201D85000870B5EFF309 +:1085CC00108572B6104A114B94681868A04207D1F6 +:1085DC00FFF7CEFF002D02D162B6BFF36F8F70BDD7 +:1085EC0000211960127C0A4B9B5C8B42F2D020005C +:1085FC00FFF79EFF0028EDD0637BDB0602D1200045 +:10860C00FFF7CAFC2000E3E7E01300200814002069 +:10861C006D140020024B1868984200D1002070475E +:10862C003800002070B50600FFF7F4FF002810D0CA +:10863C00026943693400F517121BAB41002B08DCAF +:10864C0003D1802109068A4203D2D843C0171040B7 +:10865C0070BD0148FCE7C046FFFFFF7F002010B54E +:10866C00034B1B68834201D1FDF702FC10BDC046D1 +:10867C001014002030B500280ED00B4B5B689842CC +:10868C000AD00168002907D00A694B690469456959 +:10869C0012196B410A614B610368426813605A609E +:1086AC0000230360436030BD38000020F0B50400A7 +:1086BC0015001E0085B0531C02D1731C00D17CE048 +:1086CC00A160EFF31083039372B6002E26DBFFF745 +:1086DC00C5FF00210090012040197141009AD31769 +:1086EC0012184B41364922616361086849681218B7 +:1086FC004B411E00150001230293FFF78BFF07006F +:10870C00304B9C465B680193002F1DD16346236060 +:10871C00019B63601C6063465C6027E0284B186813 +:10872C00596802225242D317121A8B41521BB34181 +:10873C001100002B04DC01D1002A01D101210023FE +:10874C00636121610023D7E738697969226963691C +:10875C00994202DC28D1904226D9801A99417B6833 +:10876C0038617961636027601C607C60FFF752FFA1 +:10877C0084420FD1144B1B68002B0BD1029B002B96 +:10878C0002D1FFF76BFF00900098FFF74BFF002121 +:10879C00FDF7E4FA039B002B02D162B6BFF36F8F97 +:1087AC002800310005B0F0BD121A8B4122616361C3 +:1087BC00019B9F42AAD03F68A6E700250026EFE761 +:1087CC00080800203800002010140020F0B587B0F5 +:1087DC00EFF3108372B601932F4B1860FFF71AFF5B +:1087EC002E4F04003A687B68029203932A4B9C46F6 +:1087FC001D6800280FD042690669EB179A4202DC0B +:10880C0024D1AE4222D91900226963692800121AB8 +:10881C008B4122616361029803992A00EB171218AD +:10882C004B4100243A607B60634620001C60FFF7DC +:10883C00F9FE2100FDF792FA019BA34202D162B628 +:10884C00BFF36F8FFFF7BAFE07B0F0BDF3170496B6 +:10885C000593049A059B02980399801859410023AB +:10886C0000220E4D22616361286069602000FFF7D1 +:10887C0001FF019B002B02D162B6BFF36F8F20006A +:10888C00A3689847EFF3108372B6034A01931368F9 +:10889C009B1B1360A2E7C0461014002008080020A0 +:1088AC0010B5EFF3108472B6FFF7D8FE020006493C +:1088BC00C3170868496880185941002C02D162B668 +:1088CC00BFF36F8F10BDC04608080020F7B5040039 +:1088DC00EFF3108572B603680195002B05D0002DBF +:1088EC005CD162B6BFF36F8F58E00122C16A806A17 +:1088FC00002312184B41002B01D1012A33D9012638 +:10890C007642F71736184F41002F01DA0026002760 +:10891C0001F01FFF01220023801859418019794171 +:10892C00002902DC3BD1002839D001F012FF0023D2 +:10893C0001228018594180197941244B994201D167 +:10894C00033030D801F005FF012200238018594173 +:10895C0002225242D31780197941121A8B412000FE +:10896C001B49FFF7A3FE236B01332363236A002B00 +:10897C000BD0002D02D162B6BFF36F8F2000236A9B +:10898C009847EFF3108372B60193A5691834A5428A +:10899C0001D0002D0BD1019B002BA2D0F7BD0222E0 +:1089AC005242D317DBE7802300221B06D7E72800AF +:1089BC0001F031FE0023EB66019B002B02D162B665 +:1089CC00BFF36F8F280001F01AFEE7E7FFFFFF7F70 +:1089DC00D9880008F8B5060014001D00EFF31087C5 +:1089EC0072B6511C07D1591C05D1002F02D162B6A9 +:1089FC00BFF36F8FF8BD002B0DDB14001D1E05DCC3 +:108A0C00002B01D1002A01D1012400250122524260 +:108A1C00D317A4185D41300001F071FE069A079B34 +:108A2C00B262F36200232200336330002B00024950 +:108A3C00FFF73CFED9E7C046D9880008014B036616 +:108A4C007047C046A400002010B5024800F081FB1E +:108A5C0010BDC04622C7000810B5064C064B9C4200 +:108A6C0001D3002010BD2000A268616801F0C0FE97 +:108A7C001434F3E7A4000020B80000200CB470B547 +:108A8C008AB002AC05000E0020220021200001F06B +:108A9C00C0FE0223A3700D4B25616360002E13DB17 +:108AAC0001D0731EED180FAA20000E99656101927A +:108ABC0000F00EF8002E02D0002223691A700AB0C2 +:108ACC0070BC08BC02B018470025ECE775A900087B +:108ADC00F0B5436893B003900893837815009B0717 +:108AEC0000D4F8E0002301930E78002E6AD0252ED6 +:108AFC000DD04B1C0993019B013301930399089BE7 +:108B0C00F0B29847002800DADFE00999ECE74E78DC +:108B1C008B1C0993252EEED0002304211C00099AEE +:108B2C000293079309921F2C2ED83000203810285E +:108B3C000AD8F7F7C7FA1D0909270909091E0909F7 +:108B4C00091B0925090918003300303B092B29D9C9 +:108B5C002A2E32D108CD600622D4002B29DB20200E +:108B6C000793044305E001231C4302E002231C434A +:108B7C000C43099B01321E78002ED3D109922DE0B3 +:108B8C000823F1E71023EFE77F2C1ED83300303B8E +:108B9C00092BDDD8600605D50A20029E7043C31848 +:108BAC000293E6E70A20079E7043C318079320231D +:108BBC00DAE75B4207932823D6E72E2E05D1402314 +:108BCC001C42D1D0019813B0F0BD6C2E2DD027D8FB +:108BDC00682E31D06A2E32D04C2E30D0029B002B16 +:108BEC0003DA40239C4300230293202333431A00CF +:108BFC00653A022A01D9612B24D10722EB1D93433C +:108C0C0008331D00AB4F0292240753D5019A029BE7 +:108C1C0016009C18B4424FD1079B029A9E1A82E10F +:108C2C00742EA6D07A2EA4D0D8E780231C429BD0D9 +:108C3C0080208000044397E780235B00F6E7A023A5 +:108C4C009B0091E730006338122800D9E3E0F7F776 +:108C5C0039FA0A46E2E2E2E246E2E2E2E2E2F3DD7D +:108C6C00E2E211E2AD0004CD0CAB1A7001230CAFA3 +:108C7C000293C9E780CD002F00D18F4F0299630674 +:108C8C0001D401214942380001F0DCFD0290BBE720 +:108C9C0020200399089B9847002816DB013C029B77 +:108CAC00A342F5D3079A019B944663441B1B019383 +:108CBC000794ABE7079CF2E7019B0399FB1A985DBD +:108CCC00089B984701360028A4DA039B9A78042362 +:108CDC001343039A937001235B42019372E72306BB +:108CEC003FD5A30537D50722073595432F000CCF69 +:108CFC0004920593102325009D43059B002B3ADA23 +:108D0C000499059A00244B429441049305948023C2 +:108D1C00DB001D43ADB20CAC0A230498059922006C +:108D2C0001F09BFD041B6B0665D501232A009A43B9 +:108D3C001300029AA24200DCA4E0002E00D19CE0B9 +:108D4C001022290011400B91154200D09CE0029A90 +:108D5C001D0006921EE02F0008CF0493DB1705932D +:108D6C00C8E72F0008CFE205F7D5A20501D55BB205 +:108D7C00F3E71BB2F1E7049B059A1343CBD16306CF +:108D8C00C9D5029B002BC6D111339C43029B2500F5 +:108D9C001C0006932A00494B1A400B921D4277D0B7 +:108DAC00069B0133069300230B9371E010239C4325 +:108DBC00063B9C46802322001A4006921C4242D05D +:108DCC0021008133FF3319401C4239D00722EB1D9F +:108DDC0093431F0003CB083703000B4346D12500F8 +:108DEC0016339D43630644D5029B002B41D11733A8 +:108DFC009C432500029C10232A001A400B921D4212 +:108E0C0056D0631C002E42D022003FE0102378265F +:108E1C009C461C43CEE7782B04D110229B1B1A4393 +:108E2C009446C7E725200399089B9847002800DA49 +:108E3C004BE7019B023360E6082300269C46B9E70A +:108E4C002F0001CFC8E72F008022210008CF52004D +:108E5C00180011401442BFD0802221009200114012 +:108E6C0098B21442B8D00699D8B2B5E706239C4301 +:108E7C0025000CAC6346220052E711239D43029B54 +:108E8C00069387E71D00B6E71D00029A931C069314 +:108E9C002B072AD4EB0709D5079B069A0294934219 +:108EAC0004DD9B1A1B190293079B0693069B10E08B +:108EBC0006946FE751C700084AC700080604000073 +:108ECC0020200399089B9847002800DAFDE60A9BAE +:108EDC0001330A930A9A079B9342F1DC069A019B91 +:108EEC009B1A0A9A9B18019306920B9B002B25D078 +:108EFC0030200399089B9847002800DAE5E6019B8F +:108F0C00002E12D101330193019E029B019A9B18F2 +:108F1C009B1BA34220DC2500002D25D13D00079B87 +:108F2C00069AA4199E1A019431E002330193F0B20F +:108F3C000399089B98470028E6DAC6E6174B1D42B2 +:108F4C00E2D02020AB0700D50B306D0500D52D20CD +:108F5C00019B01330193EBE730200399089B013609 +:108F6C0098470028D1DAB0E60CAB013DE85C0399D8 +:108F7C00089B98470028CFDAA7E6019B20200133F5 +:108F8C0001930399089B9847002800DA9DE6019A03 +:108F9C00A3199B1A002BF0DCB7E5C04606040000B1 +:108FAC007047020010B50B001179012214008C409F +:108FBC0021000068046924680C4200D05340002B47 +:108FCC0003D08368DB68984710BD83681B69FAE798 +:108FDC00C9004018408840087047F8B50D000400DF +:108FEC00FFF7F6FFF7F714F91F21091A8A00A218E8 +:108FFC00EB0010691F1D0633E719E318AEB2002809 +:10900C0008D101308840E1680143E16015613E8080 +:10901C001E80F8BDC1000431625A3A80D200A218F9 +:10902C001880D6806652F4E70723F7B50027043A78 +:10903C00CC1D89189C4399430B1BDE080460A66069 +:10904C00E7603000009301912425F7F7E1F8202226 +:10905C002D1A121A200039009200103001F0D9FBA1 +:10906C000123AD000735ED086A001A436280711BBD +:10907C00EA00A0184B0027804380009BA552E21801 +:10908C00019B578019800123F600A61972882900CC +:10909C00134373802000FFF7A0FFF7BDF0B585B038 +:1090AC000D001C1E0290039229D000265B780193C0 +:1090BC00E078237840009B00C018A378C0182018D3 +:1090CC00019B9E4210D36279237912021A43A37931 +:1090DC0003991B041343E279029812061A432300E6 +:1090EC000833A84705B0F0BD0378471C9B00380037 +:1090FC001F51F7F717F9013038180136E0E7162041 +:10910C004042EFE770B500240200012520001378DF +:10911C00002B01D118000AE0002813D08C4207D193 +:10912C00702B04D01E00403E3A2E0BD8002070BD90 +:10913C001E00403E3A2E05D8537801320134002BE4 +:10914C00E8D00020252B00D168400132DFE7002059 +:10915C0070470FB407B504A901C9019100F080FA5A +:10916C0003B008BC04B0184770B5056908242E007C +:10917C000023020026401800254205D1D068136850 +:10918C00984203D9C31A30000B6070BD126A0120DB +:10919C00D31AF9E713B501A90400FFF7E5FF00287E +:1091AC0004D0019BE268013B9B180193206A019B50 +:1091BC00C01A013816BD10B5040050182269236A74 +:1091CC00D20702D5013B184010BD9842FCD3C01AFF +:1091DC00FAE710B504000A00C168FFF7ECFF08229B +:1091EC002369E0609343236110BD022270B50D002A +:1091FC008B001A430368C1699B005A500400016834 +:10920C002A00FFF7D8FFE3682060984203D10823B7 +:10921C002269134323612A0061682000FFF7CBFF0A +:10922C00606070BDF0B51F00C3681600C2699B007A +:10923C00D518D25C032385B01A4004000023029198 +:10924C00022A08D033603B600222236913420DD1FD +:10925C000023019339E02968336089083B60F3D01F +:10926C00FFF7B7FFE368A3600123F2E7A3692800C7 +:10927C0098472B780090DA07D10F0191002AE7D09C +:10928C0002221A4003920222134221D0029B002B8D +:10929C0003D019002000FFF7A8FF61682000009A96 +:1092AC00FFF789FFA368E1686060994206D120004E +:1092BC00009AFFF780FF0023A0600193A368226946 +:1092CC002360E360082313432361019805B0F0BDCC +:1092DC0020000099FFF77DFFE368A360029B002B41 +:1092EC0004D02368E26903999B009950029B009A71 +:1092FC009C4662443A6021682000FFF75CFF08231B +:10930C00226920601343012223612B7893432B7035 +:10931C003560A9E770B504000D001600FFF74BFF90 +:10932C002368834205D10822236925609343236176 +:10933C0070BD0223B2001343E269AD00AB5061680B +:10934C0032002000FFF737FF6060F1E770B503696A +:10935C0004005B0706D5456AFFF71CFF854200D267 +:10936C000500656270BD70B50D0004001C22002163 +:10937C0001F04FFA0022EB68A361AB6863612B68C4 +:10938C00E3616B68626223622A69002B04D0591E68 +:10939C000B4201D101231A4322612000012200213A +:1093AC00283001F09FF870BDF0B58BB00593002309 +:1093BC000492026A04001E000291079309938A42E8 +:1093CC003BD30193EFF3108772B6099A0397002AE7 +:1093DC0005D020000199FFF79DFF00230993200081 +:1093EC0008A9FFF7C1FE089B029A0500009393425F +:1093FC002BD32368E2699B00D618D35C03229343DA +:10940C00337021682000029AFFF7D5FEE3682060D4 +:10941C00984215D00025039B002B02D162B6BFF3F6 +:10942C006F8F0799002906D06369002B01D02000AB +:10943C00984700230793002DC4D130000BB0F0BD2A +:10944C000822236913432361E4E7002804D0200099 +:10945C000099FFF7CAFEDEE7049B059A134317D069 +:10946C0001F086F8002813D1002F11D162B6BFF39A +:10947C006F8F2000049A059B2830FEF7FDFA05003B +:10948C00EFF3108372B603936B425D41EDB2C2E70A +:10949C00236820000193009909AB07AAFFF7C2FECD +:1094AC000500B8E770B50400836908000D00984703 +:1094BC000200EFF3108672B60123297820000B43CB +:1094CC002B706168FFF777FE60602000FFF73EFFAE +:1094DC00002E02D162B6BFF36F8F70BDF8B50400D9 +:1094EC00EFF3108772B608212269A3680A4203D1F0 +:1094FC006168CA1A8B4201D9226AD21AE169002A20 +:10950C0007D1002F02D162B6BFF36F8F0026300057 +:10951C00F8BD9B00CE180322CB5C03211A400B42F2 +:10952C00EFD0022A02D13568AD0805D1DA0713D481 +:10953C003000A36998470500A1682A002000FFF7B6 +:10954C003AFE2900A0602000FFF743FE002FC7D190 +:10955C0062B6BFF36F8FC3E7022213433370A36964 +:10956C003000A5689847290002002000FFF723FE71 +:10957C00A060002FCBD162B6BFF36F8FC7E7F8B5F1 +:10958C000400836908000D0098470600EFF310876C +:10959C0072B601222B7893432B7023699B0705D558 +:1095AC00E268E36992009B189D421AD102222B7843 +:1095BC0093432B70A368E168994204D132002000D8 +:1095CC00FFF7F9FDA06031002000FFF702FE002F2D +:1095DC0002D162B6BFF36F8F20002830FEF71AFA63 +:1095EC00F8BD03222E68830016401E432E60EEE762 +:1095FC0010B5EFF3108472B6036982681B0703D4AD +:10960C0041688B1A8A4201D9036A9B1A002C02D139 +:10961C0062B6BFF36F8F5A1E9341D8B210BD70471C +:10962C000378020000205B070AD4136852881B03DE +:10963C005B0D1209981807231730984303308008E4 +:10964C0070470020704710B5012101F0ABF810BD38 +:10965C0010B501F07EF80A220023F6F717FE10BDB4 +:10966C001FB502900020039103000200010001903D +:10967C000090F8F759F905B000BD10B50120F7F7C7 +:10968C00CDFE10BD00207047436810B5DA71012281 +:10969C004368196043685A71F7F7B0FE10BD70B596 +:1096AC0006000C001500081E0ED0906853681B1A9B +:1096BC0099420AD813680A001818310001F0A0F872 +:1096CC002000AB681B19AB6070BD1C204042FBE74F +:1096DC0070B50E00040015001900002802D1F7F730 +:1096EC009DFE70BD002B06D013035B0D1030C0180F +:1096FC00120D01F085F8200025606660F8F724F85B +:10970C00EFE707B50123019201AAF8F73DF807BD71 +:10971C0007B5009201936A460223F8F735F807BDA6 +:10972C001FB50293069B0192039301AA0323F8F73A +:10973C002BF805B000BDF8B506000D0014001F0095 +:10974C00002C00D1F8BD210028003A00B047241AA3 +:10975C002D18F5E710B5426804000CCA8168006842 +:10976C00FFF7E9FF002263681A6010BD70B54B6803 +:10977C0005001A68CB680C009A4202D10800FFF76A +:10978C00E9FF6068012101F00DF8A3681D54002069 +:10979C0070BD70B504000D000A2802D10D20FFF732 +:1097AC00E5FF29002000FFF7E1FF002070BDF0B5B8 +:1097BC008B6889B006930B880790DB0508000D7841 +:1097CC000C005E0F1700F8F7FDF80023AD06010042 +:1097DC006D0F984203DB2800F7F7C8FF0300210048 +:1097EC00226810311203520D60888C18551EAA4144 +:1097FC0052421140002200090490029107980699E8 +:10980C000597039401960092F8F70AF909B0F0BD98 +:10981C00436800201B685B681961704743681B68CC +:10982C001A68526853607047F7B5012143681B688A +:10983C005A6811751D686B682F681C685B68AE6888 +:10984C000193002C02D16B681C60F7BD2100300025 +:10985C00019AB847241A3618F3E710B543681B6809 +:10986C001868F8F743FA10BD70B543680C001D6812 +:10987C006B681869F7F7ACFD0F220300210028680C +:10988C00984770BD10B5FFF743FF10BD7F227023C2 +:10989C0010B50240184202D0F8F75CFB10BD012154 +:1098AC0043B208009040002BF8DA103291400800C7 +:1098BC00F4E710B500F0ADFF10BD10B500F0A0FF3F +:1098CC0010BD10B501000068F9F7F2F910BD10B524 +:1098DC00F9F74AFAF9F766FA10BD10B50021012024 +:1098EC00F9F7E6F910BD10B5F9F7E2FBF9F7BAF99B +:1098FC00F9F7C4F9F9F722FCFDF76EFF8620404218 +:10990C007047002802D162B6BFF36F8F7047BFF368 +:10991C004F8F30BF62B6BFF36F8F704710B50B69B6 +:10992C0049699847002010BD10B5F9F74BFC002091 +:10993C0010BD1F23012019408840704710B513003B +:10994C000A000121FFF7E4FE10BD10B50A00012149 +:10995C00FFF7D7FE10BD10B50C00F9F7ADFD0028D0 +:10996C0002D08460002010BD16204042FBE710B5E9 +:10997C000C00F9F7A1FD002805D0002C03D0437989 +:10998C000020237010BD16204042FBE710B50400E8 +:10999C00FAF794F8002802D01620404210BD20009F +:1099AC00FAF7D4F80028F9D0F6E710B5F9F784FDEA +:1099BC00002801D0008810BD16204042FBE770B58E +:1099CC007F240C402000F9F777FD010005000C31D5 +:1099DC002000F9F7E9FE00232B61AB68002B02D0C5 +:1099EC0001212000984770BD70B580240C432000E5 +:1099FC00F9F762FD05001430FEF70CF8AB68002B8C +:109A0C0002D002212000984770BD70B503880C88E5 +:109A1C009C4225D814889C4222D344884D88A54268 +:109A2C001ED85588A5421BD385888C88AC4217D884 +:109A3C009488AC4214D3C488CE88A64210D8D68859 +:109A4C00A6420DD300890989814209D81289824224 +:109A5C0006D3AB4204D80020A34200D9863870BD8F +:109A6C0086204042FBE770B504000D0086688168D3 +:109A7C003031826828003A32FFF7C7FF002803D143 +:109A8C00290020003369984770BD70B504000D00A3 +:109A9C0083688168483182685E6C5232002E08D02F +:109AAC002800FFF7B2FF002802D129002000B047A0 +:109ABC0070BD58204042FBE710B54468A469A46807 +:109ACC00A04710BD10B54468A469E468A04710BD58 +:109ADC0010B543689B691B69984710BD10B5FFF71B +:109AEC0010FE10BD10B513000A000121FFF710FE87 +:109AFC0010BD10B5FDF7CAFE10BD10B5FDF73EFF49 +:109B0C0010BDF0B50500066901225242D31710367C +:109B1C0085B03000FFF7EDFF1821280003AAFAF7F3 +:109B2C000DFA041E14D10127039A18213A43280078 +:109B3C000392FAF719FA041E0AD100F00AFE0090FB +:109B4C0001912800182103AAFAF7F8F9041E0CD089 +:109B5C003000FFF7D2FF200005B0F0BD182128001F +:109B6C0003AAFAF7EBF900281BD1039B3B42EFD178 +:109B7C0000F0EFFD009A019B801A9941002904DC4A +:109B8C00ECD1FA239B009842E8D90123039A1821BF +:109B9C009A4328000392FAF7E7F9041ED8D10B3C3C +:109BAC00D6E70400D4E7F7B50669070033790D0052 +:109BBC00002B41D1103601225242D3173000FFF74F +:109BCC0098FFF023F820EC88A988013C24011C4064 +:109BDC004B1E40011B0203400F201C432B882A897B +:109BEC00013B03401C43531E180401940400F8204D +:109BFC00400304402000019C9BB20443012B10D86D +:109C0C006B885B1801335A437F2A00D97F22482185 +:109C1C0038001202FAF7A8F9051E08D180231B049C +:109C2C001C4322000C213800FAF79EF90500300085 +:109C3C00FFF763FF2800FEBD10256D42FAE70723EE +:109C4C0000200B607047F7B506000C0015000029CA +:109C5C000BD0442101AA0769FAF770F9002807D143 +:109C6C003B79002B05D104332370002D13D1002038 +:109C7C00FEBD019B1A0601D50323F5E79A0601D513 +:109C8C000223F1E7402219001140134201D00123B5 +:109C9C00EAE72170E9E74021300001AAFAF74EF912 +:109CAC000028E5D1019B2B705B045B0E6B70DEE72B +:109CBC004368DB69002901D0987B7047587BFCE72F +:109CCC0003699960DA60704737B5040005690122B1 +:109CDC005242D31710352800FFF70BFF1821200034 +:109CEC0001AAFAF72BF9002807D10222019B1821AF +:109CFC001A4320000192FAF737F92800FFF7FDFE0E +:109D0C0037BD40689B08406C9B00406809185B1885 +:109D1C00521A994201D10020704708685050043102 +:109D2C00F7E740689B08406C9B00406809185B187B +:109D3C00521A994201D100207047505801C1F8E7DE +:109D4C00436892085B6C92005B68C9180023521838 +:109D5C008A4201D10020704708C1F9E7002210B5F2 +:109D6C0011001520F9F77AF91520F9F75BF90022A3 +:109D7C0016201100F9F772F91620F9F753F910BDF6 +:109D8C007047436800205B681B690B607047436831 +:109D9C005B6858694240114041405961002070474E +:109DAC00436800205B6899617047436800205B68DA +:109DBC0099627047436800205B685A695140596149 +:109DCC00704710B503699868002821D088421BD1D0 +:109DDC000868DC689860A14200D1D8600020086057 +:109DEC00824206D09A680A60DA689960002A00D12B +:109DFC00D960002010E0814206D108682060D86844 +:109E0C008142EBD1DC60E9E7040000680028F2D164 +:109E1C00002AE7D11620404210BDF0B501263024AF +:109E2C0085B0029333001440019494098B40344064 +:109E3C008C4040680236456803279D432C434460A0 +:109E4C008468A4461C008C406643F5430395D509F1 +:109E5C003D4065432F006546B5432F43876003277C +:109E6C00520A3A406243C568B5432A43C260019A1C +:109E7C00202A0CD1072914D823008B408B400F21AA +:109E8C005943026A8A4302994B4313430362019B71 +:109E9C0002681B095C43039B1A401443046005B021 +:109EAC00F0BD0F211B0A5B435B435943426A8A4353 +:109EBC0002994B431A434262E9E71300F7B580223B +:109ECC001F00920217400C000197134220D09A07F2 +:109EDC0017D55A0765D55022D90614D5802189008B +:109EEC000A43C02519008026ED002940F600B14236 +:109EFC004AD0A94218D08025AD00A94217D18021A3 +:109F0C0014E01022E8E79906EBD58021C900E7E7B9 +:109F1C003022D903E5D5DA0603D49A06D20F920281 +:109F2C00DFE780229200DCE7C02149000A43C02110 +:109F3C001E0089020E40056900960B420AD02E695C +:109F4C003100E1408C46012167460F4202D1A1400D +:109F5C00314329610199002906D041681E0315D5AA +:109F6C000123A34049688B61002321004068FFF75F +:109F7C0054FF009B002B05D12B6901221900E140F5 +:109F8C0011420AD10020FEBD8021CEE75B03EBD548 +:109F9C000123A34049688B62E6E7A24093432B61FF +:109FAC00F0E786204042EEE770B50B0089680500AB +:109FBC00002903D05E680C68002900D170BD8B6845 +:109FCC001A002A402B4202D030004B689847231EBF +:109FDC0000D0236821001C00EEE7F8B505004068AE +:109FEC001F000E001400FFF718FF112F06D10123DC +:109FFC006A68B3405268240502D593610020F8BD0D +:10A00C009362FBE730B50368136005790468ED00D3 +:10A01C006419A34202D30220404230BD5C798C42C9 +:10A02C0001D00833F0E70020F7E74068CB03006865 +:10A03C001B0D1B181F2001401E3888401B68034055 +:10A04C00591E8B410020137070474268CB03126875 +:10A05C001B0D9B181F2211401E3A8A4018680243A0 +:10A06C001A600020704742681F20CB0301401E3845 +:10A07C00884012681B0D9B181A6882431A600020D6 +:10A08C00704770B50D000400FFF7DFFF29002000BA +:10A09C00FFF7E9FF002070BD802203005201080089 +:10A0AC00934207D080225205934207D14342584134 +:10A0BC0001307047434258410330FAE7434258415C +:10A0CC000230F6E7012210B5436802211B68D869FB +:10A0DC00DC69C0081040144200D00843DC6904223B +:10A0EC000C4200D01043D969114201D020221043F8 +:10A0FC008022D9695200114202D008211A62084309 +:10A10C00C20701D508221A62820701D501221A6200 +:10A11C00420701D502221A62820601D504221A6274 +:10A12C0010BD802210B543681B68D8691042FCD062 +:10A13C00EFF3108072B6DC69144205D10028F4D11B +:10A14C0062B6BFF36F8FF0E79962002800D010BDA4 +:10A15C0062B6BFF36F8FFAE7082243681B68D869B1 +:10A16C00104200D01A62DA69920603D500205B6AAD +:10A17C000B70704701204042FBE7704770B5A52576 +:10A18C00AD00435D04000220012B09D0012363556F +:10A19C002068FCF741FC206800F058F9002060555D +:10A1AC0070BD70B5A525AD00435D04000220012BE8 +:10A1BC0009D0012363552068FCF736FC2068FCF7B6 +:10A1CC0089FE0020605570BD704770B5A525AD00A7 +:10A1DC00435D04000220012B07D001236355206846 +:10A1EC00617400F02DF90020605570BD70B504004D +:10A1FC0007200D000840282141436DB26618002D40 +:10A20C0018DA012514316118757508700A61CB7064 +:10A21C00022B01D100230B71A525AD00635D02203B +:10A22C00012B06D0012363552068FCF705FC0020A8 +:10A23C00605570BD002555315636FF31FF3661181B +:10A24C003570E2E707220B000A40282151435BB22C +:10A25C0070B504004018002B12DA01231431611878 +:10A26C004375A5250A70AD00635D0220012B06D055 +:10A27C00012363552068FCF735FD0020605570BD47 +:10A28C00002355315630FF31FF3061180370E8E779 +:10A29C00F8B50724214021344C4306193700FC370C +:10A2AC003B673300002556335536FF33FF365534A4 +:10A2BC007D67FA66FF341D70317001190068FCF778 +:10A2CC0045FE2800F8BD07230B40282159434018B0 +:10A2DC00FC30406F704770B50724214021344C434B +:10A2EC0006193500B26201223835F3622A70002556 +:10A2FC003175356373637275143401190068FCF79A +:10A30C0025FE280070BD072270B5037904000A40B1 +:10A31C000120934219D348B22823002816DA53435C +:10A32C00190001201431E318611858750123A52573 +:10A33C008B700A70AD00625D02209A4205D06355A5 +:10A34C002068FCF763FD0020605570BD4B4319007D +:10A35C000020E31855315633FF31FF336118187064 +:10A36C00E4E70B000F2270B5017904001A400120BC +:10A37C0091421BD3072228211A4051435BB260182B +:10A38C00002B14DA01231431611843750025A5261E +:10A39C008D700A70B600A35D0220012B06D001233C +:10A3AC00A3552068FCF750FD2800A55570BD00236F +:10A3BC0055315630FF31FF3061180370E6E730B588 +:10A3CC0028240D060BD5072529404C4314340019BD +:10A3DC0099B2002A07D10273C180002030BD4C43D2 +:10A3EC005534FF34F3E7012283600273F5E710B5AF +:10A3FC0003000268B52001218000B324195000200D +:10A40C00A4001855536D194302235165516D0B432C +:10A41C00536510BD704784B010B5049201220264DC +:10A42C000593036C040093430364036C0391934002 +:10A43C00D34003640020606410BC08BC04B018470F +:10A44C00002901D18023C364002070478023826DD2 +:10A45C001B021343836500207047406C704710B596 +:10A46C0043690400002B07D100230122E1684878DE +:10A47C0002434A70584210BD98470028F4D0C217C6 +:10A48C0083185340FF2B00DDFF23E2681370ECE7C9 +:10A49C00002809D00123C26800205178194202D04B +:10A4AC0010784242504118407047EFF3108372B657 +:10A4BC00FEE710B5EFF3108372B6FFF728FAF9E751 +:10A4CC000E2210B5825600238A4202D0FDF7CCFD35 +:10A4DC000300180010BD030000209860D8601B60BA +:10A4EC005B607047002A07D08A4205D38160C26046 +:10A4FC00006040600020704716204042FBE70122BC +:10A50C0030B5140003688C401D00CB40A54305609A +:10A51C001800104030BD10B5002804D000227C304B +:10A52C00110000F0CEF810BD70B50D000400102223 +:10A53C00002100F06EF9656070BD13B50190080044 +:10A54C00EFF3108472B601A9FDF772FB002C02D157 +:10A55C0062B6BFF36F8F16BD10B5FFF7EEFF041E8A +:10A56C0004DDEFF3108072B6FDF708FE200010BD7D +:10A57C00EFF30580431E9841C0B27047582040420B +:10A58C007047002070470368426813605A600023CC +:10A59C0003604360704710B50400FFF7F4FF02221C +:10A5AC00637B934363730023A36010BD70B50400F9 +:10A5BC000D00FDF7B9FC0223627B13436373002D7E +:10A5CC001CD0A5602B689D4209D16B682560636027 +:10A5DC001C606C6012E06A689A42F6D01B68002B13 +:10A5EC00F3D00E220E21A25659568A42F3D0914234 +:10A5FC00F1DD5A682360626014605C6070BD10B558 +:10A60C00EFF3108472B6FDF749FC002C02D162B650 +:10A61C00BFF36F8F10BD10B5EFF3108472B6836863 +:10A62C00002B01D0FFF7B7FF002C02D162B6BFF3AD +:10A63C006F8F10BD70B50400EFF3108572B6282330 +:10A64C00427B1A420BD18368002B01D0FFF7A3FF8A +:10A65C000422637B200093436373FDF71FFC002DE2 +:10A66C0002D162B6BFF36F8F70BD10B501211838DF +:10A67C00FFF7E0FF10BD70B5EFF3108572B60468FC +:10A68C00A0420BD0002C02D02000FFF784FF002D3D +:10A69C0002D162B6BFF36F8F200070BD0024F6E7C5 +:10A6AC000200C3170021632010B580185941002304 +:10A6BC006422F5F7EBFDC117FDF702FE6423584346 +:10A6CC0010BD030070B5EFF3108572B6046800205E +:10A6DC00A3420ED084420CD0E16622612000FFF729 +:10A6EC005AFF2000183000F00AF82000FDF7D6FBC6 +:10A6FC000120002D02D162B6BFF36F8F70BD70B513 +:10A70C000400EFF3108572B60368002B1AD0FDF726 +:10A71C0081FF06002000FDF7ADFF802300221B0601 +:10A72C0022616361A64206D1FDF798FFFDF77AFF1F +:10A73C000021FBF713FB0020002D02D162B6BFF302 +:10A74C006F8F70BD16204042F6E710B5FEF7A8F8E3 +:10A75C0010BD10B5FEF7A4F810BD42620200002334 +:10A76C001832016203638261C26103604360436318 +:10A77C00704710B50400FFF7C2FF002811D1636ABF +:10A78C00002B01D02000984720001830FFF773FFF2 +:10A79C00002806D0FFF733FFEFF3108072B6FDF7F9 +:10A7AC00EDFC10BD0300EFF3108272B60068411887 +:10A7BC001960002A02D162B6BFF36F8F7047030095 +:10A7CC00EFF3108272B60068411A1960002A02D1A8 +:10A7DC0062B6BFF36F8F70470300EFF3108272B64F +:10A7EC0000681960002A02D162B6BFF36F8F704700 +:10A7FC00030010B50C33C3600361FEF715FC10BDEC +:10A80C00002310B59A4200D110BDCC5CC454013366 +:10A81C00F8E703008218934200D170471970013396 +:10A82C00F9E730B50500101E0BD00024013A2B5D62 +:10A83C00085D834204D1A24202D00134002BF6D130 +:10A84C00181A30BD030041188B4202D01A78002A26 +:10A85C0001D1181A70470133F6E7F0B50D00372116 +:10A86C00C91A8FB0C9B20D911F2104000B400C9373 +:10A87C000C99E3B2082955D0102900D164E0E907FE +:10A88C0060080843690806900791A008A9070843C7 +:10A89C00A90808900991089E099F069807998019A4 +:10A8AC0079410E07B446060900966646009F374369 +:10A8BC000E0900970196009E019F801979410E06A2 +:10A8CC00B4466746060A3E4302960E0A0396029E5B +:10A8DC00039F801979410E04B4466746060C3E432B +:10A8EC0004960E0C0596049E059F8019794100264E +:10A8FC000A910B960A9E0B9F801979414E07CD0841 +:10A90C000521C4083443614349005B1ADBB2092BAF +:10A91C0012D9012000210A3B24184D41DBB21DE065 +:10A92C000200A5E707210B4069078C466646E00844 +:10A93C00E908064334000D00303313702300501C1B +:10A94C002B43EDD10FB0F0BD0F210B4029078C46E6 +:10A95C00664620092909064334000D00092BEBD962 +:10A96C000D99CB18DBB2E7E70B694A69934202D029 +:10A97C005A1C0A6118707047014800687047000043 +:04A98C00200A00207D +:08A99000AE59FF7F0100000039 +:10A998000000000030AA00080112000800000000B2 +:10A9A800658A0008000000000000000050AA0008A6 +:10A9B8000000000030AB00080000000010AB0008E9 +:10A9C8000000000070AA000800000000D0AA0008DB +:10A9D8000000000090AA000800000000F0AA00088B +:10A9E80000000000B0AA000865320008000000005E +:10A9F8000000000050AB00082154000800000000CF +:10AA0800D15C000800000000E1120008000000000E +:10AA1800F931000800000000D17A000800000000A9 +:08AA28000000000070AB000803 +:10AA300017C500080000000018AD000854000020F1 +:10AA4000000000003152000800000000000000007B +:10AA500078C5000874B0000808AD00086200002046 +:10AA600000000000000000000000000000000000E6 +:10AA7000C6BB0008000000000000000050000020DD +:10AA800000000000E93300080000000000000000A2 +:10AA900024C5000894AF0008E4AC0008560000206C +:10AAA0006013002025550008000000000000000091 +:10AAB00032C50008A8AF0008E4AC00085800002028 +:10AAC000741300202555000800000000000000005D +:10AAD00040C50008BCAF0008E4AC00085A000020E4 +:10AAE0008813002025550008000000000000000029 +:10AAF0004EC50008D0AF0008E4AC00085C000020A0 +:10AB00009C130020255500080000000000000000F4 +:10AB10005CC50008E4AF0008E4AC00085E0000205B +:10AB2000B0130020255500080000000000000000C0 +:10AB30006AC50008F8AF0008E4AC00086000002017 +:10AB4000C41300202555000800000000000000008C +:10AB50002BC6000878B0000834AD0008640000205F +:10AB600020000020E1580008000000000000000064 +:10AB7000FEC40008DCAE000888AC000852000020CB +:10AB8000DC110020D14E0008000000000000000091 +:10AB900000000000E798000800000000E7980008A7 +:10ABA00000000000E798000800000000E798000897 +:10ABB00000000000E79800088EBB00081D32000866 +:10ABC0008CBB00081D3200088ABB00081D3200083B +:10ABD00000000000F134000800000000E7980008C1 +:10ABE00000000000E798000800000000E798000857 +:10ABF00000000000E798000800000000E798000847 +:10AC000000000000E798000800000000E798000836 +:10AC100000000000E798000800000000E798000826 +:10AC200000000000E798000800000000E798000816 +:10AC300000000000E798000870AB000841440008DD +:10AC400070AB0008B543000800000000E79800085A +:10AC500000000000E798000800000000E7980008E6 +:10AC600000000000E798000800000000E7980008D6 +:10AC700000000000E798000800000000E7980008C6 +:08AC800000000000E798000845 +:10AC88004B9C0008F1410008954A0008ED42000875 +:10AC98008D410008F1450008DD480008F149000829 +:10ACA800539C0008CD9C0008E94F0008BD9C000893 +:10ACB8000100000002000200010080000000000105 +:10ACC80080000002B39B00080100000001000100A1 +:0CACD8000100100000002000100020000F +:10ACE400C79E00088F9D00089B9D0008AD9D00082D +:10ACF400B79D0008C19D000875540008CF9D000849 +:04AD0400000000004B +:10AD080037A0000857A0000873A000088FA000080B +:10AD180081500008C150000800000000F1500008F0 +:0CAD2800FD51000800000000A5510008CB +:10AD340065A100082FA10008D1A00008015B00084C +:0CAD44002956000800000000000000007C +:10AD50004DBF00080300000034C4000803000000D9 +:10AD60000BC5000803000000B8B500080300000090 +:10AD700022B3000804000000E4BB00080300000048 +:10AD800083BB00080300000062B400080400000058 +:10AD9000E5B5000803000000E9B500080300000065 +:10ADA0000EB7000803000000D8B50008040000003A +:10ADB00016C7000803000000B9B300080400000033 +:10ADC000C6BE000803000000C9B50008030000006B +:10ADD0003BC6000803000000BFBE000803000000DF +:10ADE000FDB9000803000000DCB800080300000003 +:10ADF0000AB500080400000029BA0008030000009A +:10AE000090AE000808000020FDB600080100000018 +:10AE100001000600070002000600000010AB000859 +:10AE20000200000030AB000808000000C001002054 +:10AE300000010000879600082D960008020000001F +:10AE4000BB970008000000000000000000000000A8 +:10AE500000000000DDB60008E5B6000800000000B4 +:10AE60000000000000000000EDB60008F1B6000888 +:10AE7000F5B60008F9B6000880AE000830080020DA +:10AE8000851D00084808002058140020010000001B +:10AE900075980008679800083598000829980008F8 +:10AEA000000000001D98000800000000B4AE00087B +:10AEB00001000000BCAE00080200000070010000AC +:10AEC0000000000090010000000000003C000000B5 +:10AED000002000000500000058002C0000000000C9 +:10AEE0000000000000127A0048E8010000000000A5 +:10AEF00040420F0080AF000850AF000800001C0067 +:10AF0000080003000300000003000300000000002D +:10AF10007000B000880160026002780250030000F7 +:10AF200024AF00080068004050B700400200000055 +:10AF300040AF0008699D000860AF000800000000F5 +:10AF40003C000000001000000B0000005800280129 +:10AF5000481300206812002028120020031C08005B +:10AF600068AF00080100000070AF00080200000098 +:10AF700003020000000000002302000000000000A7 +:10AF8000B94D0008454E00080F9D00082F9D000890 +:10AF90004D9D0008FFFF0000001400500500000058 +:10AFA0003400000020000000FFFF000000100050EF +:10AFB000040000003400000010000000FFFF00004B +:10AFC000000C0050030000003400000008000000E6 +:10AFD000FFFF0000000800500200000034000000E5 +:10AFE00004000000FFFF000000040050010000000A +:10AFF0003400000002000000FFFF000000000050CD +:10B0000000000000340000000100000030AB000828 +:10B0100010AB0008F0AA0008D0AA0008B0AA0008E7 +:10B0200090AA0008000000000000000000000000DE +:10B030000000000000000000000000000000000010 +:10B040000000000000000000000000000000000000 +:10B0500000000000000000000000000000000000F0 +:10B0600000000000000000000000000000000000E0 +:10B0700000000000001002400038014050AA000803 +:10B080000E0600009CB00008010000000000000057 +:10B090000000000000000000A4B000084000000014 +:10B0A00000400000ACB0000801000000B4B000088F +:10B0B000020000008104000000020000A104000062 +:10B0C0000000000000000000000000000000000080 +:10B0D0000000000000000000000000000000000070 +:10B0E000000000000100000002000000030000005A +:10B0F0000400000006000000070000000800000037 +:10B1000009000000CCC60008DAC60008EEC6000838 +:10B11000FDC6000809C7000898A9000898A90008FA +:10B1200008AA000810AA000830AA000830AA0008DF +:10B1300019C7000800010000000000000010000016 +:10B1400000304557532043414E204644204344435A +:10B1500020436F6D706F73697465204669726D77F7 +:10B16000617265207374617274696E672E2E2E0091 +:10B17000537461747573204C45442064657669632B +:10B1800065206E6F74207265616479004572726F1C +:10B190007220636F6E6669677572696E672073747B +:10B1A00061747573204C45443A20256400466169FA +:10B1B0006C656420746F20696E697469616C697A6A +:10B1C00065205046455420636F6E74726F6C3A2050 +:10B1D0002564004661696C656420746F20696E693E +:10B1E0007469616C697A65205553422067735F7595 +:10B1F00073623A202564004661696C656420746F4F +:10B2000020696E697469616C697A652043444320E2 +:10B2100068616E646C65723A202564004661696CF1 +:10B22000656420746F20696E697469616C697A6500 +:10B230002067735F7573622043414E3A2025640096 +:10B24000455753206669726D7761726520696E6932 +:10B250007469616C697A656420737563636573737F +:10B2600066756C6C79004344432041434D2064650E +:10B2700076696365206E6F7420726561647900433E +:10B2800044432068616E646C657220696E697469FC +:10B29000616C697A65640050464554315F4F4E00D9 +:10B2A0005046455431204F4E0D0A0050464554310A +:10B2B0005F4F4646005046455431204F46460D0AE2 +:10B2C0000050464554325F4F4E00504645543220A0 +:10B2D0004F4E0D0A0050464554325F4F46460050CF +:10B2E00046455432204F46460D0A005354415455AA +:10B2F000530050464554313A2025732C2050464582 +:10B3000054323A2025730D0A004552524F523A20CA +:10B31000556E6B6E6F776E20636F6D6D616E640D31 +:10B320000A006364635F68616E646C657200504616 +:10B330004554204750494F20646576696365732002 +:10B340006E6F74207265616479004661696C656432 +:10B3500020746F20636F6E66696775726520504652 +:10B360004554312070696E3A202564004661696C4D +:10B37000656420746F20636F6E66696775726520FF +:10B3800050464554322070696E3A2025640050467C +:10B39000455420636F6E74726F6C20696E697469B6 +:10B3A000616C697A6564005046455431202573000C +:10B3B000504645543220257300706665745F636F94 +:10B3C0006E74726F6C0025733A2052583A204944CB +:10B3D0003D30782530387820444C433D2564004387 +:10B3E000414E20646576696365206E6F74207265D6 +:10B3F000616479004661696C656420746F207365CF +:10B40000742043414E2074696D696E673A2025644B +:10B41000004661696C656420746F20616464204338 +:10B42000414E2052582066696C7465723A2025643A +:10B430000067735F7573622043414E20696E7465C7 +:10B44000726661636520696E697469616C697A65A9 +:10B45000640063616E5F72785F63616C6C626163EC +:10B460006B0067735F7573625F63616E0025733A8B +:10B4700020576F756C642073656E642025642062AC +:10B480007974657320746F20686F737400496E69F6 +:10B490007469616C697A696E67206D696E696D6146 +:10B4A0006C2067735F7573622055534220696E7418 +:10B4B000657266616365004661696C656420746FDE +:10B4C00020656E61626C65205553423A2025640008 +:10B4D00042617369632055534220696E74657266D8 +:10B4E00061636520696E697469616C697A6564007D +:10B4F00067735F7573625F73656E645F6672616DBB +:10B50000655F746F5F686F7374007573625F6773F4 +:10B510005F7573620028756E7369676E65642920B4 +:10B5200063686172202A207573656420666F7220DB +:10B5300025257020617267756D656E742E204974C3 +:10B540002773207265636F6D6D656E64656420742A +:10B550006F206361737420697420746F20766F6943 +:10B5600064202A2062656361757365206974206DAB +:10B570006179206361757365206D697362656861C7 +:10B5800076696F7220696E206365727461696E20DE +:10B59000636F6E66696775726174696F6E732E2072 +:10B5A000537472696E673A2225732220617267753F +:10B5B0006D656E743A25640063627072696E7466BC +:10B5C0005F7061636B6167650073746D33325F62D6 +:10B5D00061636B75705F646F6D61696E006C6F673E +:10B5E00067696E67006C6F67006C6F675F6D676D92 +:10B5F00074004D65737361676520282225732229C5 +:10B600002064726F70706564206265636175736534 +:10B6100020697420657863656564732073697A6551 +:10B62000206C696D69746174696F6E2028257529B5 +:10B63000004D6573736167652064726F7070656437 +:10B640002062656361757365206974206578636540 +:10B650006564732073697A65206C696D69746174BF +:10B66000696F6E2028257529001B5B306D002573DE +:10B6700020005B2530386C755D20005B253032750D +:10B680003A253032753A253032752E253033752CF7 +:10B69000253033755D200025732F003C25733E2037 +:10B6A0000025733A20002530327820002020200029 +:10B6B0007C00256300206D6573736167657320648A +:10B6C000726F70706564202D2D2D0D0A1B5B306D1F +:10B6D000001B5B313B33316D2D2D2D20001B5B3169 +:10B6E0003B33316D001B5B313B33336D0065727250 +:10B6F0000077726E00696E6600646267006C6F6747 +:10B700005F6261636B656E645F75617274006C6F1C +:10B71000675F75617274005365742068616C742092 +:10B7200065702030782530327800436C6561722076 +:10B7300068616C742065702030782530327800455F +:10B740006E64706F696E74203078253032782069AD +:10B750007320696E76616C696400456E64706F6910 +:10B760006E742030782530327820616C72656164A7 +:10B77000792064697361626C6564004661696C6517 +:10B780006420746F2064697361626C6520656E6407 +:10B79000706F696E742030782530327800456E64A1 +:10B7A000706F696E742030782530327820616C7249 +:10B7B0006561647920636F6E6669677572656400A0 +:10B7C0004661696C656420746F20636F6E6669679B +:10B7D00075726520656E64706F696E7420307825AF +:10B7E00030327800456E64706F696E742030782551 +:10B7F00030327820616C726561647920656E6162B7 +:10B800006C6564004661696C656420746F20656EC8 +:10B8100061626C6520656E64706F696E742030784B +:10B8200025303278004661696C656420746F20773A +:10B830007269746520656E64706F696E74206275DC +:10B8400066666572203078253032780052657175F1 +:10B850006573742062756666657220746F6F2073FD +:10B860006D616C6C00555342206465766963652098 +:10B87000737570706F727420616C72656164792089 +:10B88000656E61626C6564004661696C6564207414 +:10B890006F20636F6E66696775726520555342202D +:10B8A00064657669636520737461636B00457272C9 +:10B8B0006F6E656F75732064657669636520646576 +:10B8C0007363726970746F72206F7220624D617859 +:10B8D0005061636B657453697A6530007573625F9C +:10B8E0006465766963650030313233343536373814 +:10B8F0003941424344454600546865726520697386 +:10B90000206E6F207573625F6366675F6461746148 +:10B9100020666F7220257000556E696E69746961CA +:10B920006C697A6564207573625F6366675F6461E2 +:10B93000746120706F696E7465722C20636F72720F +:10B9400075707465642064657669636520646573E9 +:10B9500063726970746F723F004661696C65642040 +:10B96000746F2076616C696461746520656E6470C3 +:10B970006F696E747300746865206E657720534E2E +:10B980002064657363726970746F7220646F65738D +:10B990006E27742068617665207468652073616D18 +:10B9A00065206C656E67746820617320434F4E4656 +:10B9B00049475F5553425F4445564943455F534E9F +:10B9C00000496E636F6D706C65746520646576699F +:10B9D00063652064657363726970746F7200466199 +:10B9E000696C656420746F206669787570205553A2 +:10B9F000422064657363726970746F72007573625C +:10BA00005F64657363726970746F72005472616E03 +:10BA100073666572206572726F722025642C2065D2 +:10BA20007020307825303278007573625F747261EF +:10BA30006E736665720072302F61313A2020307863 +:10BA400025303878202072312F61323A202030782A +:10BA500025303878202072322F61333A2020307818 +:10BA6000253038780072332F61343A202030782521 +:10BA7000303878207231322F69703A2020307825A2 +:10BA8000303878207231342F6C723A20203078258B +:10BA90003038780020787073723A20203078253062 +:10BAA0003878004661756C74696E6720696E7374CE +:10BAB00072756374696F6E2061646472657373205C +:10BAC000287231352F7063293A2030782530387844 +:10BAD00000556E68616E646C6564204952516E3A1F +:10BAE000202564005265736572766564204578632D +:10BAF000657074696F6E20280053707572696F7578 +:10BB00007320696E74657272757074202849525181 +:10BB10002000535053454C20696E20746872656153 +:10BB200064206D6F646520646F6573206E6F742090 +:10BB3000696E64696361746520505350002A2A2A33 +:10BB40002A2A2048415244204641554C54202A2A52 +:10BB50002A2A2A00415243485F4558434550542001 +:10BB60007769746820726561736F6E2025780A00AA +:10BB70002A2A2A2A2A20257320256429202A2A2ACB +:10BB80002A2A006765746F707400040C02020002B8 +:10BB9000436C6F636B20636F6E74726F6C206465AF +:10BBA00076696365206E6F742072656164790049FF +:10BBB0006E76616C6964206C696E65206E756D626D +:10BBC000657220257500696E746572727570742DCA +:10BBD000636F6E74726F6C6C6572403430303231EA +:10BBE00038303000657874695F73746D3332004E9D +:10BBF0006F742076616C696420656E64706F696E25 +:10BC0000743A202530327800696E76616C69642060 +:10BC100065702030782530327800636C6F636B205C +:10BC2000636F6E74726F6C20646576696365206EF5 +:10BC30006F7420726561647900436F756C64206E67 +:10BC40006F742073656C6563742055534220646F74 +:10BC50006D61696E20636C6F636B00556E61626C21 +:10BC60006520746F20656E61626C652055534220BB +:10BC7000636C6F636B004661696C656420746F2050 +:10BC80006765742055534220646F6D61696E20634F +:10BC90006C6F636B20726174650055534220436C76 +:10BCA0006F636B206973206E6F742034384D487A4F +:10BCB0002028256429005553422070696E637472F0 +:10BCC0006C207365747570206661696C65642028EA +:10BCD000256429005043445F496E69742066616998 +:10BCE0006C65642C202564005043445F53746F706E +:10BCF000206661696C65642C202564005043445FB4 +:10BD00005374617274206661696C65642C202564CB +:10BD10000048414C5F5043445F5365744164647212 +:10BD2000657373206661696C6564283078253032EC +:10BD300078292C2025640048414C5F5043445F45DE +:10BD4000505F52656365697665206661696C6564FC +:10BD500028307825303278292C20256400696E76C9 +:10BD6000616C696420656E64706F696E7420636FC6 +:10BD70006E66696775726174696F6E00656E647076 +:10BD80006F696E7420696E6465782F616464726592 +:10BD90007373206F7574206F662072616E67650023 +:10BDA00048414C5F5043445F45505F536574537442 +:10BDB000616C6C206661696C65642830782530326E +:10BDC00078292C2025640048414C5F5043445F454E +:10BDD000505F436C725374616C6C206661696C6572 +:10BDE0006428307825303278292C20256400484199 +:10BDF0004C5F5043445F45505F4F70656E206661F5 +:10BE0000696C656428307825303278292C202564C7 +:10BE10000048414C5F5043445F45505F436C6F7333 +:10BE200065206661696C6564283078253032782930 +:10BE30002C20256400556E61626C6520746F20674C +:10BE40006574207772697465206C6F636B20282598 +:10BE500064290048414C5F5043445F45505F547231 +:10BE6000616E736D6974206661696C6564283078F1 +:10BE700025303278292C20256400496E76616C6962 +:10BE80006420456E64706F696E7420257800577267 +:10BE90006F6E6720656E64706F696E74206469727E +:10BEA000656374696F6E3A203078253032780057B8 +:10BEB000726F6E6720617267756D656E7473007561 +:10BEC00073625F64635F73746D33320065787465A9 +:10BED0006E646564007374616E6461726400696E9F +:10BEE00076616C6964206672616D6520776974683B +:10BEF000202573202825642D626974292043414E32 +:10BF000020494420307825302A7800696E76616CAB +:10BF100069642066696C746572207769746820258D +:10BF200073202825642D626974292043414E2049DD +:10BF30004420307825302A782C2043414E20494433 +:10BF4000206D61736B20307825302A780063616E34 +:10BF50005F636F6D6D6F6E006661696C6564207400 +:10BF60006F207265616420726567203078253033F8 +:10BF700078202865727220256429006661696C65E5 +:10BF80006420746F20777269746520726567203051 +:10BF90007825303378202865727220256429006660 +:10BFA00061696C656420746F2072656164205278E9 +:10BFB000204649464F206865616465722028657295 +:10BFC0007220256429006661696C656420746F20A5 +:10BFD00072656164205278204649464F206461743E +:10BFE00061202865727220256429004672616D65A2 +:10BFF00020697320746F6F20626967006661696CE5 +:10C00000656420746F20656E61626C652043414EEB +:10C01000207472616E73636569766572202865723B +:10C020007220256429006661696C656420746F2044 +:10C030006C6561766520696E6974206D6F6465203A +:10C04000286572722025642900756E737570706F93 +:10C0500072746564206D6F64653A203078253038DD +:10C0600078004D657373616765206C6F7374206F22 +:10C070006E204649464F30004D65737361676520F9 +:10C080006C6F7374206F6E204649464F31006661B5 +:10C09000696C656420746F20726561642074782017 +:10C0A0006576656E74206669666F202865727220F9 +:10C0B000256429005458204649464F20656C656D1B +:10C0C000656E74206C6F73740041636365737320D5 +:10C0D000746F207265736572766564206164647242 +:10C0E000657373004D6573736167652052414D2020 +:10C0F000616363657373206661696C757265007551 +:10C100006E737570706F727465642043414E206663 +:10C1100072616D6520666C616773203078253032FE +:10C12000780043414E20464420666F726D61742052 +:10C130006E6F7420737570706F7274656420696EB1 +:10C14000206E6F6E2D4644206D6F646500646174CF +:10C1500061206C656E6774682028257A7529203EF9 +:10C16000206D6178206672616D6520646174612064 +:10C170006C656E6774682028257A752900444C43E5 +:10C18000206F6620256420666F722043414E204652 +:10C190004420666F726D6174206672616D65004443 +:10C1A0004C43206F6620256420666F72206E6F6E90 +:10C1B0002D464420666F726D6174206672616D65F4 +:10C1C000006661696C656420746F207772697465BC +:10C1D00020547820427566666572206865616465E2 +:10C1E00072202865727220256429006661696C6579 +:10C1F0006420746F207772697465205478204275CA +:10C2000066666572206461746120286572722025FB +:10C210006429006661696C656420746F20777269B7 +:10C220007465207374642066696C74657220656C33 +:10C23000656D656E74202865727220256429004E34 +:10C240006F2066726565207374616E64617264202C +:10C2500069642066696C746572206C65667400752B +:10C260006E737570706F727465642043414E206602 +:10C27000696C74657220666C616773203078253054 +:10C280003278004E6F206672656520657874656E41 +:10C290006465642069642066696C746572206C65ED +:10C2A00066740066696C74657220494420256420B8 +:10C2B0006F7574206F6620626F756E6473006661BF +:10C2C000696C656420746F20636C656172206578A9 +:10C2D000742066696C74657220656C656D656E743A +:10C2E000202865727220256429006661696C656486 +:10C2F00020746F20636C65617220737464206669BA +:10C300006C74657220656C656D656E74202865724D +:10C310007220256429004661696C656420746F2071 +:10C32000656E74657220696E6974206D6F64650056 +:10C330006661696C656420746F2064697361626C06 +:10C34000652043414E207472616E73636569766542 +:10C3500072202865727220256429004661696C6527 +:10C360006420746F206578697420736C6565702033 +:10C370006D6F64650043414E207472616E73636536 +:10C3800069766572206E6F7420726561647900430E +:10C39000616E27742066696E642074696D696E67CA +:10C3A00020666F7220676976656E20706172616DBC +:10C3B0000043616E27742066696E642074696D693C +:10C3C0006E6720666F7220676976656E206461749F +:10C3D00061706861736520706172616D006661698A +:10C3E0006C656420746F207365742074696D696E68 +:10C3F00067202865727220256429006661696C6572 +:10C400006420746F207365742064617461207068A7 +:10C410006173652074696D696E672028657272208A +:10C42000256429000001020304050607080C101406 +:10C430001820304063616E5F6D63616E0043414E52 +:10C440002070696E6374726C2073657475702066F9 +:10C4500061696C6564202825642900436F756C64EC +:10C46000206E6F742073656C6563742063616E5F0A +:10C4700073746D3332666420646F6D61696E20631E +:10C480006C6F636B00436F756C64206E6F74207407 +:10C4900075726E206F6E2043414E20636C6F636B2C +:10C4A0002028256429004661696C65642063616CFD +:10C4B0006C20636C6F636B5F636F6E74726F6C5F25 +:10C4C0006765745F726174652870636C6B5B315D66 +:10C4D00029004661696C65642063616C6C20636C43 +:10C4E0006F636B5F636F6E74726F6C5F6765745FB1 +:10C4F000726174652870636C6B5B305D29006361E9 +:10C500006E4034303030363830300063616E5F73E7 +:10C51000746D33326664007263634034303032319C +:10C52000303030006770696F403530303031343032 +:10C5300030006770696F4035303030313030300056 +:10C540006770696F4035303030306330300067706D +:10C55000696F403530303030383030006770696F87 +:10C56000403530303030343030006770696F4035DE +:10C57000303030303030300072657365742D636F49 +:10C580006E74726F6C6C6572004661696C656420D4 +:10C5900063616C6C20636C6F636B5F636F6E74724E +:10C5A0006F6C5F6765745F726174652870636C6B34 +:10C5B000656E5B305D2900556E61626C6520746F3D +:10C5C0002073657420257320746F20256400436FE9 +:10C5D000756C64206E6F7420656E61626C652028D6 +:10C5E0004C50295541525420636C6F636B00726547 +:10C5F00073657420636F6E74726F6C6C6572206EFD +:10C600006F7420726561647900257320646F6573AF +:10C61000206E6F7420737570706F7274206472690D +:10C6200076657220656E61626C6500736572696122 +:10C630006C40343030313338303000756172745FA3 +:10C6400073746D33320048616C74696E672073795E +:10C650007374656D00556E6B6E6F776E20657272C8 +:10C660006F7200756E6B6E6F776E003E3E3E205AA5 +:10C67000455048595220464154414C204552524F52 +:10C68000522025643A202573206F6E204350552098 +:10C690002564004661756C7420647572696E67204C +:10C6A000696E746572727570742068616E646C690D +:10C6B0006E670A0043757272656E742074687265E5 +:10C6C00061643A20257020282573290043505520A5 +:10C6D000657863657074696F6E00556E68616E642D +:10C6E0006C656420696E7465727275707400537441 +:10C6F00061636B206F766572666C6F77004B657255 +:10C700006E656C206F6F7073004B65726E656C2088 +:10C7100070616E6963006F7300737973776F726B0A +:10C7200071002A2A2A20426F6F74696E67205A6549 +:10C7300070687972204F53206275696C642076347A +:10C740002E332E30202A2A2A0A00286E756C6C2976 +:0CC75000002A666C6F61742A0000000073 +:10C75C005B9100084F96000878AE000800000000BE +:10C76C0000000000359900080000000000000000E7 +:10C77C00000000002800002000C20100000103009E +:10C78C000024F400C800000038000020380000200D +:10C79C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9D +:10C7AC00000000000000000000000000000000007D +:08C7BC00000000000000000075 +:10C7C4000000000000000000000000000000000065 +:10C7D4000000000000000000000000000000000055 +:10C7E4000000000000000000000000000000000045 +:08C7F40000000000000000003D +:04C7FC000000000039 +:10C800000000000070340020002000000000000044 +:04C810000000000024 +:10C81400B8000020B8000020000000000000000064 +:04C824000E00000002 +:10C82800CC000020CC000020000000000100000027 +:10C838001201000200000040501D6F600304010255 +:10C84800030109020000000100E0320403090408A2 +:10C858000345575300000024034557532067735F6F +:10C868007573622043414E2D4644000000000000CD +:10C8780000000000000000000000002203303132F8 +:10C888003334353637383941424344454600000091 +:0FC8980000000000000000000000000000000091 +:04C8A80015E015E0A2 +:0400000508002F2D93 +:00000001FF diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.map b/firmware/canfd_cdc_composite/build/zephyr/zephyr.map new file mode 100644 index 0000000..37e01f2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr.map @@ -0,0 +1,6519 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(cdc_handler.c.obj) + (--whole-archive) +app/libapp.a(pfet_control.c.obj) + (--whole-archive) +app/libapp.a(gs_usb_can.c.obj) + (--whole-archive) +app/libapp.a(usb_gs_usb_class.c.obj) + (--whole-archive) +zephyr/libzephyr.a(validate_libc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clock.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpsc_pbuf.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitmask.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(last_section_id.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(stm32cube_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_config.c.obj) + (--whole-archive) +zephyr/libzephyr.a(stm32_backup_domain.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_core.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_mgmt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_cache.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_msg.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_backend_uart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_device.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_descriptor.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_transfer.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(init.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(xip.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + (--whole-archive) +zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + (--whole-archive) +zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(main.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) (_kernel) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(msg_q.c.obj) + zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) (z_impl_k_msgq_put) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_sys_work_q) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(mpsc_pbuf.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_thread_timeout) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(sched.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/libzephyr.a(log_core.c.obj) (k_timer_init) +zephyr/kernel/libkernel.a(atomic_c.c.obj) + zephyr/libzephyr.a(stm32_backup_domain.c.obj) (z_impl_atomic_cas) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/kernel/libkernel.a(msg_q.c.obj) (k_free) +zephyr/kernel/libkernel.a(banner.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (boot_banner) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_free) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + zephyr/libzephyr.a(log_mgmt.c.obj) (strcmp) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + app/libapp.a(cdc_handler.c.obj) (strcpy) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + app/libapp.a(gs_usb_can.c.obj) (memcpy) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + app/libapp.a(gs_usb_can.c.obj) (memset) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + app/libapp.a(cdc_handler.c.obj) (strlen) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + zephyr/libzephyr.a(timeutil.c.obj) (errno) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) (strchr) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + app/libapp.a(cdc_handler.c.obj) (strncmp) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + app/libapp.a(cdc_handler.c.obj) (snprintf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) (getc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) (__atomic_compare_exchange_ungetc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) (__atomic_exchange_ungetc) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (__gnu_thumb1_case_sqi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + app/libapp.a(gs_usb_can.c.obj) (__gnu_thumb1_case_uqi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (__gnu_thumb1_case_shi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + zephyr/libzephyr.a(heap.c.obj) (__aeabi_uidiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + zephyr/libzephyr.a(dec.c.obj) (__aeabi_idiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) (__aeabi_idiv0) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_fcmpeq) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + zephyr/libzephyr.a(heap.c.obj) (__clzsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + zephyr/libzephyr.a(heap.c.obj) (__ctzsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ldivmod) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + app/libapp.a(gs_usb_can.c.obj) (__aeabi_uldivmod) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + zephyr/libzephyr.a(clock.c.obj) (__aeabi_lmul) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__ffssi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2lz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_l2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ul2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) (__gnu_ldivmod_helper) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__eqsf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__gesf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__lesf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) (__aeabi_dadd) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ddiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dmul) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dsub) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) (__aeabi_i2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ui2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_f2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2f) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) (__gnu_thumb1_case_uhi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__aeabi_llsr) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__aeabi_llsl) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) (__aeabi_dcmplt) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__clzdi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) (__aeabi_d2uiz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) (__divdi3) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__eqdf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__gedf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__ledf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) (__aeabi_d2iz) + +Discarded input sections + + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_line 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_str 0x0000000000000000 0x225 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .comment 0x0000000000000000 0x21 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .text 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_handle_control_request.str1.1 + 0x0000000000000000 0x6e app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_handle_control_request + 0x0000000000000000 0xf8 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_can_send_frame + 0x0000000000000000 0x6 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_process_host_frame.str1.1 + 0x0000000000000000 0x19 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_process_host_frame + 0x0000000000000000 0x10c app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.0 + 0x0000000000000000 0x1a app/libapp.a(gs_usb_can.c.obj) + .bss.response_buf.1 + 0x0000000000000000 0x40 app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.2 + 0x0000000000000000 0x1e app/libapp.a(gs_usb_can.c.obj) + .bss.echo_id_counter + 0x0000000000000000 0x4 app/libapp.a(gs_usb_can.c.obj) + .bss.current_state + 0x0000000000000000 0xc app/libapp.a(gs_usb_can.c.obj) + .bss.current_mode + 0x0000000000000000 0x8 app/libapp.a(gs_usb_can.c.obj) + .data.bt_const + 0x0000000000000000 0x28 app/libapp.a(gs_usb_can.c.obj) + .data.device_config + 0x0000000000000000 0xc app/libapp.a(gs_usb_can.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_info 0x0000000000000000 0xbf zephyr/libzephyr.a(validate_libc.c.obj) + .debug_abbrev 0x0000000000000000 0x5f zephyr/libzephyr.a(validate_libc.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_line 0x0000000000000000 0x17b zephyr/libzephyr.a(validate_libc.c.obj) + .debug_str 0x0000000000000000 0x2ec zephyr/libzephyr.a(validate_libc.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(validate_libc.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove_bidx + 0x0000000000000000 0x36 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove + 0x0000000000000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .text.alloc_chunk + 0x0000000000000000 0x7e zephyr/libzephyr.a(heap.c.obj) + .text.merge_chunks + 0x0000000000000000 0x30 zephyr/libzephyr.a(heap.c.obj) + .text.split_chunks + 0x0000000000000000 0x34 zephyr/libzephyr.a(heap.c.obj) + .text.free_chunk + 0x0000000000000000 0x60 zephyr/libzephyr.a(heap.c.obj) + .text.inplace_realloc.isra.0 + 0x0000000000000000 0xd8 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_free + 0x0000000000000000 0x20 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x0000000000000000 0x20 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_alloc + 0x0000000000000000 0x5e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_noalign_alloc + 0x0000000000000000 0xa zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_alloc + 0x0000000000000000 0xd6 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_realloc + 0x0000000000000000 0x5e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x0000000000000000 0x74 zephyr/libzephyr.a(heap.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x0000000000000000 0x1c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_compare + 0x0000000000000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_add + 0x0000000000000000 0x68 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_from_clockid + 0x0000000000000000 0xa zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_getrtoffset + 0x0000000000000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_gettime + 0x0000000000000000 0x70 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_settime + 0x0000000000000000 0x70 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_nanosleep + 0x0000000000000000 0x1f8 zephyr/libzephyr.a(clock.c.obj) + .bss.rt_clock_offset + 0x0000000000000000 0x10 zephyr/libzephyr.a(clock.c.obj) + .rodata 0x0000000000000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .debug_info 0x0000000000000000 0xffe zephyr/libzephyr.a(clock.c.obj) + .debug_abbrev 0x0000000000000000 0x461 zephyr/libzephyr.a(clock.c.obj) + .debug_loc 0x0000000000000000 0xa4f zephyr/libzephyr.a(clock.c.obj) + .debug_aranges + 0x0000000000000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .debug_ranges 0x0000000000000000 0x100 zephyr/libzephyr.a(clock.c.obj) + .debug_line 0x0000000000000000 0xafd zephyr/libzephyr.a(clock.c.obj) + .debug_str 0x0000000000000000 0x8e3 zephyr/libzephyr.a(clock.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(clock.c.obj) + .debug_frame 0x0000000000000000 0xdc zephyr/libzephyr.a(clock.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x0000000000000000 0xc zephyr/libzephyr.a(printk.c.obj) + .text.vprintk 0x0000000000000000 0x8 zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x0000000000000000 0x1c zephyr/libzephyr.a(printk.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x0000000000000000 0xa zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x0000000000000000 0xa zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x0000000000000000 0x18 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x0000000000000000 0x523 zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x0000000000000000 0x254 zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x0000000000000000 0x20d zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x0000000000000000 0x80 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x0000000000000000 0x3df zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x0000000000000000 0x448 zephyr/libzephyr.a(sem.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x0000000000000000 0x9a zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.outs 0x0000000000000000 0x2c zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.1 + 0x0000000000000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x0000000000000000 0x72c zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x0000000000000000 0x10d0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x0000000000000000 0x414 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x0000000000000000 0x1513 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x0000000000000000 0x218 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x0000000000000000 0xdd3 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x0000000000000000 0x712 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x0000000000000000 0x74 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text.assert_post_action + 0x0000000000000000 0xe zephyr/libzephyr.a(assert.c.obj) + .text.assert_print + 0x0000000000000000 0x16 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x0000000000000000 0x250 zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0x1c4 zephyr/libzephyr.a(assert.c.obj) + .debug_loc 0x0000000000000000 0x3b zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x0000000000000000 0x389 zephyr/libzephyr.a(assert.c.obj) + .debug_str 0x0000000000000000 0x3e5 zephyr/libzephyr.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x40 zephyr/libzephyr.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word + 0x0000000000000000 0xb8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word_ext + 0x0000000000000000 0xf8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_data + 0x0000000000000000 0xec zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_utilization + 0x0000000000000000 0x26 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_max_utilization + 0x0000000000000000 0x26 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x0000000000000000 0x78 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x0000000000000000 0x16a zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x0000000000000000 0xb4 zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x0000000000000000 0x138 zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x0000000000000000 0x1bb zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x0000000000000000 0x319 zephyr/libzephyr.a(dec.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x0000000000000000 0x34 zephyr/libzephyr.a(dec.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x0000000000000000 0x30 zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x0000000000000000 0x1c zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x0000000000000000 0x42 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x0000000000000000 0x74 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x0000000000000000 0x2a3 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x0000000000000000 0x117 zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x0000000000000000 0x2fd zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x0000000000000000 0x40 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x0000000000000000 0x329 zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x0000000000000000 0x301 zephyr/libzephyr.a(hex.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x0000000000000000 0x74 zephyr/libzephyr.a(hex.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x0000000000000000 0x3a zephyr/libzephyr.a(rb.c.obj) + .text.stack_left_limb + 0x0000000000000000 0x3a zephyr/libzephyr.a(rb.c.obj) + .text.set_child + 0x0000000000000000 0x14 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x0000000000000000 0xa4 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x0000000000000000 0x1e zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x0000000000000000 0x14c zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x0000000000000000 0x348 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x0000000000000000 0x26 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x0000000000000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x0000000000000000 0x8 zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x0000000000000000 0x32 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x0000000000000000 0x52 zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x0000000000000000 0x24ec zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x0000000000000000 0x4c9 zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x0000000000000000 0x297e zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x0000000000000000 0x78 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x0000000000000000 0x660 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x0000000000000000 0x14fa zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x0000000000000000 0x504 zephyr/libzephyr.a(rb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x0000000000000000 0x148 zephyr/libzephyr.a(rb.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x0000000000000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x0000000000000000 0x66 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x0000000000000000 0x3e zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x0000000000000000 0x9e zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x0000000000000000 0xb0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x0000000000000000 0xa2 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x0000000000000000 0x34 zephyr/libzephyr.a(timeutil.c.obj) + .text.timespec_normalize + 0x0000000000000000 0xa0 zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x0000000000000000 0xa41 zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x0000000000000000 0x220 zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x0000000000000000 0x8e8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x0000000000000000 0x60 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x0000000000000000 0xb8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x0000000000000000 0x725 zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x0000000000000000 0x63b zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.setup_bundle_data.constprop.0 + 0x0000000000000000 0x38 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x0000000000000000 0x8e zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x0000000000000000 0x40 zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x0000000000000000 0x92 zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x0000000000000000 0x44 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x0000000000000000 0x98 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x0000000000000000 0xb2 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x0000000000000000 0x46 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x0000000000000000 0x46 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x0000000000000000 0xc4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x0000000000000000 0xc6 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x0000000000000000 0x86 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x0000000000000000 0x6e zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x0000000000000000 0x22d7 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x0000000000000000 0x4e5 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x0000000000000000 0x1f3f zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x0000000000000000 0xb8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x0000000000000000 0x2e8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x0000000000000000 0x18ac zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x0000000000000000 0x703 zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x0000000000000000 0x250 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .text.bitmask_find_gap + 0x0000000000000000 0x7e zephyr/libzephyr.a(bitmask.c.obj) + .debug_info 0x0000000000000000 0x218 zephyr/libzephyr.a(bitmask.c.obj) + .debug_abbrev 0x0000000000000000 0x10e zephyr/libzephyr.a(bitmask.c.obj) + .debug_loc 0x0000000000000000 0x2b2 zephyr/libzephyr.a(bitmask.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .debug_ranges 0x0000000000000000 0x40 zephyr/libzephyr.a(bitmask.c.obj) + .debug_line 0x0000000000000000 0x2e8 zephyr/libzephyr.a(bitmask.c.obj) + .debug_str 0x0000000000000000 0x34d zephyr/libzephyr.a(bitmask.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitmask.c.obj) + .debug_frame 0x0000000000000000 0x34 zephyr/libzephyr.a(bitmask.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_claim + 0x0000000000000000 0x30 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x0000000000000000 0x20 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get_claim + 0x0000000000000000 0x1e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_finish + 0x0000000000000000 0x32 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put + 0x0000000000000000 0x40 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get + 0x0000000000000000 0x42 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x0000000000000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x0000000000000000 0x74 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x0000000000000000 0x96 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x0000000000000000 0xcfd zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x0000000000000000 0x2ad zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x0000000000000000 0xb5e zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x0000000000000000 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x0000000000000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x0000000000000000 0x74e zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_str 0x0000000000000000 0x514 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x0000000000000000 0x118 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text.HAL_GetTick + 0x0000000000000000 0x10 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text.HAL_Delay + 0x0000000000000000 0x1c zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_info 0x0000000000000000 0x2d8 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x1cf zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_loc 0x0000000000000000 0x38 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_ranges 0x0000000000000000 0xa8 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_line 0x0000000000000000 0x34a zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_str 0x0000000000000000 0x403 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_frame 0x0000000000000000 0x44 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text.stm32_backup_domain_enable_access + 0x0000000000000000 0x3c zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .rodata.stm32_backup_domain_disable_access.str1.1 + 0x0000000000000000 0x29 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text.stm32_backup_domain_disable_access + 0x0000000000000000 0x60 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss.__warned.0 + 0x0000000000000000 0x4 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss.refcount 0x0000000000000000 0x4 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_table_size + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_timestamp + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_set_all_active_backends + 0x0000000000000000 0x4c zephyr/libzephyr.a(log_core.c.obj) + .text.log_init + 0x0000000000000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_trigger + 0x0000000000000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_set + 0x0000000000000000 0x2 zephyr/libzephyr.a(log_core.c.obj) + .rodata.unordered_notify.str1.1 + 0x0000000000000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.unordered_notify + 0x0000000000000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.z_impl_log_buffered_cnt + 0x0000000000000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_dropped_pending + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim_oldest + 0x0000000000000000 0x74 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_enqueue + 0x0000000000000000 0x6c zephyr/libzephyr.a(log_core.c.obj) + .text.log_set_tag + 0x0000000000000000 0x6 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_usage + 0x0000000000000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_max_usage + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_core.c.obj) + .text.log_flush + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_core.c.obj) + .bss.unordered_cnt + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.prev_timestamp + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.domain_id_cmp + 0x0000000000000000 0xa zephyr/libzephyr.a(log_mgmt.c.obj) + .text.source_id_cmp + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_get_dynamic_filter + 0x0000000000000000 0x44 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_ext_domain_count + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_src_cnt_get + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.log_domain_name_get.str1.1 + 0x0000000000000000 0x1 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_domain_name_get + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_compiled_level_get + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_set_runtime_level + 0x0000000000000000 0x40 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_runtime_filters_init + 0x0000000000000000 0x34 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_source_id_get + 0x0000000000000000 0x38 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_frontend_filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_get_by_name + 0x0000000000000000 0x2c zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_disable + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_filter_get + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_frontend_filter_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_links_initiate + 0x0000000000000000 0x50 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.sname_cache_config.0 + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.dname_cache_config.1 + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache_buffer + 0x0000000000000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache_buffer + 0x0000000000000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_init + 0x0000000000000000 0x5e zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_get + 0x0000000000000000 0xaa zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_put + 0x0000000000000000 0x12 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_release + 0x0000000000000000 0x12 zephyr/libzephyr.a(log_cache.c.obj) + .debug_info 0x0000000000000000 0x1100 zephyr/libzephyr.a(log_cache.c.obj) + .debug_abbrev 0x0000000000000000 0x2b4 zephyr/libzephyr.a(log_cache.c.obj) + .debug_loc 0x0000000000000000 0xbb9 zephyr/libzephyr.a(log_cache.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(log_cache.c.obj) + .debug_ranges 0x0000000000000000 0x240 zephyr/libzephyr.a(log_cache.c.obj) + .debug_line 0x0000000000000000 0x834 zephyr/libzephyr.a(log_cache.c.obj) + .debug_str 0x0000000000000000 0x55c zephyr/libzephyr.a(log_cache.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(log_cache.c.obj) + .debug_frame 0x0000000000000000 0x78 zephyr/libzephyr.a(log_cache.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_timestamp_to_us + 0x0000000000000000 0x30 zephyr/libzephyr.a(log_output.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle_exit + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x0000000000000000 0xff zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x0000000000000000 0x97 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x0000000000000000 0x1d6 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x0000000000000000 0x35b zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/libzephyr.a(tracing_none.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_deconfig + 0x0000000000000000 0x20 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_disable + 0x0000000000000000 0x70 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_read + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_set_stall + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_clear_stall + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_wait + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_continue + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_get_remote_wakeup_status + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_wakeup_request + 0x0000000000000000 0x1c zephyr/libzephyr.a(usb_device.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_str_descriptor_idx + 0x0000000000000000 0x28 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_cfg + 0x0000000000000000 0x16 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_iface + 0x0000000000000000 0x1a zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_ep + 0x0000000000000000 0x2a zephyr/libzephyr.a(usb_descriptor.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync_cb + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_is_busy + 0x0000000000000000 0x16 zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.usb_transfer_ep_callback.str1.1 + 0x0000000000000000 0x1a zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_ep_callback + 0x0000000000000000 0x64 zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.usb_transfer.str1.1 + 0x0000000000000000 0x44 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer + 0x0000000000000000 0x104 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync + 0x0000000000000000 0x44 zephyr/libzephyr.a(usb_transfer.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text.z_get_sw_isr_table_idx + 0x0000000000000000 0x2 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x0000000000000000 0x100 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x0000000000000000 0xa4 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x0000000000000000 0x15 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0000000000000000 0x19d zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0000000000000000 0x310 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_save_fp_context + 0x0000000000000000 0x2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_restore_fp_context + 0x0000000000000000 0x2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_info 0x0000000000000000 0x18c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_abbrev 0x0000000000000000 0xde zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_line 0x0000000000000000 0x1f3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_str 0x0000000000000000 0x371 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_save_scb_context + 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_restore_scb_context + 0x0000000000000000 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_info 0x0000000000000000 0x36c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_abbrev 0x0000000000000000 0x1b3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_loc 0x0000000000000000 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_line 0x0000000000000000 0x3bd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_str 0x0000000000000000 0x3c7 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_frame 0x0000000000000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text.arm_irq_is_enabled + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text.arch_irq_lock_outlined + 0x0000000000000000 0x8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text.arch_cpu_atomic_idle + 0x0000000000000000 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text.__assert_no_args + 0x0000000000000000 0x6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x0000000000000000 0xeb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0xa1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0000000000000000 0x1e7 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0000000000000000 0x30e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.1 + 0x0000000000000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x0000000000000000 0x1c4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x0000000000000000 0x15f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_loc 0x0000000000000000 0x16 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x0000000000000000 0x302 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x0000000000000000 0x3b5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x0000000000000000 0xbf zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x0000000000000000 0x5f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x0000000000000000 0x181 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x0000000000000000 0x2fb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.1 + 0x0000000000000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x0000000000000000 0x110 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x0000000000000000 0xbb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x0000000000000000 0x1b9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x0000000000000000 0x316 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x0000000000000000 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x0000000000000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x0000000000000000 0xa3a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x0000000000000000 0x2f8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x0000000000000000 0x203 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x0000000000000000 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x0000000000000000 0xf0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x0000000000000000 0x63e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x0000000000000000 0x927 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x0000000000000000 0x100 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.abort.str1.1 + 0x0000000000000000 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text.abort 0x0000000000000000 0x18 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x0000000000000000 0x1c4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0000000000000000 0x15f zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_loc 0x0000000000000000 0x16 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0000000000000000 0x35a zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0000000000000000 0x3c4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text.time 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_info 0x0000000000000000 0x14f zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_abbrev 0x0000000000000000 0xff zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_loc 0x0000000000000000 0x61 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_line 0x0000000000000000 0x202 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_str 0x0000000000000000 0x32e zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_unlock + 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x0000000000000000 0x38 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x0000000000000000 0x38 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x0000000000000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x0000000000000000 0x64 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x0000000000000000 0x54 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.foldcase + 0x0000000000000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatchx + 0x0000000000000000 0x28a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatch 0x0000000000000000 0xa zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_info 0x0000000000000000 0x510 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_abbrev 0x0000000000000000 0x20b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_loc 0x0000000000000000 0x56b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_ranges 0x0000000000000000 0x70 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_line 0x0000000000000000 0x522 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_str 0x0000000000000000 0x33f zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_frame 0x0000000000000000 0x58 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text.getentropy + 0x0000000000000000 0x1c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_info 0x0000000000000000 0x253 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_abbrev 0x0000000000000000 0x148 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_line 0x0000000000000000 0x261 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_str 0x0000000000000000 0x3a2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .rodata.getopt_init.str1.1 + 0x0000000000000000 0x1 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text.getopt_init + 0x0000000000000000 0x48 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text.getopt 0x0000000000000000 0xfc zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text.z_getopt_global_state_update + 0x0000000000000000 0x34 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text.getopt_state_get + 0x0000000000000000 0x8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x1 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.m_getopt_common_state + 0x0000000000000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optarg 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optreset 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optopt 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.optind 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.opterr 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_info 0x0000000000000000 0x2b3 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_abbrev 0x0000000000000000 0x13b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_line 0x0000000000000000 0x24b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_str 0x0000000000000000 0x596 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_falling_trig.part.0 + 0x0000000000000000 0x1c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_rising_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_rising_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_falling_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_event + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_it + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_it + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_event + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_falling_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_sw_interrupt + 0x0000000000000000 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.stm32_exti_enable.str1.1 + 0x0000000000000000 0x37 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable + 0x0000000000000000 0xe0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable + 0x0000000000000000 0x4c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_halt + 0x0000000000000000 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_flush.str1.1 + 0x0000000000000000 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_flush + 0x0000000000000000 0x24 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_wakeup_request + 0x0000000000000000 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_detach.str1.1 + 0x0000000000000000 0x32 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_detach + 0x0000000000000000 0x64 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_reset + 0x0000000000000000 0x18 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_ConnectCallback + 0x0000000000000000 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_DisconnectCallback + 0x0000000000000000 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_ISOINIncompleteCallback + 0x0000000000000000 0x12 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_tx_default_cb + 0x0000000000000000 0xc zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_msgq_put.part.0.isra.0.str1.1 + 0x0000000000000000 0x23 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_msgq_put.part.0.isra.0 + 0x0000000000000000 0x30 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_msgq_put + 0x0000000000000000 0x1e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_send + 0x0000000000000000 0xd4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_add_rx_filter_msgq + 0x0000000000000000 0x18 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_bitrate + 0x0000000000000000 0x74 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_bitrate_data + 0x0000000000000000 0x74 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_configure_mram + 0x0000000000000000 0x13c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x0000000000000000 0x2 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_eui64 + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_info 0x0000000000000000 0x1d7 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_abbrev 0x0000000000000000 0x122 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_line 0x0000000000000000 0x273 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_str 0x0000000000000000 0x3e0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x58 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x20 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x0000000000000000 0x2 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x2 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x0000000000000000 0x120 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x0000000000000000 0xa8 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x0000000000000000 0x1a5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x0000000000000000 0x339 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_cycle_get_64 + 0x0000000000000000 0x2c zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_disable + 0x0000000000000000 0x10 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text.SystemInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text.SystemCoreClockUpdate + 0x0000000000000000 0x8c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .rodata.APBPrescTable + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_MspInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_MspDeInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DeInit + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_InitTick + 0x0000000000000000 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_Init + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_IncTick + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTick + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTickPrio + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SetTickFreq + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTickFreq + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_Delay + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SuspendTick + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_ResumeTick + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetHalVersion + 0x0000000000000000 0x8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetREVID + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetDEVID + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw0 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw1 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw2 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_EnableDBGStopMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_DisableDBGStopMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_VoltageScalingConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_HighImpedanceConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_TrimmingConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableVREFBUF + 0x0000000000000000 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableVREFBUF + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableIOAnalogSwitchBooster + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableIOAnalogSwitchBooster + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableRemap + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableRemap + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableClampingDiode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableClampingDiode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_StrobeDBattpinsConfig + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data.uwTickFreq + 0x0000000000000000 0x1 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data.uwTickPrio + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .bss.uwTick 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_info 0x0000000000000000 0xc4e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x308 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_loc 0x0000000000000000 0x1f9 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x130 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_ranges 0x0000000000000000 0x120 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_line 0x0000000000000000 0x823 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_str 0x0000000000000000 0xbaa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_frame 0x0000000000000000 0x280 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_DeInit + 0x0000000000000000 0xb4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_OscConfig + 0x0000000000000000 0x4b0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_MCOConfig + 0x0000000000000000 0x68 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_ClockConfig + 0x0000000000000000 0x15c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetHCLKFreq + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetPCLK1Freq + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetOscConfig + 0x0000000000000000 0xa0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetClockConfig + 0x0000000000000000 0x34 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_EnableCSS + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_EnableLSECSS + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_DisableLSECSS + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_CSSCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_LSECSSCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_NMI_IRQHandler + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetResetSource + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_PeriphCLKConfig + 0x0000000000000000 0x2d0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x0000000000000000 0xa8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x0000000000000000 0x534 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_EnableLSCO + 0x0000000000000000 0x98 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_DisableLSCO + 0x0000000000000000 0x74 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSConfig + 0x0000000000000000 0x54 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSGetSynchronizationInfo + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSWaitSynchronization + 0x0000000000000000 0x84 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_SyncOkCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_SyncWarnCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_ExpectedSyncCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_ErrorCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_IRQHandler + 0x0000000000000000 0x6c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_info 0x0000000000000000 0xc24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_abbrev 0x0000000000000000 0x2d6 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_loc 0x0000000000000000 0x8e8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_aranges + 0x0000000000000000 0x88 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_ranges 0x0000000000000000 0xe0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_line 0x0000000000000000 0x106a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_str 0x0000000000000000 0xa16 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_frame 0x0000000000000000 0x154 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_MspDeInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DeInit + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DataOutStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DataInStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_SetupStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ResetCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_SuspendCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ResumeCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ISOOUTIncompleteCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ISOINIncompleteCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ConnectCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DisconnectCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DevConnect + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DevDisconnect + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_EP_Abort + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_EP_Flush + 0x0000000000000000 0x34 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ActivateRemoteWakeup + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DeActivateRemoteWakeup + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_GetState + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_ActivateBCD + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_DeActivateBCD + 0x0000000000000000 0x16 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_DeActivateLPM + 0x0000000000000000 0x1e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_BCD_Callback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_BCD_VBUSDetect + 0x0000000000000000 0x90 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_CoreInit + 0x0000000000000000 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_SetCurrentMode + 0x0000000000000000 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_FlushTxFifo + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_FlushRxFifo + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_EPStopXfer + 0x0000000000000000 0x64 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_StopDevice + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_ActivateRemoteWakeup + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_DeActivateRemoteWakeup + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HostInit + 0x0000000000000000 0x3c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_ResetPort + 0x0000000000000000 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_GetHostSpeed + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_GetCurrentFrame + 0x0000000000000000 0x8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_DoubleBuffer + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_Init + 0x0000000000000000 0x78 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_StartXfer + 0x0000000000000000 0x2cc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_IN_Halt + 0x0000000000000000 0x1c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_OUT_Halt + 0x0000000000000000 0x1c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_StopHost + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_Init1msTick + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_mDelay + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_SetSystemCoreClock + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.UTILS_EnablePLLAndSwitchSystem + 0x0000000000000000 0xa8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_PLL_ConfigSystemClock_HSI + 0x0000000000000000 0x80 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_PLL_ConfigSystemClock_HSE + 0x0000000000000000 0x90 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_state_init + 0x0000000000000000 0x2 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_init + 0x0000000000000000 0x16 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_deinit + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x0000000000000000 0x64 zephyr/kernel/libkernel.a(init.c.obj) + .data.state.1 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.unpend_thread_no_timeout + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.put_msg_in_queue + 0x0000000000000000 0xcc zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.k_msgq_init + 0x0000000000000000 0x1e zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_alloc_init + 0x0000000000000000 0x68 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.k_msgq_cleanup + 0x0000000000000000 0x2c zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_put + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_put_front + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_get_attrs + 0x0000000000000000 0xe zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_get + 0x0000000000000000 0xb8 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_peek + 0x0000000000000000 0x2e zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_peek_at + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_purge + 0x0000000000000000 0x80 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_info 0x0000000000000000 0x1cc0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_abbrev 0x0000000000000000 0x539 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_loc 0x0000000000000000 0x1025 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_aranges + 0x0000000000000000 0x78 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_ranges 0x0000000000000000 0x2e0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_line 0x0000000000000000 0x11be zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_str 0x0000000000000000 0x9ad zephyr/kernel/libkernel.a(msg_q.c.obj) + .comment 0x0000000000000000 0x21 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_frame 0x0000000000000000 0x148 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x0000000000000000 0x68 zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x0000000000000000 0x2 zephyr/kernel/libkernel.a(work.c.obj) + .text.unschedule_locked + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x0000000000000000 0x64 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_sync_locked + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x0000000000000000 0x74 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_submit + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x0000000000000000 0x56 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_run + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x0000000000000000 0x70 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x0000000000000000 0x86 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init_delayable + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule_for_queue + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x0000000000000000 0x5c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x0000000000000000 0x5e zephyr/kernel/libkernel.a(work.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.1 + 0x0000000000000000 0x3 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x0000000000000000 0x84 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x0000000000000000 0xe zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x41 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string.0 + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_move_thread_to_end_of_prio_q + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x0000000000000000 0xe0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x0000000000000000 0x28 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_thread + 0x0000000000000000 0x12 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_all + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x0000000000000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x0000000000000000 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x0000000000000000 0x3a zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x0000000000000000 0x38 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.timeout_rem + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x0000000000000000 0x36 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_calc + 0x0000000000000000 0x42 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_timeout + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x0000000000000000 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.lock 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_cas + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_ptr_cas + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.atomic_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.atomic_ptr_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_ptr_set + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_or + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_xor + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_and + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_nand + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_alloc_helper + 0x0000000000000000 0x32 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_alloc_helper + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_free 0x0000000000000000 0x12 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_aligned_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_malloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_calloc + 0x0000000000000000 0x56 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_realloc + 0x0000000000000000 0x42 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_aligned_alloc + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_malloc + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.z_heap_alloc_helper + 0x0000000000000000 0x6e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_array_get + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x0000000000000000 0x5a zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x0000000000000000 0x6e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_free + 0x0000000000000000 0x32 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x0000000000000000 0x14 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .tbss.errno 0x0000000000000000 0x4 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .text.strchr 0x0000000000000000 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x0000000000000000 0x40 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x0000000000000000 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x0000000000000000 0x14 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_ungetc + 0x0000000000000000 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x0000000000000000 0x2a c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x0000000000000000 0x2a c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x0000000000000000 0xc c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x0000000000000000 0x394 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x0000000000000000 0x94 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x0000000000000000 0x42 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x0000000000000000 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x0000000000000000 0x32 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x0000000000000000 0x2c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .text.__picolibc_non_atomic_compare_exchange_ungetc + 0x0000000000000000 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .debug_frame 0x0000000000000000 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .text.__picolibc_non_atomic_exchange_ungetc + 0x0000000000000000 0x8 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .text 0x0000000000000000 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .text 0x0000000000000000 0x74 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .text 0x0000000000000000 0x48 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .text 0x0000000000000000 0x44 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .text 0x0000000000000000 0xe c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .debug_frame 0x0000000000000000 0x28 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .text 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x38 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x3c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .text 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .text 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .ARM.extab 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .text 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .text 0x0000000000000000 0x4e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .text 0x0000000000000000 0x9c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .text 0x0000000000000000 0xa0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .text 0x0000000000000000 0x5e0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .text 0x0000000000000000 0x504 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .text 0x0000000000000000 0x454 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .text 0x0000000000000000 0x628 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .text 0x0000000000000000 0x54 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .text 0x0000000000000000 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .debug_frame 0x0000000000000000 0x28 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .text 0x0000000000000000 0x84 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .text 0x0000000000000000 0x118 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .text 0x0000000000000000 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .text 0x0000000000000000 0x7c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .text 0x0000000000000000 0x38 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .text 0x0000000000000000 0x142 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.extab 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.exidx 0x0000000000000000 0x8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x84 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .text 0x0000000000000000 0xec c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .text 0x0000000000000000 0xf0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .text 0x0000000000000000 0x64 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x0000000008000000 0x0000000000080000 xr +RAM 0x0000000020000000 0x0000000000024000 xw +SRAM0 0x0000000020000000 0x0000000000024000 rw +IDT_LIST 0x00000000ffff7fff 0x0000000000008000 xw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + + 0x0000000008008adc vfprintf = __l_vfprintf + 0x0000000000000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/arm/core/libarch__arm__core.a +LOAD zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a +LOAD zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a +LOAD zephyr/drivers/usb/device/libdrivers__usb__device.a +LOAD zephyr/drivers/can/libdrivers__can.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/hwinfo/libdrivers__hwinfo.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/reset/libdrivers__reset.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a +LOAD c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a + 0x0000000000000004 _region_min_align = 0x4 + +.rel.plt 0x0000000008000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + .rel.iplt 0x0000000008000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.plt)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.iplt)) + 0x0000000008000000 __rom_region_start = 0x8000000 + +rom_start 0x0000000008000000 0xbc + 0x0000000008000000 __rom_start_address = . + FILL mask 0x00 + 0x0000000008000000 . = (. + (0x0 - (. - __rom_start_address))) + 0x0000000008000000 . = ALIGN (0x4) + 0x0000000008000000 . = ALIGN (0x100) + 0x0000000008000000 . = ALIGN (0x100) + 0x0000000008000000 _vector_start = . + *(SORT_BY_ALIGNMENT(.exc_vector_table)) + *(SORT_BY_ALIGNMENT(.exc_vector_table.*)) + .exc_vector_table._vector_table_section + 0x0000000008000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + 0x0000000008000000 _vector_table + *(SORT_BY_ALIGNMENT(.vectors)) + 0x00000000080000bc _vector_end = . + 0x0000000008000040 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.irq_vector_table*)) + .gnu.linkonce.irq_vector_table + 0x0000000008000040 0x7c zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x0000000008000040 _irq_vector_table + 0x00000000080000bc _vector_end = . + +text 0x00000000080000bc 0xa8d4 + 0x00000000080000bc __text_region_start = . + *(SORT_BY_ALIGNMENT(.text)) + .text 0x00000000080000bc 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + 0x00000000080000bc __gnu_thumb1_case_sqi + .text 0x00000000080000d0 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + 0x00000000080000d0 __gnu_thumb1_case_uqi + .text 0x00000000080000e4 0x8c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + 0x00000000080000e4 __aeabi_uidiv + 0x00000000080000e4 __udivsi3 + 0x000000000800015c __aeabi_uidivmod + .text 0x0000000008000170 0xa8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + 0x0000000008000170 __divsi3 + 0x0000000008000170 __aeabi_idiv + 0x0000000008000204 __aeabi_idivmod + .text 0x0000000008000218 0x4 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + 0x0000000008000218 __aeabi_idiv0 + 0x0000000008000218 __aeabi_ldiv0 + .text 0x000000000800021c 0x3c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + 0x000000000800021c __clzsi2 + .text 0x0000000008000258 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + 0x0000000008000258 __ctzsi2 + .text 0x0000000008000298 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + 0x0000000008000298 __aeabi_uldivmod + .text 0x00000000080002d8 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + 0x00000000080002d8 __lshrdi3 + 0x00000000080002d8 __aeabi_llsr + .text 0x00000000080002f0 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + 0x00000000080002f0 __aeabi_llsl + 0x00000000080002f0 __ashldi3 + .text 0x0000000008000308 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + 0x0000000008000308 __clzdi2 + .text 0x0000000008000320 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + 0x0000000008000320 strcpy + .text 0x0000000008000330 0xe c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + 0x0000000008000330 strlen + .text 0x000000000800033e 0xde c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + 0x000000000800033e __udivmoddi4 + *(SORT_BY_ALIGNMENT(.text.*)) + .text.main 0x000000000800041c 0xd4 app/libapp.a(main.c.obj) + 0x000000000800041c main + .text.cdc_handler_init + 0x00000000080004f0 0x38 app/libapp.a(cdc_handler.c.obj) + 0x00000000080004f0 cdc_handler_init + .text.cdc_handler_process + 0x0000000008000528 0x158 app/libapp.a(cdc_handler.c.obj) + 0x0000000008000528 cdc_handler_process + .text.gpio_pin_configure_dt.constprop.0 + 0x0000000008000680 0x4c app/libapp.a(pfet_control.c.obj) + .text.pfet_control_init + 0x00000000080006cc 0x84 app/libapp.a(pfet_control.c.obj) + 0x00000000080006cc pfet_control_init + .text.pfet_set_state + 0x0000000008000750 0xa0 app/libapp.a(pfet_control.c.obj) + 0x0000000008000750 pfet_set_state + .text.pfet_get_state + 0x00000000080007f0 0x20 app/libapp.a(pfet_control.c.obj) + 0x00000000080007f0 pfet_get_state + .text.can_rx_callback + 0x0000000008000810 0xb8 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_can_init + 0x00000000080008c8 0x98 app/libapp.a(gs_usb_can.c.obj) + 0x00000000080008c8 gs_usb_can_init + .text.gs_usb_send_frame_to_host + 0x0000000008000960 0x38 app/libapp.a(usb_gs_usb_class.c.obj) + 0x0000000008000960 gs_usb_send_frame_to_host + .text.usb_gs_usb_init + 0x0000000008000998 0x44 app/libapp.a(usb_gs_usb_class.c.obj) + 0x0000000008000998 usb_gs_usb_init + .text.cbvprintf_package + 0x00000000080009dc 0x3b8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x00000000080009dc cbvprintf_package + .text.cbprintf_package_convert + 0x0000000008000d94 0x430 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x0000000008000d94 cbprintf_package_convert + .text.__printk_hook_install + 0x00000000080011c4 0xc zephyr/libzephyr.a(printk.c.obj) + 0x00000000080011c4 __printk_hook_install + .text.z_thread_entry + 0x00000000080011d0 0x30 zephyr/libzephyr.a(thread_entry.c.obj) + 0x00000000080011d0 z_thread_entry + .text.st_stm32_common_config + 0x0000000008001200 0x3c zephyr/libzephyr.a(soc_config.c.obj) + .text.soc_early_init_hook + 0x000000000800123c 0x4c zephyr/libzephyr.a(soc.c.obj) + 0x000000000800123c soc_early_init_hook + .text.activate_foreach_backend + 0x0000000008001288 0x58 zephyr/libzephyr.a(log_core.c.obj) + .text.enable_logger + 0x00000000080012e0 0x5c zephyr/libzephyr.a(log_core.c.obj) + .text.log_process_thread_timer_expiry_fn + 0x000000000800133c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_init + 0x000000000800134c 0x90 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_func_t_get + 0x00000000080013dc 0xc zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080013dc log_format_func_t_get + .text.log_set_timestamp_func + 0x00000000080013e8 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080013e8 log_set_timestamp_func + .text.z_log_notify_backend_enabled + 0x0000000008001408 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001408 z_log_notify_backend_enabled + .text.z_log_dropped + 0x0000000008001428 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001428 z_log_dropped + .text.z_log_dropped_read_and_clear + 0x000000000800145c 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800145c z_log_dropped_read_and_clear + .text.dropped_notify + 0x000000000800146c 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800146c dropped_notify + .text.z_log_msg_init + 0x00000000080014a0 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080014a0 z_log_msg_init + .text.log_core_init + 0x00000000080014c0 0x50 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080014c0 log_core_init + .text.z_log_msg_alloc + 0x0000000008001510 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001510 z_log_msg_alloc + .text.z_log_msg_local_claim + 0x0000000008001528 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001528 z_log_msg_local_claim + .text.z_log_msg_free + 0x0000000008001538 0x14 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001538 z_log_msg_free + .text.z_log_msg_pending + 0x000000000800154c 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800154c z_log_msg_pending + .text.z_impl_log_process + 0x000000000800155c 0x9c zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800155c z_impl_log_process + .text.z_impl_log_panic + 0x00000000080015f8 0x48 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080015f8 z_impl_log_panic + .text.log_process_thread_func + 0x0000000008001640 0xa4 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_post_finalize + 0x00000000080016e4 0x70 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_commit + 0x0000000008001754 0x24 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001754 z_log_msg_commit + .text.log_source_name_get + 0x0000000008001778 0x1c zephyr/libzephyr.a(log_mgmt.c.obj) + 0x0000000008001778 log_source_name_get + .text.z_log_msg_simple_create + 0x0000000008001794 0x70 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_impl_z_log_msg_static_create + 0x0000000008001804 0x130 zephyr/libzephyr.a(log_msg.c.obj) + 0x0000000008001804 z_impl_z_log_msg_static_create + .text.z_log_msg_runtime_vcreate + 0x0000000008001934 0x9c zephyr/libzephyr.a(log_msg.c.obj) + 0x0000000008001934 z_log_msg_runtime_vcreate + .text.log_msg_get_source_id + 0x00000000080019d0 0x1c zephyr/libzephyr.a(log_msg.c.obj) + 0x00000000080019d0 log_msg_get_source_id + .text.print_formatted + 0x00000000080019ec 0x20 zephyr/libzephyr.a(log_output.c.obj) + .text.newline_print + 0x0000000008001a0c 0x20 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_process + 0x0000000008001a2c 0x2cc zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001a2c log_output_process + .text.log_output_dropped_process + 0x0000000008001cf8 0x58 zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001cf8 log_output_dropped_process + .text.log_output_timestamp_freq_set + 0x0000000008001d50 0x34 zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001d50 log_output_timestamp_freq_set + .text.char_out + 0x0000000008001d84 0x24 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.class_handler + 0x0000000008001da8 0x54 zephyr/libzephyr.a(usb_device.c.obj) + .text.custom_handler + 0x0000000008001dfc 0x68 zephyr/libzephyr.a(usb_device.c.obj) + .text.vendor_handler + 0x0000000008001e64 0x38 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_reset_alt_setting + 0x0000000008001e9c 0x14 zephyr/libzephyr.a(usb_device.c.obj) + .text.is_ep_valid.part.0 + 0x0000000008001eb0 0x34 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_halt_endpoint_req + 0x0000000008001ee4 0x7c zephyr/libzephyr.a(usb_device.c.obj) + .text.get_ep_bm_from_addr.part.0 + 0x0000000008001f60 0x1c zephyr/libzephyr.a(usb_device.c.obj) + .text.disable_endpoint + 0x0000000008001f7c 0x54 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_request.constprop.0 + 0x0000000008001fd0 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .text.forward_status_cb + 0x0000000008002000 0xa8 zephyr/libzephyr.a(usb_device.c.obj) + .text.set_endpoint + 0x00000000080020a8 0xd0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_standard_request + 0x0000000008002178 0x330 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_write + 0x00000000080024a8 0x44 zephyr/libzephyr.a(usb_device.c.obj) + 0x00000000080024a8 usb_write + .text.usb_data_to_host + 0x00000000080024ec 0x5c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_control_transfer + 0x0000000008002548 0xf8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_set_config + 0x0000000008002640 0x2c zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000008002640 usb_set_config + .text.usb_enable + 0x000000000800266c 0x16c zephyr/libzephyr.a(usb_device.c.obj) + 0x000000000800266c usb_enable + .text.usb_update_sn_string_descriptor + 0x00000000080027d8 0x74 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x00000000080027d8 usb_update_sn_string_descriptor + .text.usb_get_device_descriptor + 0x000000000800284c 0x264 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000000800284c usb_get_device_descriptor + .text.usb_ep_get_transfer + 0x0000000008002ab0 0x2c zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_work + 0x0000000008002adc 0xf0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_cancel_transfer + 0x0000000008002bcc 0x34 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002bcc usb_cancel_transfer + .text.usb_cancel_transfers + 0x0000000008002c00 0x40 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002c00 usb_cancel_transfers + .text.usb_transfer_init + 0x0000000008002c40 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002c40 usb_transfer_init + .text.arch_bss_zero + 0x0000000008002c70 0x18 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x0000000008002c70 arch_bss_zero + .text.arch_data_copy + 0x0000000008002c88 0x34 zephyr/arch/common/libarch__common.a(xip.c.obj) + 0x0000000008002c88 arch_data_copy + .text.z_arm_fatal_error + 0x0000000008002cbc 0xb8 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000008002cbc z_arm_fatal_error + .text.z_SysNmiOnReset + 0x0000000008002d74 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x0000000008002d74 z_SysNmiOnReset + .text.arch_tls_stack_setup + 0x0000000008002d78 0x38 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000008002d78 arch_tls_stack_setup + .text._HandlerModeExit + 0x0000000008002db0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x0000000008002db0 z_arm_int_exit + 0x0000000008002db0 z_arm_exc_exit + .text.z_arm_fault + 0x0000000008002dd0 0x138 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000008002dd0 z_arm_fault + .text.z_arm_fault_init + 0x0000000008002f08 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000008002f08 z_arm_fault_init + .text.__fault 0x0000000008002f18 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0x0000000008002f18 z_arm_hard_fault + 0x0000000008002f18 z_arm_exc_spurious + .text._reset_section + 0x0000000008002f2c 0x34 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x0000000008002f2c __start + 0x0000000008002f2c z_arm_reset + .text.z_impl_k_thread_abort + 0x0000000008002f60 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x0000000008002f60 z_impl_k_thread_abort + .text.z_arm_pendsv + 0x0000000008002f98 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000008002f98 z_arm_pendsv + .text.z_arm_svc + 0x0000000008003008 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000008003008 z_arm_svc + .text.arm_irq_enable + 0x0000000008003030 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003030 arm_irq_enable + .text.arm_irq_disable + 0x0000000008003048 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003048 arm_irq_disable + .text.arm_irq_priority_set + 0x0000000008003068 0x54 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003068 arm_irq_priority_set + .text.relocate_vector_table + 0x00000000080030bc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x00000000080030bc relocate_vector_table + .text.arch_new_thread + 0x00000000080030d8 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x00000000080030d8 arch_new_thread + .text.arch_switch_to_main_thread + 0x0000000008003104 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000008003104 arch_switch_to_main_thread + .text.z_arm_cpu_idle_init + 0x000000000800313c 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000800313c z_arm_cpu_idle_init + .text.z_arm_interrupt_init + 0x0000000008003148 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x0000000008003148 z_arm_interrupt_init + .text._isr_wrapper + 0x0000000008003178 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x0000000008003178 _isr_wrapper + .text.cbvprintf + 0x0000000008003198 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x0000000008003198 cbvprintf + .text.z_impl_zephyr_fputc + 0x00000000080031d0 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x00000000080031d0 z_impl_zephyr_fputc + .text.__stdout_hook_install + 0x00000000080031e0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x00000000080031e0 __stdout_hook_install + .text.malloc_prepare + 0x00000000080031f8 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.stm32_intc_gpio_isr + 0x000000000800321c 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text.stm32_exti_gpio_intc_init + 0x0000000008003264 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text.stm32_gpio_intc_enable_line + 0x00000000080032a4 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032a4 stm32_gpio_intc_enable_line + .text.stm32_gpio_intc_disable_line + 0x00000000080032d4 0x10 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032d4 stm32_gpio_intc_disable_line + .text.stm32_gpio_intc_select_line_trigger + 0x00000000080032e4 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032e4 stm32_gpio_intc_select_line_trigger + .text.stm32_gpio_intc_set_irq_callback + 0x000000000800332c 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800332c stm32_gpio_intc_set_irq_callback + .text.stm32_gpio_intc_remove_irq_callback + 0x000000000800336c 0x24 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800336c stm32_gpio_intc_remove_irq_callback + .text.stm32_exti_set_line_src_port + 0x0000000008003390 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x0000000008003390 stm32_exti_set_line_src_port + .text.stm32_exti_get_line_src_port + 0x00000000080033c0 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080033c0 stm32_exti_get_line_src_port + .text.stm32_exti_init + 0x00000000080033e8 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_is_pending + 0x0000000008003430 0x54 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x0000000008003430 stm32_exti_is_pending + .text.stm32_exti_clear_pending + 0x0000000008003484 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x0000000008003484 stm32_exti_clear_pending + .text.usb_dc_stm32_get_ep_state + 0x00000000080034c4 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_stm32_isr + 0x00000000080034f0 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_read_continue.part.0 + 0x0000000008003500 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_get_read_count.part.0 + 0x000000000800351c 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_attach + 0x0000000008003538 0x1c8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003538 usb_dc_attach + .text.usb_dc_set_status_callback + 0x0000000008003700 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003700 usb_dc_set_status_callback + .text.usb_dc_set_address + 0x0000000008003710 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003710 usb_dc_set_address + .text.usb_dc_ep_start_read + 0x0000000008003744 0x70 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003744 usb_dc_ep_start_read + .text.usb_dc_ep_get_read_count + 0x00000000080037b4 0x28 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080037b4 usb_dc_ep_get_read_count + .text.usb_dc_ep_check_cap + 0x00000000080037dc 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080037dc usb_dc_ep_check_cap + .text.usb_dc_ep_configure + 0x0000000008003810 0x94 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003810 usb_dc_ep_configure + .text.usb_dc_ep_set_stall + 0x00000000080038a4 0x44 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080038a4 usb_dc_ep_set_stall + .text.usb_dc_ep_clear_stall + 0x00000000080038e8 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080038e8 usb_dc_ep_clear_stall + .text.usb_dc_ep_enable + 0x0000000008003934 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003934 usb_dc_ep_enable + .text.usb_dc_ep_disable + 0x0000000008003994 0x5c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003994 usb_dc_ep_disable + .text.usb_dc_ep_write + 0x00000000080039f0 0xd8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080039f0 usb_dc_ep_write + .text.usb_dc_ep_read_wait + 0x0000000008003ac8 0x90 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003ac8 usb_dc_ep_read_wait + .text.usb_dc_ep_read_continue + 0x0000000008003b58 0x38 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003b58 usb_dc_ep_read_continue + .text.HAL_PCD_ResetCallback + 0x0000000008003b90 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003b90 HAL_PCD_ResetCallback + .text.HAL_PCD_SuspendCallback + 0x0000000008003bdc 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003bdc HAL_PCD_SuspendCallback + .text.HAL_PCD_ResumeCallback + 0x0000000008003bf8 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003bf8 HAL_PCD_ResumeCallback + .text.HAL_PCD_SetupStageCallback + 0x0000000008003c14 0x58 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003c14 HAL_PCD_SetupStageCallback + .text.can_calc_timing_internal + 0x0000000008003c6c 0x1f0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_add_rx_filter + 0x0000000008003e5c 0x9c zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003e5c can_add_rx_filter + .text.z_impl_can_calc_timing + 0x0000000008003ef8 0x28 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003ef8 z_impl_can_calc_timing + .text.z_impl_can_calc_timing_data + 0x0000000008003f20 0x28 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003f20 z_impl_can_calc_timing_data + .text.can_mcan_read_reg + 0x0000000008003f48 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008003f48 can_mcan_read_reg + .text.can_mcan_write_reg + 0x0000000008003f74 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008003f74 can_mcan_write_reg + .text.can_mcan_get_message + 0x0000000008003fa0 0x158 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_exit_sleep_mode + 0x00000000080040f8 0x94 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_set_timing + 0x000000000800418c 0x64 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x000000000800418c can_mcan_set_timing + .text.can_mcan_start + 0x00000000080041f0 0xfc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080041f0 can_mcan_start + .text.can_mcan_set_mode + 0x00000000080042ec 0xc8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080042ec can_mcan_set_mode + .text.can_mcan_line_1_isr + 0x00000000080043b4 0x8c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080043b4 can_mcan_line_1_isr + .text.can_mcan_line_0_isr + 0x0000000008004440 0x1b0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004440 can_mcan_line_0_isr + .text.can_mcan_send + 0x00000000080045f0 0x220 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080045f0 can_mcan_send + .text.can_mcan_add_rx_filter_std + 0x0000000008004810 0xcc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004810 can_mcan_add_rx_filter_std + .text.can_mcan_add_rx_filter + 0x00000000080048dc 0x114 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080048dc can_mcan_add_rx_filter + .text.can_mcan_remove_rx_filter + 0x00000000080049f0 0xa4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080049f0 can_mcan_remove_rx_filter + .text.can_mcan_stop + 0x0000000008004a94 0xb0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004a94 can_mcan_stop + .text.can_mcan_init + 0x0000000008004b44 0x1b4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004b44 can_mcan_init + .text.can_stm32fd_remap_reg + 0x0000000008004cf8 0xc0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_read_reg + 0x0000000008004db8 0x8c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_write_reg + 0x0000000008004e44 0x8c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_init + 0x0000000008004ed0 0x118 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_get_core_clock + 0x0000000008004fe8 0x88 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.LL_RCC_HSI_IsReady + 0x0000000008005070 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_on + 0x0000000008005080 0x40 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_off + 0x00000000080050c0 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_get_subsys_rate + 0x00000000080050f0 0x98 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.enabled_clock + 0x0000000008005188 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008005188 enabled_clock + .text.stm32_clock_control_configure + 0x00000000080051a4 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_get_status + 0x00000000080051fc 0x34 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_init + 0x0000000008005230 0x178 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008005230 stm32_clock_control_init + .text.get_pllsrc_frequency + 0x00000000080053a8 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053a8 get_pllsrc_frequency + .text.config_pll_sysclock + 0x00000000080053b0 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053b0 config_pll_sysclock + .text.config_enable_default_clocks + 0x00000000080053d8 0x48 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053d8 config_enable_default_clocks + .text.uart_console_init + 0x0000000008005420 0x2c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.console_out + 0x000000000800544c 0x28 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.gpio_stm32_pin_interrupt_configure + 0x0000000008005474 0xb0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_init + 0x0000000008005524 0x3c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000008005560 0x3c zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + 0x0000000008005560 z_impl_hwinfo_get_device_id + .text.pinctrl_configure_pins + 0x000000000800559c 0x8c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + 0x000000000800559c pinctrl_configure_pins + .text.uart_stm32_config_get + 0x0000000008005628 0xa4 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_set_baudrate + 0x00000000080056cc 0xac zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_parameters_set + 0x0000000008005778 0x168 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_init + 0x00000000080058e0 0x220 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_configure + 0x0000000008005b00 0x17c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.elapsed 0x0000000008005c7c 0x54 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_driver_init + 0x0000000008005cd0 0x40 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_isr + 0x0000000008005d10 0x58 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005d10 sys_clock_isr + .text.sys_clock_set_timeout + 0x0000000008005d68 0x114 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005d68 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x0000000008005e7c 0x34 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005e7c sys_clock_elapsed + .text.sys_clock_cycle_get_32 + 0x0000000008005eb0 0x24 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005eb0 sys_clock_cycle_get_32 + .text.HAL_RCC_GetSysClockFreq + 0x0000000008005ed4 0x88 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + 0x0000000008005ed4 HAL_RCC_GetSysClockFreq + .text.PCD_GET_EP_DBUF0_CNT.constprop.0 + 0x0000000008005f5c 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.PCD_GET_EP_RX_CNT.constprop.0 + 0x0000000008005f84 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_Init + 0x0000000008005fac 0xa0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x0000000008005fac HAL_PCD_Init + .text.HAL_PCD_IRQHandler + 0x000000000800604c 0x9d8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800604c HAL_PCD_IRQHandler + .text.USB_EnableGlobalInt + 0x0000000008006a24 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a24 USB_EnableGlobalInt + .text.USB_DisableGlobalInt + 0x0000000008006a34 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a34 USB_DisableGlobalInt + .text.USB_ActivateEndpoint + 0x0000000008006a44 0x2ac modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a44 USB_ActivateEndpoint + .text.USB_DeactivateEndpoint + 0x0000000008006cf0 0x128 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006cf0 USB_DeactivateEndpoint + .text.USB_EPSetStall + 0x0000000008006e18 0x3c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006e18 USB_EPSetStall + .text.USB_EPClearStall + 0x0000000008006e54 0x8c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006e54 USB_EPClearStall + .text.USB_DevDisconnect + 0x0000000008006ee0 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006ee0 USB_DevDisconnect + .text.USB_WritePMA + 0x0000000008006ef0 0x68 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006ef0 USB_WritePMA + .text.USB_EPStartXfer + 0x0000000008006f58 0x588 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006f58 USB_EPStartXfer + .text.USB_ReadPMA + 0x00000000080074e0 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x00000000080074e0 USB_ReadPMA + .text.LL_SetFlashLatency + 0x000000000800753c 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + 0x000000000800753c LL_SetFlashLatency + .text.k_sys_fatal_error_handler + 0x000000000800758c 0x20 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000800758c k_sys_fatal_error_handler + .text.z_fatal_error + 0x00000000080075ac 0xf4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x00000000080075ac z_fatal_error + .text.z_sys_init_run_level + 0x00000000080076a0 0x34 zephyr/kernel/libkernel.a(init.c.obj) + .text.bg_thread_main + 0x00000000080076d4 0xa8 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_init_cpu + 0x000000000800777c 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000800777c z_init_cpu + .text.z_cstart + 0x00000000080077e4 0xb4 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000080077e4 z_cstart + .text.z_impl_k_mutex_lock + 0x0000000008007898 0xf0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x0000000008007898 z_impl_k_mutex_lock + .text.z_impl_k_mutex_unlock + 0x0000000008007988 0x98 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x0000000008007988 z_impl_k_mutex_unlock + .text.z_impl_k_sem_give + 0x0000000008007a20 0x64 zephyr/kernel/libkernel.a(sem.c.obj) + 0x0000000008007a20 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x0000000008007a84 0x4c zephyr/kernel/libkernel.a(sem.c.obj) + 0x0000000008007a84 z_impl_k_sem_take + .text.k_sys_work_q_init + 0x0000000008007ad0 0x28 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text.work_queue_main + 0x0000000008007af8 0x144 zephyr/kernel/libkernel.a(work.c.obj) + .text.submit_to_queue_locked + 0x0000000008007c3c 0xd4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_start + 0x0000000008007d10 0x88 zephyr/kernel/libkernel.a(work.c.obj) + 0x0000000008007d10 k_work_queue_start + .text.z_setup_new_thread + 0x0000000008007d98 0x74 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007d98 z_setup_new_thread + .text.z_impl_k_thread_create + 0x0000000008007e0c 0x58 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007e0c z_impl_k_thread_create + .text.z_dummy_thread_init + 0x0000000008007e64 0x18 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007e64 z_dummy_thread_init + .text.z_swap_irqlock + 0x0000000008007e7c 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + .text.ready_thread + 0x0000000008007ea8 0x8c zephyr/kernel/libkernel.a(sched.c.obj) + .text.unready_thread + 0x0000000008007f34 0x58 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_thread_timeout + 0x0000000008007f8c 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text.move_thread_to_end_of_prio_q + 0x0000000008007fa4 0x98 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008007fa4 move_thread_to_end_of_prio_q + .text.z_pend_curr + 0x000000000800803c 0x38 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800803c z_pend_curr + .text.z_thread_prio_set + 0x0000000008008074 0xe8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008074 z_thread_prio_set + .text.z_reschedule + 0x000000000800815c 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800815c z_reschedule + .text.z_reschedule_irqlock + 0x0000000008008188 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008188 z_reschedule_irqlock + .text.k_sched_lock + 0x00000000080081b4 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080081b4 k_sched_lock + .text.k_sched_unlock + 0x00000000080081d4 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080081d4 k_sched_unlock + .text.z_sched_init + 0x0000000008008234 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008234 z_sched_init + .text.z_impl_k_yield + 0x0000000008008248 0x84 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008248 z_impl_k_yield + .text.z_tick_sleep + 0x00000000080082cc 0x74 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_sleep + 0x0000000008008340 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008340 z_impl_k_sleep + .text.z_impl_k_wakeup + 0x0000000008008380 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008380 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x00000000080083c0 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080083c0 z_impl_k_sched_current_thread_query + .text.z_thread_abort + 0x00000000080083cc 0x12c zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080083cc z_thread_abort + .text.z_sched_wait + 0x00000000080084f8 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080084f8 z_sched_wait + .text.slice_timeout + 0x000000000800851c 0x20 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.thread_is_sliceable + 0x000000000800853c 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000800853c thread_is_sliceable + .text.z_reset_time_slice + 0x000000000800857c 0x4c zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000800857c z_reset_time_slice + .text.z_time_slice + 0x00000000080085c8 0x58 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x00000000080085c8 z_time_slice + .text.first 0x0000000008008620 0x10 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.next_timeout + 0x0000000008008630 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.elapsed 0x0000000008008668 0x18 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.remove_timeout + 0x0000000008008680 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_add_timeout + 0x00000000080086b8 0x120 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080086b8 z_add_timeout + .text.sys_clock_announce + 0x00000000080087d8 0xd4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080087d8 sys_clock_announce + .text.sys_clock_tick_get + 0x00000000080088ac 0x2c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080088ac sys_clock_tick_get + .text.z_timer_expiration_handler + 0x00000000080088d8 0x108 zephyr/kernel/libkernel.a(timer.c.obj) + 0x00000000080088d8 z_timer_expiration_handler + .text.z_impl_k_timer_start + 0x00000000080089e0 0x68 zephyr/kernel/libkernel.a(timer.c.obj) + 0x00000000080089e0 z_impl_k_timer_start + .text.k_thread_system_pool_assign + 0x0000000008008a48 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + 0x0000000008008a48 k_thread_system_pool_assign + .text.boot_banner + 0x0000000008008a54 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + 0x0000000008008a54 boot_banner + .text.statics_init + 0x0000000008008a64 0x24 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.snprintf + 0x0000000008008a88 0x54 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + 0x0000000008008a88 snprintf + .text.__l_vfprintf + 0x0000000008008adc 0x4d0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + 0x0000000008008adc __l_vfprintf + .text._OffsetAbsSyms + 0x0000000008008fac 0x2 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x0000000008008fac _OffsetAbsSyms + .text.gpio_pin_set_dt + 0x0000000008008fae 0x2e app/libapp.a(pfet_control.c.obj) + .text.chunk_size + 0x0000000008008fdc 0xa zephyr/libzephyr.a(heap.c.obj) + .text.free_list_add + 0x0000000008008fe6 0x4e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_init + 0x0000000008009034 0x74 zephyr/libzephyr.a(heap.c.obj) + 0x0000000008009034 sys_heap_init + .text.cbpprintf_external + 0x00000000080090a8 0x68 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x00000000080090a8 cbpprintf_external + .text.is_ptr 0x0000000008009110 0x4a zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x0000000008009110 is_ptr + .text.arch_printk_char_out + 0x000000000800915a 0x4 zephyr/libzephyr.a(printk.c.obj) + 0x000000000800915a arch_printk_char_out + .text.printk 0x000000000800915e 0x16 zephyr/libzephyr.a(printk.c.obj) + 0x000000000800915e printk + .text.free_space + 0x0000000008009174 0x2c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.get_usage + 0x00000000080091a0 0x22 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.idx_inc 0x00000000080091c2 0x1c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.rd_idx_inc + 0x00000000080091de 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.add_skip_item + 0x00000000080091f6 0x3a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.drop_item_locked + 0x0000000008009230 0xf0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.post_drop_action + 0x0000000008009320 0x38 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.max_utilization_update + 0x0000000008009358 0x1a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_init + 0x0000000008009372 0x42 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x0000000008009372 mpsc_pbuf_init + .text.mpsc_pbuf_alloc + 0x00000000080093b4 0xfc zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080093b4 mpsc_pbuf_alloc + .text.mpsc_pbuf_commit + 0x00000000080094b0 0x38 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080094b0 mpsc_pbuf_commit + .text.mpsc_pbuf_claim + 0x00000000080094e8 0xa2 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080094e8 mpsc_pbuf_claim + .text.mpsc_pbuf_free + 0x000000000800958a 0x72 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x000000000800958a mpsc_pbuf_free + .text.mpsc_pbuf_is_pending + 0x00000000080095fc 0x2e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080095fc mpsc_pbuf_is_pending + .text._ConfigAbsSyms + 0x000000000800962a 0x2 zephyr/libzephyr.a(configs.c.obj) + 0x000000000800962a _ConfigAbsSyms + .text.log_msg_generic_get_wlen + 0x000000000800962c 0x22 zephyr/libzephyr.a(log_core.c.obj) + .text.dummy_timestamp + 0x000000000800964e 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text.atomic_inc + 0x0000000008009652 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.default_lf_get_timestamp + 0x000000000800965c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_vprintk + 0x000000000800966c 0x1a zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800966c z_log_vprintk + .text.z_log_notify_drop + 0x0000000008009686 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_get_tag + 0x0000000008009690 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008009690 z_log_get_tag + .text.log_backend_enable + 0x0000000008009694 0x16 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x0000000008009694 log_backend_enable + .text.z_cbprintf_cpy + 0x00000000080096aa 0x32 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_log_msg_finalize + 0x00000000080096dc 0x32 zephyr/libzephyr.a(log_msg.c.obj) + 0x00000000080096dc z_log_msg_finalize + .text.z_impl_z_log_msg_simple_create_0 + 0x000000000800970e 0xe zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800970e z_impl_z_log_msg_simple_create_0 + .text.z_impl_z_log_msg_simple_create_1 + 0x000000000800971c 0x10 zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800971c z_impl_z_log_msg_simple_create_1 + .text.z_impl_z_log_msg_simple_create_2 + 0x000000000800972c 0x16 zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800972c z_impl_z_log_msg_simple_create_2 + .text.log_output_write + 0x0000000008009742 0x1e zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_flush + 0x0000000008009760 0x18 zephyr/libzephyr.a(log_output.c.obj) + .text.out_func + 0x0000000008009778 0x26 zephyr/libzephyr.a(log_output.c.obj) + .text.cr_out_func + 0x000000000800979e 0x1c zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_msg_process + 0x00000000080097ba 0x62 zephyr/libzephyr.a(log_output.c.obj) + 0x00000000080097ba log_output_msg_process + .text.format_set + 0x000000000800981c 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.log_backend_uart_init + 0x0000000008009828 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.panic 0x0000000008009834 0x32 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.dropped 0x0000000008009866 0xe zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.process 0x0000000008009874 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.z_log_msg_simple_create_1 + 0x0000000008009890 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.get_ep_bm_from_addr + 0x0000000008009898 0x26 zephyr/libzephyr.a(usb_device.c.obj) + .text.arch_early_memset + 0x00000000080098be 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x00000000080098be arch_early_memset + .text.arch_early_memcpy + 0x00000000080098c6 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x00000000080098c6 arch_early_memcpy + .text.z_do_kernel_oops + 0x00000000080098ce 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x00000000080098ce z_do_kernel_oops + .text.z_arm_nmi + 0x00000000080098da 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x00000000080098da z_arm_nmi + .text.z_irq_spurious + 0x00000000080098e6 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x00000000080098e6 z_irq_spurious + .text.z_prep_c + 0x00000000080098f2 0x16 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x00000000080098f2 z_prep_c + .text.arch_coprocessors_disable + 0x0000000008009908 0x6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000008009908 arch_coprocessors_disable + .text.arch_irq_unlock_outlined + 0x000000000800990e 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x000000000800990e arch_irq_unlock_outlined + .text.arch_cpu_idle + 0x000000000800991a 0xe zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000800991a arch_cpu_idle + .text.cbputc 0x0000000008009928 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.picolibc_put + 0x0000000008009934 0xa zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.stm32_gpio_intc_get_pin_irq_line + 0x000000000800993e 0xa zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800993e stm32_gpio_intc_get_pin_irq_line + .text.z_log_msg_simple_create_1.constprop.0 + 0x0000000008009948 0xe zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.z_log_msg_simple_create_0.constprop.0 + 0x0000000008009956 0xc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_set_callback + 0x0000000008009962 0x18 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008009962 usb_dc_ep_set_callback + .text.usb_dc_ep_is_stalled + 0x000000000800997a 0x1e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x000000000800997a usb_dc_ep_is_stalled + .text.usb_dc_ep_read + 0x0000000008009998 0x1e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008009998 usb_dc_ep_read + .text.usb_dc_ep_mps + 0x00000000080099b6 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099b6 usb_dc_ep_mps + .text.HAL_PCD_DataOutStageCallback + 0x00000000080099ca 0x2a zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099ca HAL_PCD_DataOutStageCallback + .text.HAL_PCD_DataInStageCallback + 0x00000000080099f4 0x22 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099f4 HAL_PCD_DataInStageCallback + .text.check_timing_in_range + 0x0000000008009a16 0x5c zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_timing + 0x0000000008009a72 0x24 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008009a72 z_impl_can_set_timing + .text.z_impl_can_set_timing_data + 0x0000000008009a96 0x2e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008009a96 z_impl_can_set_timing_data + .text.can_mcan_read_mram + 0x0000000008009ac4 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_write_mram + 0x0000000008009ad0 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_clear_mram + 0x0000000008009adc 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.z_log_msg_simple_create_0 + 0x0000000008009ae8 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.z_log_msg_simple_create_1.constprop.0 + 0x0000000008009af0 0xe zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.k_mutex_lock.constprop.0.isra.0 + 0x0000000008009afe 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.k_mutex_unlock.isra.0 + 0x0000000008009b06 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_enter_init_mode.constprop.0 + 0x0000000008009b0e 0xa4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_set_timing_data + 0x0000000008009bb2 0x98 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009bb2 can_mcan_set_timing_data + .text.can_mcan_get_capabilities + 0x0000000008009c4a 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009c4a can_mcan_get_capabilities + .text.can_mcan_get_state + 0x0000000008009c52 0x6a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009c52 can_mcan_get_state + .text.can_mcan_get_max_filters + 0x0000000008009cbc 0x10 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009cbc can_mcan_get_max_filters + .text.can_mcan_set_state_change_callback + 0x0000000008009ccc 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009ccc can_mcan_set_state_change_callback + .text.can_mcan_enable_configuration_change + 0x0000000008009cd4 0x3a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009cd4 can_mcan_enable_configuration_change + .text.can_stm32fd_read_mram + 0x0000000008009d0e 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_write_mram + 0x0000000008009d2e 0x1e zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_clear_mram + 0x0000000008009d4c 0x1c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.config_can_0_irq + 0x0000000008009d68 0x24 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.config_regulator_voltage + 0x0000000008009d8c 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008009d8c config_regulator_voltage + .text.gpio_stm32_port_get_raw + 0x0000000008009d8e 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_set_masked_raw + 0x0000000008009d9a 0x12 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_set_bits_raw + 0x0000000008009dac 0xa zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_clear_bits_raw + 0x0000000008009db6 0xa zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_toggle_bits + 0x0000000008009dc0 0xe zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_manage_callback + 0x0000000008009dce 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_configure_raw.isra.0 + 0x0000000008009e26 0xa0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_config + 0x0000000008009ec6 0xee zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_isr + 0x0000000008009fb4 0x32 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_configure + 0x0000000008009fe6 0x2a zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x0000000008009fe6 gpio_stm32_configure + .text.pinctrl_lookup_state + 0x000000000800a010 0x26 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x000000000800a010 pinctrl_lookup_state + .text.reset_stm32_status + 0x000000000800a036 0x20 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_assert + 0x000000000800a056 0x1c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_deassert + 0x000000000800a072 0x1c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_toggle + 0x000000000800a08e 0x16 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.uart_stm32_ll2cfg_databits + 0x000000000800a0a4 0x2c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_err_check + 0x000000000800a0d0 0x5e zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_poll_out + 0x000000000800a12e 0x36 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_poll_in + 0x000000000800a164 0x22 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.HAL_PCD_MspInit + 0x000000000800a186 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a186 HAL_PCD_MspInit + .text.HAL_PCD_Start + 0x000000000800a188 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a188 HAL_PCD_Start + .text.HAL_PCD_Stop + 0x000000000800a1ae 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1ae HAL_PCD_Stop + .text.HAL_PCD_SOFCallback + 0x000000000800a1d4 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1d4 HAL_PCD_SOFCallback + .text.HAL_PCD_SetAddress + 0x000000000800a1d6 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1d6 HAL_PCD_SetAddress + .text.HAL_PCD_EP_Open + 0x000000000800a1f8 0x58 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1f8 HAL_PCD_EP_Open + .text.HAL_PCD_EP_Close + 0x000000000800a250 0x4c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a250 HAL_PCD_EP_Close + .text.HAL_PCD_EP_Receive + 0x000000000800a29c 0x36 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a29c HAL_PCD_EP_Receive + .text.HAL_PCD_EP_GetRxCount + 0x000000000800a2d2 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a2d2 HAL_PCD_EP_GetRxCount + .text.HAL_PCD_EP_Transmit + 0x000000000800a2e2 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a2e2 HAL_PCD_EP_Transmit + .text.HAL_PCD_EP_SetStall + 0x000000000800a312 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a312 HAL_PCD_EP_SetStall + .text.HAL_PCD_EP_ClrStall + 0x000000000800a36e 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a36e HAL_PCD_EP_ClrStall + .text.HAL_PCDEx_PMAConfig + 0x000000000800a3ca 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a3ca HAL_PCDEx_PMAConfig + .text.HAL_PCDEx_ActivateLPM + 0x000000000800a3fa 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a3fa HAL_PCDEx_ActivateLPM + .text.HAL_PCDEx_LPM_Callback + 0x000000000800a420 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a420 HAL_PCDEx_LPM_Callback + .text.USB_DevInit + 0x000000000800a422 0x2a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a422 USB_DevInit + .text.USB_SetDevAddress + 0x000000000800a44c 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a44c USB_SetDevAddress + .text.USB_DevConnect + 0x000000000800a458 0xe modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a458 USB_DevConnect + .text.USB_ReadInterrupts + 0x000000000800a466 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a466 USB_ReadInterrupts + .text.do_device_init + 0x000000000800a46a 0x32 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000800a46a do_device_init + .text.z_impl_device_is_ready + 0x000000000800a49c 0x1a zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000800a49c z_impl_device_is_ready + .text.arch_system_halt + 0x000000000800a4b6 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000800a4b6 arch_system_halt + .text.idle 0x000000000800a4be 0xe zephyr/kernel/libkernel.a(idle.c.obj) + 0x000000000800a4be idle + .text.adjust_owner_prio.isra.0 + 0x000000000800a4cc 0x16 zephyr/kernel/libkernel.a(mutex.c.obj) + .text.z_impl_k_mutex_init + 0x000000000800a4e2 0xe zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000800a4e2 z_impl_k_mutex_init + .text.z_impl_k_sem_init + 0x000000000800a4f0 0x1a zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000800a4f0 z_impl_k_sem_init + .text.flag_test_and_clear + 0x000000000800a50a 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.notify_queue_locked.isra.0 + 0x000000000800a522 0x12 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init + 0x000000000800a534 0x12 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a534 k_work_init + .text.z_work_submit_to_queue + 0x000000000800a546 0x1e zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a546 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x000000000800a564 0x18 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a564 k_work_submit_to_queue + .text.k_is_in_isr + 0x000000000800a57c 0xc zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a57c k_is_in_isr + .text.z_impl_k_thread_name_set + 0x000000000800a588 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a588 z_impl_k_thread_name_set + .text.k_thread_name_get + 0x000000000800a58e 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a58e k_thread_name_get + .text.sys_dlist_remove + 0x000000000800a592 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unpend_thread_no_timeout + 0x000000000800a5a2 0x16 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x000000000800a5b8 0x52 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_ready_thread + 0x000000000800a60a 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a60a z_ready_thread + .text.z_unpend_thread_no_timeout + 0x000000000800a622 0x1e zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a622 z_unpend_thread_no_timeout + .text.z_sched_wake_thread + 0x000000000800a640 0x36 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a640 z_sched_wake_thread + .text.z_thread_timeout + 0x000000000800a676 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a676 z_thread_timeout + .text.z_unpend1_no_timeout + 0x000000000800a682 0x2a zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a682 z_unpend1_no_timeout + .text.z_impl_k_usleep + 0x000000000800a6ac 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a6ac z_impl_k_usleep + .text.z_sched_wake + 0x000000000800a6ce 0x3c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a6ce z_sched_wake + .text.z_abort_timeout + 0x000000000800a70a 0x4c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a70a z_abort_timeout + .text.sys_clock_tick_get_32 + 0x000000000800a756 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a756 sys_clock_tick_get_32 + .text.z_impl_k_uptime_ticks + 0x000000000800a75e 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a75e z_impl_k_uptime_ticks + .text.k_timer_init + 0x000000000800a766 0x18 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000800a766 k_timer_init + .text.z_impl_k_timer_stop + 0x000000000800a77e 0x32 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000800a77e z_impl_k_timer_stop + .text.z_impl_atomic_add + 0x000000000800a7b0 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7b0 z_impl_atomic_add + .text.z_impl_atomic_sub + 0x000000000800a7ca 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7ca z_impl_atomic_sub + .text.z_impl_atomic_set + 0x000000000800a7e4 0x18 zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7e4 z_impl_atomic_set + .text.k_heap_init + 0x000000000800a7fc 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000800a7fc k_heap_init + .text.memcpy 0x000000000800a80c 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + 0x000000000800a80c __aeabi_memcpy + 0x000000000800a80c __aeabi_memcpy4 + 0x000000000800a80c __aeabi_memcpy8 + 0x000000000800a80c memcpy + .text.memset 0x000000000800a81e 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + 0x000000000800a81e memset + .text.strncmp 0x000000000800a82e 0x22 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + 0x000000000800a82e strncmp + .text.strnlen 0x000000000800a850 0x16 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + 0x000000000800a850 strnlen + .text.__ultoa_invert + 0x000000000800a866 0x10e c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .text.__file_str_put + 0x000000000800a974 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + 0x000000000800a974 __file_str_put + *(SORT_BY_ALIGNMENT(.TEXT.*)) + .TEXT.__aeabi_read_tp + 0x000000000800a984 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0x000000000800a984 __aeabi_read_tp + *(SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.glue_7t)) + .glue_7t 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.glue_7)) + .glue_7 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.vfp11_veneer)) + .vfp11_veneer 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.v4_bx)) + .v4_bx 0x000000000800a990 0x0 linker stubs + 0x000000000800a990 . = ALIGN (0x4) + 0x000000000800a990 __text_region_end = . + +.ARM.exidx 0x000000000800a990 0x8 + 0x000000000800a990 __exidx_start = . + *(SORT_BY_ALIGNMENT(.ARM.exidx*) SORT_BY_ALIGNMENT(gnu.linkonce.armexidx.*)) + .ARM.exidx 0x000000000800a990 0x8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + 0x000000000800a998 __exidx_end = . + 0x000000000800a998 __rodata_region_start = . + +initlevel 0x000000000800a998 0x98 + 0x000000000800a998 __init_start = . + 0x000000000800a998 __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_???_*))) + 0x000000000800a998 __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_?_*))) + .z_init_PRE_KERNEL_1_P_1_SUB_00008_ + 0x000000000800a998 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .z_init_PRE_KERNEL_1_P_1_SUB_0_ + 0x000000000800a9a0 0x8 zephyr/libzephyr.a(soc_config.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_??_*))) + .z_init_PRE_KERNEL_1_P_30_SUB_0_ + 0x000000000800a9a8 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_1_P_35_SUB_00049_ + 0x000000000800a9b0 0x8 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00030_ + 0x000000000800a9b8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00031_ + 0x000000000800a9c0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00048_ + 0x000000000800a9c8 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00079_ + 0x000000000800a9d0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00080_ + 0x000000000800a9d8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00081_ + 0x000000000800a9e0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00082_ + 0x000000000800a9e8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_0_ + 0x000000000800a9f0 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00058_ + 0x000000000800a9f8 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_60_SUB_0_ + 0x000000000800aa00 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_???_*))) + 0x000000000800aa08 __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_?_*))) + .z_init_PRE_KERNEL_2_P_0_SUB_0_ + 0x000000000800aa08 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_???_*))) + 0x000000000800aa10 __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_?_*))) + .z_init_POST_KERNEL_P_0_SUB_0_ + 0x000000000800aa10 0x8 zephyr/libzephyr.a(log_core.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_??_*))) + .z_init_POST_KERNEL_P_35_SUB_0_ + 0x000000000800aa18 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x000000000800aa20 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL_P_80_SUB_00043_ + 0x000000000800aa28 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_???_*))) + 0x000000000800aa30 __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_???_*))) + 0x000000000800aa30 __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_???_*))) + 0x000000000800aa30 __init_end = . + +device_area 0x000000000800aa30 0x160 + 0x000000000800aa30 _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + ._device.static.1_1_ + 0x000000000800aa30 0x20 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x000000000800aa30 __device_dts_ord_8 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_35_ + 0x000000000800aa50 0x20 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x000000000800aa50 __device_dts_ord_49 + ._device.static.1_40_ + 0x000000000800aa70 0x20 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x000000000800aa70 __device_dts_ord_48 + ._device.static.1_40_ + 0x000000000800aa90 0xc0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800aa90 __device_dts_ord_80 + 0x000000000800aab0 __device_dts_ord_82 + 0x000000000800aad0 __device_dts_ord_79 + 0x000000000800aaf0 __device_dts_ord_81 + 0x000000000800ab10 __device_dts_ord_31 + 0x000000000800ab30 __device_dts_ord_30 + ._device.static.1_50_ + 0x000000000800ab50 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800ab50 __device_dts_ord_58 + ._device.static.3_80_ + 0x000000000800ab70 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ab70 __device_dts_ord_43 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_???_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_????_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?????_*))) + 0x000000000800ab90 _device_list_end = . + +sw_isr_table 0x000000000800ab90 0xf8 + 0x000000000800ab90 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x000000000800ab90 0xf8 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x000000000800ab90 _sw_isr_table + +initlevel_error + 0x000000000800a998 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_*))) + 0x0000000000000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x000000000800ac88 0x0 + 0x000000000800ac88 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x000000000800ac88 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x000000000800ac88 0x0 + 0x000000000800ac88 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x000000000800ac88 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x000000000800ac88 0x0 + 0x000000000800ac88 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x000000000800ac88 __static_thread_data_list_end = . + +device_deps 0x000000000800ac88 0x0 + 0x000000000800ac88 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x000000000800ac88 __device_deps_end = . + +can_driver_api_area + 0x000000000800ac88 0x5c + 0x000000000800ac88 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + ._can_driver_api.static.can_stm32fd_driver_api_ + 0x000000000800ac88 0x5c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ace4 _can_driver_api_list_end = . + +gpio_driver_api_area + 0x000000000800ace4 0x24 + 0x000000000800ace4 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_stm32_driver_ + 0x000000000800ace4 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800ad08 _gpio_driver_api_list_end = . + +reset_driver_api_area + 0x000000000800ad08 0x10 + 0x000000000800ad08 _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + ._reset_driver_api.static.reset_stm32_driver_api_ + 0x000000000800ad08 0x10 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x000000000800ad18 _reset_driver_api_list_end = . + +shared_irq_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x000000000800ad18 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x000000000800ad18 _crypto_driver_api_list_end = . + +adc_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + 0x000000000800ad18 _adc_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x000000000800ad18 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x000000000800ad18 _bbram_driver_api_list_end = . + +bt_hci_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x000000000800ad18 _bt_hci_driver_api_list_end = . + +cellular_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x000000000800ad18 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x000000000800ad18 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x000000000800ad18 0x1c + 0x000000000800ad18 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.stm32_clock_control_api_ + 0x000000000800ad18 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x000000000800ad34 _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x000000000800ad34 _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x000000000800ad34 _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x000000000800ad34 _counter_driver_api_list_end = . + +crc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _crc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crc_driver_api.static.*))) + 0x000000000800ad34 _crc_driver_api_list_end = . + +dac_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x000000000800ad34 _dac_driver_api_list_end = . + +dai_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x000000000800ad34 _dai_driver_api_list_end = . + +display_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x000000000800ad34 _display_driver_api_list_end = . + +dma_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x000000000800ad34 _dma_driver_api_list_end = . + +edac_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x000000000800ad34 _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x000000000800ad34 _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x000000000800ad34 _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x000000000800ad34 _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x000000000800ad34 _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x000000000800ad34 _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x000000000800ad34 _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x000000000800ad34 _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x000000000800ad34 _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x000000000800ad34 _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x000000000800ad34 _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x000000000800ad34 _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x000000000800ad34 _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x000000000800ad34 _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x000000000800ad34 _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x000000000800ad34 _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x000000000800ad34 _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x000000000800ad34 _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x000000000800ad34 _ipm_driver_api_list_end = . + +led_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x000000000800ad34 _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x000000000800ad34 _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + 0x000000000800ad34 _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x000000000800ad34 _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x000000000800ad34 _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x000000000800ad34 _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x000000000800ad34 _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x000000000800ad34 _mspi_driver_api_list_end = . + +opamp_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _opamp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._opamp_driver_api.static.*))) + 0x000000000800ad34 _opamp_driver_api_list_end = . + +peci_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x000000000800ad34 _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x000000000800ad34 _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x000000000800ad34 _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x000000000800ad34 _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x000000000800ad34 _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x000000000800ad34 _regulator_driver_api_list_end = . + +retained_mem_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x000000000800ad34 _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x000000000800ad34 _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x000000000800ad34 _sdhc_driver_api_list_end = . + +sensor_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + 0x000000000800ad34 _sensor_driver_api_list_end = . + +smbus_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x000000000800ad34 _smbus_driver_api_list_end = . + +spi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + 0x000000000800ad34 _spi_driver_api_list_end = . + +stepper_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x000000000800ad34 _stepper_driver_api_list_end = . + +syscon_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x000000000800ad34 _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x000000000800ad34 _tee_driver_api_list_end = . + +video_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x000000000800ad34 _video_driver_api_list_end = . + +virtio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _virtio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._virtio_driver_api.static.*))) + 0x000000000800ad34 _virtio_driver_api_list_end = . + +w1_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x000000000800ad34 _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x000000000800ad34 _wdt_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x000000000800ad34 _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x000000000800ad34 _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x000000000800ad34 _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x000000000800ad34 _its_driver_api_list_end = . + +vtd_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x000000000800ad34 _vtd_driver_api_list_end = . + +renesas_elc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _renesas_elc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._renesas_elc_driver_api.static.*))) + 0x000000000800ad34 _renesas_elc_driver_api_list_end = . + +tgpio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x000000000800ad34 _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x000000000800ad34 _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x000000000800ad34 _pcie_ep_driver_api_list_end = . + +psi5_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _psi5_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._psi5_driver_api.static.*))) + 0x000000000800ad34 _psi5_driver_api_list_end = . + +sent_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sent_driver_api.static.*))) + 0x000000000800ad34 _sent_driver_api_list_end = . + +svc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x000000000800ad34 _svc_driver_api_list_end = . + +uart_driver_api_area + 0x000000000800ad34 0x1c + 0x000000000800ad34 _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.uart_stm32_driver_api_ + 0x000000000800ad34 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800ad50 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x000000000800ad50 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x000000000800ad50 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x000000000800ad50 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x000000000800ad50 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x000000000800ad50 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x000000000800ad50 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x000000000800ad50 _ethphy_driver_api_list_end = . + +ztest 0x000000000800ad50 0x0 + 0x000000000800ad50 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x000000000800ad50 _ztest_expected_result_entry_list_end = . + 0x000000000800ad50 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x000000000800ad50 _ztest_suite_node_list_end = . + 0x000000000800ad50 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x000000000800ad50 _ztest_unit_test_list_end = . + 0x000000000800ad50 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x000000000800ad50 _ztest_test_rule_list_end = . + +init_array 0x000000000800ad50 0x0 + 0x000000000800ad50 __zephyr_init_array_start = . + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(SORT_BY_ALIGNMENT(.init_array) SORT_BY_ALIGNMENT(.ctors)) + 0x000000000800ad50 __zephyr_init_array_end = . + 0x0000000000000001 ASSERT ((__zephyr_init_array_start == __zephyr_init_array_end), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +bt_l2cap_fixed_chan_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x000000000800ad50 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x000000000800ad50 _bt_gatt_service_static_list_end = . + +log_strings_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x000000000800ad50 _log_strings_list_end = . + +log_stmesp_ptr_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x000000000800ad50 _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x000000000800ad50 _log_stmesp_str_list_end = . + +log_const_area 0x000000000800ad50 0xb0 + 0x000000000800ad50 _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + ._log_const.static.log_const_can_common_ + 0x000000000800ad50 0x8 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x000000000800ad50 log_const_can_common + ._log_const.static.log_const_can_mcan_ + 0x000000000800ad58 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x000000000800ad58 log_const_can_mcan + ._log_const.static.log_const_can_stm32fd_ + 0x000000000800ad60 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ad60 log_const_can_stm32fd + ._log_const.static.log_const_cbprintf_package_ + 0x000000000800ad68 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x000000000800ad68 log_const_cbprintf_package + ._log_const.static.log_const_cdc_handler_ + 0x000000000800ad70 0x8 app/libapp.a(cdc_handler.c.obj) + 0x000000000800ad70 log_const_cdc_handler + ._log_const.static.log_const_exti_stm32_ + 0x000000000800ad78 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x000000000800ad78 log_const_exti_stm32 + ._log_const.static.log_const_getopt_ + 0x000000000800ad80 0x8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + 0x000000000800ad80 log_const_getopt + ._log_const.static.log_const_gs_usb_can_ + 0x000000000800ad88 0x8 app/libapp.a(gs_usb_can.c.obj) + 0x000000000800ad88 log_const_gs_usb_can + ._log_const.static.log_const_log_ + 0x000000000800ad90 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800ad90 log_const_log + ._log_const.static.log_const_log_mgmt_ + 0x000000000800ad98 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x000000000800ad98 log_const_log_mgmt + ._log_const.static.log_const_log_uart_ + 0x000000000800ada0 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ada0 log_const_log_uart + ._log_const.static.log_const_main_ + 0x000000000800ada8 0x8 app/libapp.a(main.c.obj) + 0x000000000800ada8 log_const_main + ._log_const.static.log_const_os_ + 0x000000000800adb0 0x8 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000800adb0 log_const_os + ._log_const.static.log_const_pfet_control_ + 0x000000000800adb8 0x8 app/libapp.a(pfet_control.c.obj) + 0x000000000800adb8 log_const_pfet_control + ._log_const.static.log_const_stm32_ + 0x000000000800adc0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800adc0 log_const_stm32 + ._log_const.static.log_const_stm32_backup_domain_ + 0x000000000800adc8 0x8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + 0x000000000800adc8 log_const_stm32_backup_domain + ._log_const.static.log_const_uart_stm32_ + 0x000000000800add0 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800add0 log_const_uart_stm32 + ._log_const.static.log_const_usb_dc_stm32_ + 0x000000000800add8 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x000000000800add8 log_const_usb_dc_stm32 + ._log_const.static.log_const_usb_descriptor_ + 0x000000000800ade0 0x8 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000000800ade0 log_const_usb_descriptor + ._log_const.static.log_const_usb_device_ + 0x000000000800ade8 0x8 zephyr/libzephyr.a(usb_device.c.obj) + 0x000000000800ade8 log_const_usb_device + ._log_const.static.log_const_usb_gs_usb_ + 0x000000000800adf0 0x8 app/libapp.a(usb_gs_usb_class.c.obj) + 0x000000000800adf0 log_const_usb_gs_usb + ._log_const.static.log_const_usb_transfer_ + 0x000000000800adf8 0x8 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x000000000800adf8 log_const_usb_transfer + 0x000000000800ae00 _log_const_list_end = . + +log_backend_area + 0x000000000800ae00 0x10 + 0x000000000800ae00 _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + ._log_backend.static.log_backend_uart_ + 0x000000000800ae00 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ae10 _log_backend_list_end = . + +log_link_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x000000000800ae10 _log_link_list_end = . + +tracing_backend_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x000000000800ae10 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +intc_table_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _intc_table_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._intc_table.static.*))) + 0x000000000800ae10 _intc_table_list_end = . + +symbol_to_keep 0x000000000800ae10 0x0 + 0x000000000800ae10 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x000000000800ae10 __symbol_to_keep_end = . + +shell_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x000000000800ae10 _shell_list_end = . + +shell_root_cmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x000000000800ae10 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x000000000800ae10 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x000000000800ae10 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x000000000800ae10 _cfb_font_list_end = . + +tdata 0x000000000800ae10 0x0 + *(SORT_BY_ALIGNMENT(.tdata) SORT_BY_ALIGNMENT(.tdata.*) SORT_BY_ALIGNMENT(.gnu.linkonce.td.*)) + +tbss 0x000000000800ae10 0x4 + *(SORT_BY_ALIGNMENT(.tbss) SORT_BY_ALIGNMENT(.tbss.*) SORT_BY_ALIGNMENT(.gnu.linkonce.tb.*) SORT_BY_ALIGNMENT(.tcommon)) + .tbss.z_tls_current + 0x000000000800ae10 0x4 zephyr/libzephyr.a(thread_entry.c.obj) + 0x000000000800ae10 z_tls_current + 0x000000000800ae10 PROVIDE (__tdata_start = LOADADDR (tdata)) + 0x0000000000000001 PROVIDE (__tdata_align = ALIGNOF (tdata)) + 0x0000000000000000 PROVIDE (__tdata_size = (((SIZEOF (tdata) + __tdata_align) - 0x1) & ~ ((__tdata_align - 0x1)))) + [!provide] PROVIDE (__tdata_end = (__tdata_start + __tdata_size)) + 0x0000000000000004 PROVIDE (__tbss_align = ALIGNOF (tbss)) + [!provide] PROVIDE (__tbss_start = ADDR (tbss)) + 0x0000000000000004 PROVIDE (__tbss_size = (((SIZEOF (tbss) + __tbss_align) - 0x1) & ~ ((__tbss_align - 0x1)))) + [!provide] PROVIDE (__tbss_end = (__tbss_start + __tbss_size)) + [!provide] PROVIDE (__tls_start = __tdata_start) + [!provide] PROVIDE (__tls_end = __tbss_end) + [!provide] PROVIDE (__tls_size = (__tbss_end - __tdata_start)) + +rodata 0x000000000800ae10 0x194c + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x000000000800ae10 0xa app/libapp.a(gs_usb_can.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x000000000800ae1a 0x2 + .rodata.pfet2 0x000000000800ae1c 0x8 app/libapp.a(pfet_control.c.obj) + .rodata.pfet1 0x000000000800ae24 0x8 app/libapp.a(pfet_control.c.obj) + .rodata.mpsc_config + 0x000000000800ae2c 0x14 zephyr/libzephyr.a(log_core.c.obj) + .rodata.format_table + 0x000000000800ae40 0x10 zephyr/libzephyr.a(log_core.c.obj) + .rodata.colors + 0x000000000800ae50 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.severity + 0x000000000800ae64 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.lbu_cb_ctx + 0x000000000800ae78 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.lbu_output + 0x000000000800ae80 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.log_backend_uart_api + 0x000000000800ae90 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ae90 log_backend_uart_api + .rodata.__pinctrl_dev_config__device_dts_ord_70 + 0x000000000800aeac 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_70 + 0x000000000800aeb4 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_70 + 0x000000000800aebc 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.pclken + 0x000000000800aecc 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.can_mcan_cfg_0 + 0x000000000800aedc 0x48 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_cfg_0 + 0x000000000800af24 0x1c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_pclken_0 + 0x000000000800af40 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_cbs_0 + 0x000000000800af50 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_43 + 0x000000000800af60 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_states__device_dts_ord_43 + 0x000000000800af68 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_43 + 0x000000000800af70 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_ops + 0x000000000800af80 0x14 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.gpio_stm32_cfg_f + 0x000000000800af94 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_e + 0x000000000800afa8 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_d + 0x000000000800afbc 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_c + 0x000000000800afd0 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_b + 0x000000000800afe4 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_a + 0x000000000800aff8 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_ports + 0x000000000800b00c 0x68 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .rodata.reset_stm32_config + 0x000000000800b074 0x4 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .rodata.uart_stm32_cfg_0 + 0x000000000800b078 0x24 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.pclken_0 + 0x000000000800b09c 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_58 + 0x000000000800b0a4 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_58 + 0x000000000800b0ac 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_58 + 0x000000000800b0b4 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.AHBPrescTable + 0x000000000800b0c4 0x40 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x000000000800b0c4 AHBPrescTable + .rodata.CSWTCH.489 + 0x000000000800b104 0x14 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.levels.0 + 0x000000000800b118 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.cfg.0 0x000000000800b130 0xc zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.CSWTCH.807 + 0x000000000800b13c 0x6 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.main.str1.1 + 0x000000000800b142 0x124 app/libapp.a(main.c.obj) + .rodata.str1.1 + 0x000000000800b266 0x124 app/libapp.a(main.c.obj) + 0x5 (size before relaxing) + .rodata.cdc_handler_init.str1.1 + 0x000000000800b266 0x31 app/libapp.a(cdc_handler.c.obj) + .rodata.cdc_handler_process.str1.1 + 0x000000000800b297 0x8b app/libapp.a(cdc_handler.c.obj) + 0x92 (size before relaxing) + .rodata.str1.1 + 0x000000000800b322 0xc app/libapp.a(cdc_handler.c.obj) + .rodata.pfet_control_init.str1.1 + 0x000000000800b32e 0x79 app/libapp.a(pfet_control.c.obj) + .rodata.pfet_set_state.str1.1 + 0x000000000800b3a7 0x12 app/libapp.a(pfet_control.c.obj) + 0x19 (size before relaxing) + .rodata.str1.1 + 0x000000000800b3b9 0xd app/libapp.a(pfet_control.c.obj) + .rodata.can_rx_callback.str1.1 + 0x000000000800b3c6 0x19 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_can_init.str1.1 + 0x000000000800b3df 0x73 app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.3 + 0x000000000800b452 0x10 app/libapp.a(gs_usb_can.c.obj) + .rodata.str1.1 + 0x000000000800b462 0xb app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_send_frame_to_host.str1.1 + 0x000000000800b46d 0x20 app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.usb_gs_usb_init.str1.1 + 0x000000000800b48d 0x63 app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.__func__.0 + 0x000000000800b4f0 0x1a app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.str1.1 + 0x000000000800b50a 0xb app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.cbprintf_package_convert.str1.1 + 0x000000000800b515 0xa3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x000000000800b5b8 0x11 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x000000000800b5c9 0x14 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .rodata.enable_logger.str1.1 + 0x000000000800b5dd 0x8 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x000000000800b5e5 0x4 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x000000000800b5e9 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.z_impl_z_log_msg_static_create.str1.1 + 0x000000000800b5f2 0x3f zephyr/libzephyr.a(log_msg.c.obj) + .rodata.z_log_msg_runtime_vcreate.str1.1 + 0x000000000800b631 0x38 zephyr/libzephyr.a(log_msg.c.obj) + .rodata.newline_print.str1.1 + 0x000000000800b669 0x38 zephyr/libzephyr.a(log_output.c.obj) + 0x5 (size before relaxing) + .rodata.log_output_process.str1.1 + 0x000000000800b669 0x4c zephyr/libzephyr.a(log_output.c.obj) + 0x51 (size before relaxing) + .rodata.log_output_dropped_process.str1.1 + 0x000000000800b6b5 0x4c zephyr/libzephyr.a(log_output.c.obj) + 0x3 (size before relaxing) + .rodata.postfix.0 + 0x000000000800b6b5 0x1c zephyr/libzephyr.a(log_output.c.obj) + .rodata.prefix.1 + 0x000000000800b6d1 0xc zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x000000000800b6dd 0x20 zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x000000000800b6fd 0x1a zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.usb_halt_endpoint_req.str1.1 + 0x000000000800b717 0x28 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.get_ep_bm_from_addr.part.0.str1.1 + 0x000000000800b73f 0x1b zephyr/libzephyr.a(usb_device.c.obj) + .rodata.disable_endpoint.str1.1 + 0x000000000800b75a 0x43 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.set_endpoint.str1.1 + 0x000000000800b79d 0x88 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_write.str1.1 + 0x000000000800b825 0x27 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_handle_control_transfer.str1.1 + 0x000000000800b84c 0x19 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_enable.str1.1 + 0x000000000800b865 0x77 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.str1.1 + 0x000000000800b8dc 0xb zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_update_sn_string_descriptor.str1.1 + 0x000000000800b8e7 0x11 zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.usb_get_device_descriptor.str1.1 + 0x000000000800b8f8 0x105 zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.str1.1 + 0x000000000800b9fd 0xf zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.usb_transfer_work.str1.1 + 0x000000000800ba0c 0x1d zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.str1.1 + 0x000000000800ba29 0xd zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.z_arm_fatal_error.str1.1 + 0x000000000800ba36 0xae zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .rodata.z_arm_fault.str1.1 + 0x000000000800bae4 0x9f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .rodata.str1.1 + 0x000000000800bb83 0x7 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .rodata.line_range_2.0 + 0x000000000800bb8a 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.line_range_1.1 + 0x000000000800bb8c 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.line_range_0.2 + 0x000000000800bb8e 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.stm32_exti_init.str1.1 + 0x000000000800bb90 0x1f zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.stm32_exti_disable_falling_trig.part.0.str1.1 + 0x000000000800bbaf 0x17 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.str1.1 + 0x000000000800bbc6 0x29 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.usb_dc_ep_read_continue.part.0.str1.1 + 0x000000000800bbef 0x19 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_get_read_count.part.0.str1.1 + 0x000000000800bc08 0x12 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_attach.str1.1 + 0x000000000800bc1a 0xf7 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_set_address.str1.1 + 0x000000000800bd11 0x26 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_start_read.str1.1 + 0x000000000800bd37 0x26 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_check_cap.str1.1 + 0x000000000800bd5d 0x43 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_set_stall.str1.1 + 0x000000000800bda0 0x27 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_clear_stall.str1.1 + 0x000000000800bdc7 0x27 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_enable.str1.1 + 0x000000000800bdee 0x23 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_disable.str1.1 + 0x000000000800be11 0x24 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_write.str1.1 + 0x000000000800be35 0x45 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_read_wait.str1.1 + 0x000000000800be7a 0x45 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.str1.1 + 0x000000000800bebf 0xd zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.z_impl_can_send.str1.1 + 0x000000000800becc 0x3f zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_add_rx_filter.str1.1 + 0x000000000800bf0b 0x42 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.str1.1 + 0x000000000800bf4d 0xb zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_mcan_read_reg.str1.1 + 0x000000000800bf58 0x23 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_write_reg.str1.1 + 0x000000000800bf7b 0x24 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_get_message.str1.1 + 0x000000000800bf9f 0x5d zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_start.str1.1 + 0x000000000800bffc 0x4d zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_set_mode.str1.1 + 0x000000000800c049 0x19 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_line_1_isr.str1.1 + 0x000000000800c062 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_line_0_isr.str1.1 + 0x000000000800c08e 0x71 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_send.str1.1 + 0x000000000800c0ff 0x114 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_add_rx_filter_std.str1.1 + 0x000000000800c213 0x4c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_add_rx_filter.str1.1 + 0x000000000800c25f 0x44 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_remove_rx_filter.str1.1 + 0x000000000800c2a3 0x73 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_stop.str1.1 + 0x000000000800c316 0x45 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_configure_mram.str1.1 + 0x000000000800c35b 0x1a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_init.str1.1 + 0x000000000800c375 0xaf zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.dlc_table.0 + 0x000000000800c424 0x10 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.str1.1 + 0x000000000800c434 0x9 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_stm32fd_init.str1.1 + 0x000000000800c43d 0x69 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_get_core_clock.str1.1 + 0x000000000800c4a6 0x58 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.str1.1 + 0x000000000800c4fe 0x19 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.str1.1 + 0x000000000800c517 0xd zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .rodata.str1.1 + 0x000000000800c524 0x54 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x5a (size before relaxing) + .rodata.str1.1 + 0x000000000800c578 0x11 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .rodata.uart_stm32_set_baudrate.str1.1 + 0x000000000800c589 0x45 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.uart_stm32_init.str1.1 + 0x000000000800c5ce 0x5d zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x7c (size before relaxing) + .rodata.str1.1 + 0x000000000800c62b 0x1b zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.k_sys_fatal_error_handler.str1.1 + 0x000000000800c646 0xf zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_fatal_error.str1.1 + 0x000000000800c655 0x77 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.str1.1 + 0x000000000800c6cc 0x4a zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_cstart.str1.1 + 0x000000000800c716 0x5 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x000000000800c716 0x3 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x000000000800c719 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.boot_banner.str1.1 + 0x000000000800c722 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x000000000800c74a 0xf c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + 0x000000000800c75c . = ALIGN (0x4) + *fill* 0x000000000800c759 0x3 + [!provide] PROVIDE (__eh_frame_start = 0x0) + [!provide] PROVIDE (__eh_frame_end = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_start = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_end = 0x0) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + 0x000000000800c75c __rodata_region_end = . + 0x000000000800c75c . = ALIGN (_region_min_align) + 0x000000000800c75c __rom_region_end = ((__rom_region_start + .) - ADDR (rom_start)) + 0x000000000000c75c __rom_region_size = (__rom_region_end - __rom_region_start) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.got.plt)) + *(SORT_BY_ALIGNMENT(.igot.plt)) + *(SORT_BY_ALIGNMENT(.got)) + *(SORT_BY_ALIGNMENT(.igot)) + 0x0000000020000000 . = 0x20000000 + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 _image_ram_start = . + +.ramfunc 0x0000000020000000 0x0 load address 0x000000000800c75c + 0x0000000020000000 __ramfunc_region_start = . + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 __ramfunc_start = . + *(SORT_BY_ALIGNMENT(.ramfunc)) + *(SORT_BY_ALIGNMENT(.ramfunc.*)) + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 __ramfunc_end = . + 0x0000000000000000 __ramfunc_size = (__ramfunc_end - __ramfunc_start) + 0x000000000800c75c __ramfunc_load_start = LOADADDR (.ramfunc) + +datas 0x0000000020000000 0x50 load address 0x000000000800c75c + 0x0000000020000000 __data_region_start = . + 0x0000000020000000 __data_start = . + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data._char_out + 0x0000000020000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.timestamp_func + 0x0000000020000004 0x4 zephyr/libzephyr.a(log_core.c.obj) + .data.backend_cb_log_backend_uart + 0x0000000020000008 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data.__stdout + 0x0000000020000010 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.uart_stm32_data_0 + 0x0000000020000020 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data.uart_cfg_0 + 0x0000000020000028 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data.SystemCoreClock + 0x0000000020000030 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x0000000020000030 SystemCoreClock + .data.slice_ticks + 0x0000000020000034 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data.timeout_list + 0x0000000020000038 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.exti_irq_table + 0x0000000020000040 0x10 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + *(SORT_BY_ALIGNMENT(.kernel.*)) + 0x0000000020000050 __data_end = . + 0x0000000000000050 __data_size = (__data_end - __data_start) + 0x000000000800c75c __data_load_start = LOADADDR (datas) + 0x000000000800c75c __data_region_load_start = LOADADDR (datas) + +device_states 0x0000000020000050 0x18 load address 0x000000000800c7ac + 0x0000000020000050 . = ALIGN (0x4) + 0x0000000020000050 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x0000000020000050 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .z_devstate 0x0000000020000052 0x2 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .z_devstate 0x0000000020000054 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .z_devstate 0x0000000020000056 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_devstate 0x0000000020000062 0x2 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .z_devstate 0x0000000020000064 0x2 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x0000000020000066 __device_states_end = . + 0x0000000020000068 . = ALIGN (0x4) + *fill* 0x0000000020000066 0x2 + +log_mpsc_pbuf_area + 0x0000000020000068 0x38 load address 0x000000000800c7c4 + 0x0000000020000068 _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + ._log_mpsc_pbuf.static.log_buffer_ + 0x0000000020000068 0x38 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000a0 _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x00000000200000a0 0x4 load address 0x000000000800c7fc + 0x00000000200000a0 _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + ._log_msg_ptr.static.log_msg_ptr_ + 0x00000000200000a0 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000a4 _log_msg_ptr_list_end = . + +log_dynamic_area + 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x00000000200000a4 _log_dynamic_list_end = . + +k_timer_area 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + 0x00000000200000a4 _k_timer_list_end = . + +k_mem_slab_area + 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + 0x00000000200000a4 _k_mem_slab_list_end = . + +k_heap_area 0x00000000200000a4 0x14 load address 0x000000000800c800 + 0x00000000200000a4 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + ._k_heap.static._system_heap_ + 0x00000000200000a4 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x00000000200000a4 _system_heap + 0x00000000200000b8 _k_heap_list_end = . + +k_mutex_area 0x00000000200000b8 0x14 load address 0x000000000800c814 + 0x00000000200000b8 _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.usb_enable_lock_ + 0x00000000200000b8 0x14 zephyr/libzephyr.a(usb_device.c.obj) + 0x00000000200000b8 usb_enable_lock + 0x00000000200000cc _k_mutex_list_end = . + +k_stack_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x00000000200000cc _k_stack_list_end = . + +k_msgq_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x00000000200000cc _k_msgq_list_end = . + +k_mbox_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x00000000200000cc _k_mbox_list_end = . + +k_pipe_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x00000000200000cc _k_pipe_list_end = . + +k_sem_area 0x00000000200000cc 0x10 load address 0x000000000800c828 + 0x00000000200000cc _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.log_process_thread_sem_ + 0x00000000200000cc 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000cc log_process_thread_sem + 0x00000000200000dc _k_sem_list_end = . + +k_event_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x00000000200000dc _k_event_list_end = . + +k_queue_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x00000000200000dc _k_queue_list_end = . + +k_fifo_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + 0x00000000200000dc _k_fifo_list_end = . + +k_lifo_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x00000000200000dc _k_lifo_list_end = . + +k_condvar_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x00000000200000dc _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x00000000200000dc _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x00000000200000dc _net_buf_pool_list_end = . + +usb_descriptor 0x00000000200000dc 0x6f load address 0x000000000800c838 + 0x00000000200000dc __usb_descriptor_start = . + *(SORT_BY_ALIGNMENT(.usb.descriptor)) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.usb.descriptor*))) + .usb.descriptor_primary.0 + 0x00000000200000dc 0x1b zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.4 + 0x00000000200000f7 0x52 zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.6 + 0x0000000020000149 0x2 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000002000014b __usb_descriptor_end = . + +usb_cfg_data_area + 0x000000002000014b 0x0 load address 0x000000000800c8a7 + 0x000000002000014b _usb_cfg_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usb_cfg_data.static.*))) + 0x000000002000014b _usb_cfg_data_list_end = . + 0x000000002000014b __data_region_end = . + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x0000000000000000 0x20 + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x0000000000000000 0x20 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x21 (size before relaxing) + .comment 0x0000000000000020 0x21 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .comment 0x0000000000000020 0x21 app/libapp.a(main.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(cdc_handler.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(pfet_control.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(gs_usb_can.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(usb_gs_usb_class.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(last_section_id.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(soc_config.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(soc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_core.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_mgmt.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_msg.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_output.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_backend_uart.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_descriptor.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_transfer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libarch__common.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libarch__common.a(xip.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(banner.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x0000000000000000 0x1e30 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_aranges + 0x0000000000000020 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_aranges + 0x0000000000000040 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_aranges + 0x0000000000000060 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_aranges + 0x0000000000000088 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_aranges + 0x00000000000000a8 0x18 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_aranges + 0x00000000000000c0 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_aranges + 0x00000000000000e0 0x20 app/libapp.a(main.c.obj) + .debug_aranges + 0x0000000000000100 0x28 app/libapp.a(cdc_handler.c.obj) + .debug_aranges + 0x0000000000000128 0x40 app/libapp.a(pfet_control.c.obj) + .debug_aranges + 0x0000000000000168 0x40 app/libapp.a(gs_usb_can.c.obj) + .debug_aranges + 0x00000000000001a8 0x28 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_aranges + 0x00000000000001d0 0xa0 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x0000000000000270 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x00000000000002b0 0x48 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x00000000000002f8 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x0000000000000318 0xb0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_aranges + 0x00000000000003c8 0x18 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_aranges + 0x00000000000003e0 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x0000000000000400 0x20 zephyr/libzephyr.a(soc_config.c.obj) + .debug_aranges + 0x0000000000000420 0x28 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_aranges + 0x0000000000000448 0x20 zephyr/libzephyr.a(soc.c.obj) + .debug_aranges + 0x0000000000000468 0x178 zephyr/libzephyr.a(log_core.c.obj) + .debug_aranges + 0x00000000000005e0 0xb8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_aranges + 0x0000000000000698 0x60 zephyr/libzephyr.a(log_msg.c.obj) + .debug_aranges + 0x00000000000006f8 0x70 zephyr/libzephyr.a(log_output.c.obj) + .debug_aranges + 0x0000000000000768 0x48 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_aranges + 0x00000000000007b0 0xf8 zephyr/libzephyr.a(usb_device.c.obj) + .debug_aranges + 0x00000000000008a8 0x48 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_aranges + 0x00000000000008f0 0x68 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_aranges + 0x0000000000000958 0x30 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_aranges + 0x0000000000000988 0x20 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_aranges + 0x00000000000009a8 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_aranges + 0x00000000000009d8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_aranges + 0x00000000000009f8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_aranges + 0x0000000000000a18 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_aranges + 0x0000000000000a38 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_aranges + 0x0000000000000a60 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_aranges + 0x0000000000000a80 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_aranges + 0x0000000000000ac0 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_aranges + 0x0000000000000ae8 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_aranges + 0x0000000000000b28 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_aranges + 0x0000000000000b58 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_aranges + 0x0000000000000b78 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_aranges + 0x0000000000000b98 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x0000000000000bc0 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x0000000000000bf8 0x60 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x0000000000000c58 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_aranges + 0x0000000000000c80 0x68 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_aranges + 0x0000000000000ce8 0x90 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_aranges + 0x0000000000000d78 0x148 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_aranges + 0x0000000000000ec0 0x88 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_aranges + 0x0000000000000f48 0x108 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_aranges + 0x0000000000001050 0x60 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_aranges + 0x00000000000010b0 0x60 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_aranges + 0x0000000000001110 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_aranges + 0x0000000000001140 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x0000000000001170 0x78 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_aranges + 0x00000000000011e8 0x38 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_aranges + 0x0000000000001220 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x0000000000001240 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_aranges + 0x0000000000001260 0x38 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_aranges + 0x0000000000001298 0x60 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_aranges + 0x00000000000012f8 0x60 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_aranges + 0x0000000000001358 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_aranges + 0x0000000000001380 0x98 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_aranges + 0x0000000000001418 0x130 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_aranges + 0x0000000000001548 0x58 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_aranges + 0x00000000000015a0 0x118 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_aranges + 0x00000000000016b8 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_aranges + 0x0000000000001708 0x50 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x0000000000001758 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x0000000000001790 0x40 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00000000000017d0 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x00000000000017f8 0x38 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x0000000000001830 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x0000000000001868 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_aranges + 0x0000000000001888 0x120 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x00000000000019a8 0x90 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x0000000000001a38 0x178 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x0000000000001bb0 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x0000000000001bf0 0x98 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x0000000000001c88 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x0000000000001cd0 0x78 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_aranges + 0x0000000000001d48 0x68 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x0000000000001db0 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_aranges + 0x0000000000001dd0 0x60 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x0000000000000000 0x10b4d5 + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x0000000000000000 0x1e9 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_info 0x00000000000001e9 0x122 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_info 0x000000000000030b 0x48b4 app/libapp.a(main.c.obj) + .debug_info 0x0000000000004bbf 0x18ab app/libapp.a(cdc_handler.c.obj) + .debug_info 0x000000000000646a 0x3e29 app/libapp.a(pfet_control.c.obj) + .debug_info 0x000000000000a293 0x8689 app/libapp.a(gs_usb_can.c.obj) + .debug_info 0x000000000001291c 0x24c1 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_info 0x0000000000014ddd 0x335e zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x000000000001813b 0x2312 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x000000000001a44d 0x4ba zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x000000000001a907 0x72e zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x000000000001b035 0x24f1 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_info 0x000000000001d526 0x95 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_info 0x000000000001d5bb 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x000000000001d5f3 0x50a zephyr/libzephyr.a(soc_config.c.obj) + .debug_info 0x000000000001dafd 0x1178 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_info 0x000000000001ec75 0x5ba zephyr/libzephyr.a(soc.c.obj) + .debug_info 0x000000000001f22f 0x46bd zephyr/libzephyr.a(log_core.c.obj) + .debug_info 0x00000000000238ec 0x2296 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_info 0x0000000000025b82 0x2810 zephyr/libzephyr.a(log_msg.c.obj) + .debug_info 0x0000000000028392 0x2166 zephyr/libzephyr.a(log_output.c.obj) + .debug_info 0x000000000002a4f8 0x1ace zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_info 0x000000000002bfc6 0x20e9e zephyr/libzephyr.a(usb_device.c.obj) + .debug_info 0x000000000004ce64 0x107d5 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_info 0x000000000005d639 0x73d9 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_info 0x0000000000064a12 0x201 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_info 0x0000000000064c13 0x173 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_info 0x0000000000064d86 0x3d87 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_info 0x0000000000068b0d 0xfc zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_info 0x0000000000068c09 0x23 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_info 0x0000000000068c2c 0x712 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_info 0x000000000006933e 0x67c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_info 0x00000000000699ba 0x313c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_info 0x000000000006caf6 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_info 0x000000000006cb19 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_info 0x000000000006cb3c 0x721 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_info 0x000000000006d25d 0x22 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_info 0x000000000006d27f 0x75f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_info 0x000000000006d9de 0x2fb zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_info 0x000000000006dcd9 0x9fc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_info 0x000000000006e6d5 0x2d8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_info 0x000000000006e9ad 0x410 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_info 0x000000000006edbd 0x1f1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_info 0x000000000006efae 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_info 0x000000000006efd1 0x342 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x000000000006f313 0x415 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x000000000006f728 0xdf6 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x000000000007051e 0x187c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_info 0x0000000000071d9a 0x1168 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_info 0x0000000000072f02 0xae97 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_info 0x000000000007dd99 0x2466c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_info 0x00000000000a2405 0x5ac7 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_info 0x00000000000a7ecc 0x21432 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_info 0x00000000000c92fe 0x5699 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_info 0x00000000000ce997 0x14c6 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_info 0x00000000000cfe5d 0x464 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_info 0x00000000000d02c1 0x8ac zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x00000000000d0b6d 0x2aad zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_info 0x00000000000d361a 0x65a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_info 0x00000000000d3c74 0x1b2 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x00000000000d3e26 0x5ae zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_info 0x00000000000d43d4 0x69a zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_info 0x00000000000d4a6e 0x7431 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_info 0x00000000000dbe9f 0xfd5 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_info 0x00000000000dce74 0x37d modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_info 0x00000000000dd1f1 0xeae modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_info 0x00000000000de09f 0x1c32 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_info 0x00000000000dfcd1 0x947 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_info 0x00000000000e0618 0x1f14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_info 0x00000000000e252c 0xd56 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_info 0x00000000000e3282 0x49c zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x00000000000e371e 0x325c zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x00000000000e697a 0x18d1 zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x00000000000e824b 0x2d4 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x00000000000e851f 0x7f39 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x00000000000f0458 0x135a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x00000000000f17b2 0x90d zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_info 0x00000000000f20bf 0x5c04 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x00000000000f7cc3 0x2a82 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x00000000000fa745 0x9951 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0000000000104096 0xe98 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x0000000000104f2e 0x19ba zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x00000000001068e8 0x165e zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x0000000000107f46 0x1147 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_info 0x000000000010908d 0x10c2 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x000000000010a14f 0x10b zephyr/kernel/libkernel.a(banner.c.obj) + .debug_info 0x000000000010a25a 0x127b zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_abbrev 0x0000000000000000 0x13414 + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x0000000000000000 0x13f zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_abbrev 0x000000000000013f 0x9b zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_abbrev 0x00000000000001da 0x457 app/libapp.a(main.c.obj) + .debug_abbrev 0x0000000000000631 0x42a app/libapp.a(cdc_handler.c.obj) + .debug_abbrev 0x0000000000000a5b 0x4c9 app/libapp.a(pfet_control.c.obj) + .debug_abbrev 0x0000000000000f24 0x593 app/libapp.a(gs_usb_can.c.obj) + .debug_abbrev 0x00000000000014b7 0x32f app/libapp.a(usb_gs_usb_class.c.obj) + .debug_abbrev 0x00000000000017e6 0x454 zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000000000001c3a 0x572 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x00000000000021ac 0x295 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x0000000000002441 0x2d4 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x0000000000002715 0x5f8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_abbrev 0x0000000000002d0d 0x46 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_abbrev 0x0000000000002d53 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x0000000000002d81 0x221 zephyr/libzephyr.a(soc_config.c.obj) + .debug_abbrev 0x0000000000002fa2 0x419 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_abbrev 0x00000000000033bb 0x1e7 zephyr/libzephyr.a(soc.c.obj) + .debug_abbrev 0x00000000000035a2 0x910 zephyr/libzephyr.a(log_core.c.obj) + .debug_abbrev 0x0000000000003eb2 0x63c zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_abbrev 0x00000000000044ee 0x5c7 zephyr/libzephyr.a(log_msg.c.obj) + .debug_abbrev 0x0000000000004ab5 0x5c6 zephyr/libzephyr.a(log_output.c.obj) + .debug_abbrev 0x000000000000507b 0x461 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_abbrev 0x00000000000054dc 0x753 zephyr/libzephyr.a(usb_device.c.obj) + .debug_abbrev 0x0000000000005c2f 0x5bd zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_abbrev 0x00000000000061ec 0x694 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_abbrev 0x0000000000006880 0xe5 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_abbrev 0x0000000000006965 0xe4 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_abbrev 0x0000000000006a49 0x3dc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_abbrev 0x0000000000006e25 0x9b zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_abbrev 0x0000000000006ec0 0x14 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_abbrev 0x0000000000006ed4 0x2a6 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_abbrev 0x000000000000717a 0x190 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_abbrev 0x000000000000730a 0x4ce zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_abbrev 0x00000000000077d8 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_abbrev 0x00000000000077ec 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_abbrev 0x0000000000007800 0x235 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_abbrev 0x0000000000007a35 0x12 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_abbrev 0x0000000000007a47 0x280 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_abbrev 0x0000000000007cc7 0x186 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_abbrev 0x0000000000007e4d 0x356 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_abbrev 0x00000000000081a3 0x16d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_abbrev 0x0000000000008310 0x170 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_abbrev 0x0000000000008480 0x154 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_abbrev 0x00000000000085d4 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_abbrev 0x00000000000085e8 0x1b0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x0000000000008798 0x219 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x00000000000089b1 0x42d zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x0000000000008dde 0x287 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_abbrev 0x0000000000009065 0x4e1 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_abbrev 0x0000000000009546 0x5da zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_abbrev 0x0000000000009b20 0x691 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_abbrev 0x000000000000a1b1 0x641 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_abbrev 0x000000000000a7f2 0x7d4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_abbrev 0x000000000000afc6 0x5d8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_abbrev 0x000000000000b59e 0x519 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_abbrev 0x000000000000bab7 0x1b5 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_abbrev 0x000000000000bc6c 0x397 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x000000000000c003 0x54b zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_abbrev 0x000000000000c54e 0x1df zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_abbrev 0x000000000000c72d 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x000000000000c7fd 0x2a9 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_abbrev 0x000000000000caa6 0x294 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_abbrev 0x000000000000cd3a 0x66f zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_abbrev 0x000000000000d3a9 0x4d4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_abbrev 0x000000000000d87d 0x142 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_abbrev 0x000000000000d9bf 0x357 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_abbrev 0x000000000000dd16 0x401 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_abbrev 0x000000000000e117 0x2b3 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_abbrev 0x000000000000e3ca 0x378 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_abbrev 0x000000000000e742 0x31c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_abbrev 0x000000000000ea5e 0x22c zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x000000000000ec8a 0x4c7 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x000000000000f151 0x6c7 zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x000000000000f818 0x1c6 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x000000000000f9de 0x4cf zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x000000000000fead 0x450 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x00000000000102fd 0x255 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_abbrev 0x0000000000010552 0x6b2 zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x0000000000010c04 0x5c3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x00000000000111c7 0x701 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x00000000000118c8 0x43d zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0000000000011d05 0x51d zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0000000000012222 0x4ed zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x000000000001270f 0x2dc zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_abbrev 0x00000000000129eb 0x49f zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0000000000012e8a 0xbe zephyr/kernel/libkernel.a(banner.c.obj) + .debug_abbrev 0x0000000000012f48 0x4cc zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_line 0x0000000000000000 0x3c170 + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x0000000000000000 0x1f6 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_line 0x00000000000001f6 0x25e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_line 0x0000000000000454 0xb2c app/libapp.a(main.c.obj) + .debug_line 0x0000000000000f80 0x7a3 app/libapp.a(cdc_handler.c.obj) + .debug_line 0x0000000000001723 0x1106 app/libapp.a(pfet_control.c.obj) + .debug_line 0x0000000000002829 0xff9 app/libapp.a(gs_usb_can.c.obj) + .debug_line 0x0000000000003822 0x721 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_line 0x0000000000003f43 0x130b zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x000000000000524e 0x17b9 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000000000006a07 0x421 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000000000006e28 0x48d zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x00000000000072b5 0x1b07 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_line 0x0000000000008dbc 0x114 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_line 0x0000000000008ed0 0x24e zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x000000000000911e 0x309 zephyr/libzephyr.a(soc_config.c.obj) + .debug_line 0x0000000000009427 0x7f2 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_line 0x0000000000009c19 0x32a zephyr/libzephyr.a(soc.c.obj) + .debug_line 0x0000000000009f43 0x198f zephyr/libzephyr.a(log_core.c.obj) + .debug_line 0x000000000000b8d2 0xd38 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_line 0x000000000000c60a 0xed2 zephyr/libzephyr.a(log_msg.c.obj) + .debug_line 0x000000000000d4dc 0xcfe zephyr/libzephyr.a(log_output.c.obj) + .debug_line 0x000000000000e1da 0x744 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_line 0x000000000000e91e 0x20d0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_line 0x00000000000109ee 0xcfb zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_line 0x00000000000116e9 0x104f zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_line 0x0000000000012738 0x1d3 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_line 0x000000000001290b 0x2ab zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_line 0x0000000000012bb6 0x7bd zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_line 0x0000000000013373 0x1e3 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_line 0x0000000000013556 0x73 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_line 0x00000000000135c9 0x4a9 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_line 0x0000000000013a72 0x3ca zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_line 0x0000000000013e3c 0x88a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_line 0x00000000000146c6 0x80 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_line 0x0000000000014746 0x8e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_line 0x00000000000147d4 0x4fd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_line 0x0000000000014cd1 0xf1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_line 0x0000000000014dc2 0x48c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_line 0x000000000001524e 0x3b3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_line 0x0000000000015601 0x664 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_line 0x0000000000015c65 0x32d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_line 0x0000000000015f92 0x2ff zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_line 0x0000000000016291 0x2e8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_line 0x0000000000016579 0x81 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_line 0x00000000000165fa 0x2e1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x00000000000168db 0x378 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0000000000016c53 0x7dc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x000000000001742f 0x5b7 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_line 0x00000000000179e6 0x8ca zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_line 0x00000000000182b0 0x1162 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_line 0x0000000000019412 0x225b zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_line 0x000000000001b66d 0x1f58 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_line 0x000000000001d5c5 0x3185 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_line 0x000000000002074a 0xf63 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_line 0x00000000000216ad 0xc7f zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_line 0x000000000002232c 0x330 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_line 0x000000000002265c 0x4eb zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x0000000000022b47 0x1030 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_line 0x0000000000023b77 0x4fa zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_line 0x0000000000024071 0x1f6 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0000000000024267 0x496 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_line 0x00000000000246fd 0x3fb zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_line 0x0000000000024af8 0x1f68 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_line 0x0000000000026a60 0xbc7 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_line 0x0000000000027627 0x2a9 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_line 0x00000000000278d0 0xfad modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_line 0x000000000002887d 0x1487 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_line 0x0000000000029d04 0x51a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_line 0x000000000002a21e 0x1e95 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_line 0x000000000002c0b3 0x8e2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_line 0x000000000002c995 0x521 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x000000000002ceb6 0xbb1 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x000000000002da67 0xbe6 zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x000000000002e64d 0x3f7 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x000000000002ea44 0xc65 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x000000000002f6a9 0xb65 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x000000000003020e 0x3de zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_line 0x00000000000305ec 0x2b6c zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0000000000033158 0xc04 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0000000000033d5c 0x3d4c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x0000000000037aa8 0x7c2 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x000000000003826a 0x114f zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x00000000000393b9 0xd80 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000000000003a139 0xc33 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_line 0x000000000003ad6c 0x870 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x000000000003b5dc 0x1da zephyr/kernel/libkernel.a(banner.c.obj) + .debug_line 0x000000000003b7b6 0x9ba zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_frame 0x0000000000000000 0x4b6c + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_frame 0x0000000000000020 0x2c app/libapp.a(main.c.obj) + .debug_frame 0x000000000000004c 0x4c app/libapp.a(cdc_handler.c.obj) + .debug_frame 0x0000000000000098 0x98 app/libapp.a(pfet_control.c.obj) + .debug_frame 0x0000000000000130 0xac app/libapp.a(gs_usb_can.c.obj) + .debug_frame 0x00000000000001dc 0x48 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_frame 0x0000000000000224 0x204 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x0000000000000428 0xb0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x00000000000004d8 0x94 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x000000000000056c 0x34 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x00000000000005a0 0x228 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_frame 0x00000000000007c8 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x00000000000007e8 0x24 zephyr/libzephyr.a(soc_config.c.obj) + .debug_frame 0x000000000000080c 0x40 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_frame 0x000000000000084c 0x24 zephyr/libzephyr.a(soc.c.obj) + .debug_frame 0x0000000000000870 0x448 zephyr/libzephyr.a(log_core.c.obj) + .debug_frame 0x0000000000000cb8 0x1a4 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_frame 0x0000000000000e5c 0x114 zephyr/libzephyr.a(log_msg.c.obj) + .debug_frame 0x0000000000000f70 0x148 zephyr/libzephyr.a(log_output.c.obj) + .debug_frame 0x00000000000010b8 0xa4 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_frame 0x000000000000115c 0x310 zephyr/libzephyr.a(usb_device.c.obj) + .debug_frame 0x000000000000146c 0xa4 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_frame 0x0000000000001510 0x128 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_frame 0x0000000000001638 0x58 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_frame 0x0000000000001690 0x28 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_frame 0x00000000000016b8 0x68 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_frame 0x0000000000001720 0x28 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_frame 0x0000000000001748 0x34 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_frame 0x000000000000177c 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_frame 0x000000000000179c 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_frame 0x00000000000017e0 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_frame 0x0000000000001808 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_frame 0x000000000000187c 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_frame 0x00000000000018b4 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_frame 0x0000000000001928 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_frame 0x0000000000001968 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_frame 0x0000000000001998 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_frame 0x00000000000019c0 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x0000000000001a08 0x60 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x0000000000001a68 0xfc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x0000000000001b64 0x4c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_frame 0x0000000000001bb0 0xf4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_frame 0x0000000000001ca4 0x184 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_frame 0x0000000000001e28 0x3f4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_frame 0x000000000000221c 0x1b4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_frame 0x00000000000023d0 0x37c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_frame 0x000000000000274c 0xe0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_frame 0x000000000000282c 0xe0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_frame 0x000000000000290c 0x44 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_frame 0x0000000000002950 0x54 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x00000000000029a4 0x138 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_frame 0x0000000000002adc 0x68 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_frame 0x0000000000002b44 0x2c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x0000000000002b70 0x34 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_frame 0x0000000000002ba4 0x5c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_frame 0x0000000000002c00 0x10c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_frame 0x0000000000002d0c 0xec zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_frame 0x0000000000002df8 0x38 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_frame 0x0000000000002e30 0x178 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_frame 0x0000000000002fa8 0x31c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_frame 0x00000000000032c4 0xb4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_frame 0x0000000000003378 0x2d4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_frame 0x000000000000364c 0xc0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_frame 0x000000000000370c 0xa4 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x00000000000037b0 0x74 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x0000000000003824 0xb4 zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00000000000038d8 0x38 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x0000000000003910 0x78 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x0000000000003988 0x78 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x0000000000003a00 0x2c zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x0000000000003a2c 0x3a8 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x0000000000003dd4 0x14c zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x0000000000003f20 0x480 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x00000000000043a0 0x80 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x0000000000004420 0x1b8 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00000000000045d8 0xa8 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x0000000000004680 0xe8 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_frame 0x0000000000004768 0x104 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x000000000000486c 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_frame 0x0000000000004894 0x110 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x00000000000049a4 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .debug_frame 0x00000000000049c4 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .debug_frame 0x00000000000049ec 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .debug_frame 0x0000000000004a0c 0x2c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .debug_frame 0x0000000000004a38 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .debug_frame 0x0000000000004a58 0x34 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x0000000000004a8c 0x50 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x0000000000004adc 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .debug_frame 0x0000000000004afc 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .debug_frame 0x0000000000004b1c 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .debug_frame 0x0000000000004b3c 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + +.debug_str 0x0000000000000000 0xda5f + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x0000000000000000 0x3af zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x3fa (size before relaxing) + .debug_str 0x00000000000003af 0x2f1 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x3ff (size before relaxing) + .debug_str 0x00000000000006a0 0x905 app/libapp.a(main.c.obj) + 0xed8 (size before relaxing) + .debug_str 0x0000000000000fa5 0x157 app/libapp.a(cdc_handler.c.obj) + 0xbcc (size before relaxing) + .debug_str 0x00000000000010fc 0x10b app/libapp.a(pfet_control.c.obj) + 0xec2 (size before relaxing) + .debug_str 0x0000000000001207 0x454 app/libapp.a(gs_usb_can.c.obj) + 0xfb7 (size before relaxing) + .debug_str 0x000000000000165b 0x164 app/libapp.a(usb_gs_usb_class.c.obj) + 0xb2c (size before relaxing) + .debug_str 0x00000000000017bf 0x452 zephyr/libzephyr.a(heap.c.obj) + 0x808 (size before relaxing) + .debug_str 0x0000000000001c11 0x341 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0xd27 (size before relaxing) + .debug_str 0x0000000000001f52 0xe3 zephyr/libzephyr.a(printk.c.obj) + 0x60e (size before relaxing) + .debug_str 0x0000000000002035 0x1e2 zephyr/libzephyr.a(thread_entry.c.obj) + 0x7c6 (size before relaxing) + .debug_str 0x0000000000002217 0x3f2 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x841 (size before relaxing) + .debug_str 0x0000000000002609 0x49 zephyr/libzephyr.a(last_section_id.c.obj) + 0x2db (size before relaxing) + .debug_str 0x0000000000002652 0x7d zephyr/libzephyr.a(configs.c.obj) + 0x26b (size before relaxing) + .debug_str 0x00000000000026cf 0x1a8 zephyr/libzephyr.a(soc_config.c.obj) + 0x579 (size before relaxing) + .debug_str 0x0000000000002877 0x1b1 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + 0xbe5 (size before relaxing) + .debug_str 0x0000000000002a28 0x1af zephyr/libzephyr.a(soc.c.obj) + 0x55c (size before relaxing) + .debug_str 0x0000000000002bd7 0xaeb zephyr/libzephyr.a(log_core.c.obj) + 0x1cd4 (size before relaxing) + .debug_str 0x00000000000036c2 0x568 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x100d (size before relaxing) + .debug_str 0x0000000000003c2a 0x10d zephyr/libzephyr.a(log_msg.c.obj) + 0xcbf (size before relaxing) + .debug_str 0x0000000000003d37 0x30e zephyr/libzephyr.a(log_output.c.obj) + 0xcfc (size before relaxing) + .debug_str 0x0000000000004045 0x1d5 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0xeb2 (size before relaxing) + .debug_str 0x000000000000421a 0xbca zephyr/libzephyr.a(usb_device.c.obj) + 0x1a46 (size before relaxing) + .debug_str 0x0000000000004de4 0x3b0 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x1493 (size before relaxing) + .debug_str 0x0000000000005194 0x1a7 zephyr/libzephyr.a(usb_transfer.c.obj) + 0xfcc (size before relaxing) + .debug_str 0x000000000000533b 0x80 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x329 (size before relaxing) + .debug_str 0x00000000000053bb 0xbf zephyr/arch/common/libarch__common.a(xip.c.obj) + 0x386 (size before relaxing) + .debug_str 0x000000000000547a 0x11b zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0xaa9 (size before relaxing) + .debug_str 0x0000000000005595 0x62 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x310 (size before relaxing) + .debug_str 0x00000000000055f7 0x4e zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x9c (size before relaxing) + .debug_str 0x0000000000005645 0xa8 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x7bc (size before relaxing) + .debug_str 0x00000000000056ed 0xa9 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x5ae (size before relaxing) + .debug_str 0x0000000000005796 0x16b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc75 (size before relaxing) + .debug_str 0x0000000000005901 0x46 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0xa0 (size before relaxing) + .debug_str 0x0000000000005947 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x9e (size before relaxing) + .debug_str 0x000000000000598b 0x69 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x5f8 (size before relaxing) + .debug_str 0x00000000000059f4 0x4a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0xa4 (size before relaxing) + .debug_str 0x0000000000005a3e 0x34b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x744 (size before relaxing) + .debug_str 0x0000000000005d89 0xc6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x42d (size before relaxing) + .debug_str 0x0000000000005e4f 0xde zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x6f0 (size before relaxing) + .debug_str 0x0000000000005f2d 0x7e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x3ab (size before relaxing) + .debug_str 0x0000000000005fab 0x47 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x608 (size before relaxing) + .debug_str 0x0000000000005ff2 0x55 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x37c (size before relaxing) + .debug_str 0x0000000000006047 0x4e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0xa8 (size before relaxing) + .debug_str 0x0000000000006095 0x5a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x3a0 (size before relaxing) + .debug_str 0x00000000000060ef 0xb7 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x5de (size before relaxing) + .debug_str 0x00000000000061a6 0x2ea zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x841 (size before relaxing) + .debug_str 0x0000000000006490 0xe4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + 0x997 (size before relaxing) + .debug_str 0x0000000000006574 0x567 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0xe28 (size before relaxing) + .debug_str 0x0000000000006adb 0x6a7 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x1309 (size before relaxing) + .debug_str 0x0000000000007182 0x975 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x1d43 (size before relaxing) + .debug_str 0x0000000000007af7 0x479 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x1314 (size before relaxing) + .debug_str 0x0000000000007f70 0x747 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x1820 (size before relaxing) + .debug_str 0x00000000000086b7 0x40c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x1ab7 (size before relaxing) + .debug_str 0x0000000000008ac3 0x481 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0xd03 (size before relaxing) + .debug_str 0x0000000000008f44 0xe8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x4d5 (size before relaxing) + .debug_str 0x000000000000902c 0x10e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x680 (size before relaxing) + .debug_str 0x000000000000913a 0x733 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x158d (size before relaxing) + .debug_str 0x000000000000986d 0x1d1 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + 0x617 (size before relaxing) + .debug_str 0x0000000000009a3e 0x3e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x37e (size before relaxing) + .debug_str 0x0000000000009a7c 0x90 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + 0x704 (size before relaxing) + .debug_str 0x0000000000009b0c 0x186 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x5bf (size before relaxing) + .debug_str 0x0000000000009c92 0xc69 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x1c06 (size before relaxing) + .debug_str 0x000000000000a8fb 0x171 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x999 (size before relaxing) + .debug_str 0x000000000000aa6c 0xac modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x439 (size before relaxing) + .debug_str 0x000000000000ab18 0x3a7 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + 0x940 (size before relaxing) + .debug_str 0x000000000000aebf 0x3bc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0xcab (size before relaxing) + .debug_str 0x000000000000b27b 0x1a8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x8ca (size before relaxing) + .debug_str 0x000000000000b423 0x3b5 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0xaa1 (size before relaxing) + .debug_str 0x000000000000b7d8 0x276 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + 0x848 (size before relaxing) + .debug_str 0x000000000000ba4e 0x10a zephyr/kernel/libkernel.a(device.c.obj) + 0x45f (size before relaxing) + .debug_str 0x000000000000bb58 0xbd zephyr/kernel/libkernel.a(fatal.c.obj) + 0xd95 (size before relaxing) + .debug_str 0x000000000000bc15 0x488 zephyr/kernel/libkernel.a(init.c.obj) + 0x11d2 (size before relaxing) + .debug_str 0x000000000000c09d 0x57 zephyr/kernel/libkernel.a(idle.c.obj) + 0x3f6 (size before relaxing) + .debug_str 0x000000000000c0f4 0x25e zephyr/kernel/libkernel.a(mutex.c.obj) + 0xcfe (size before relaxing) + .debug_str 0x000000000000c352 0x58 zephyr/kernel/libkernel.a(sem.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x000000000000c3aa 0xa6 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x8a9 (size before relaxing) + .debug_str 0x000000000000c450 0x720 zephyr/kernel/libkernel.a(work.c.obj) + 0x11cc (size before relaxing) + .debug_str 0x000000000000cb70 0x232 zephyr/kernel/libkernel.a(thread.c.obj) + 0xdcf (size before relaxing) + .debug_str 0x000000000000cda2 0x6e4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x15dc (size before relaxing) + .debug_str 0x000000000000d486 0xc3 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xa2e (size before relaxing) + .debug_str 0x000000000000d549 0x14c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x973 (size before relaxing) + .debug_str 0x000000000000d695 0x9c zephyr/kernel/libkernel.a(timer.c.obj) + 0xa9c (size before relaxing) + .debug_str 0x000000000000d731 0xd8 zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x57a (size before relaxing) + .debug_str 0x000000000000d809 0x126 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x9d5 (size before relaxing) + .debug_str 0x000000000000d92f 0x35 zephyr/kernel/libkernel.a(banner.c.obj) + 0x2f6 (size before relaxing) + .debug_str 0x000000000000d964 0xfb zephyr/kernel/libkernel.a(kheap.c.obj) + 0x964 (size before relaxing) + +.debug_loc 0x0000000000000000 0x395c1 + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x0000000000000000 0x650 app/libapp.a(main.c.obj) + .debug_loc 0x0000000000000650 0x19a app/libapp.a(cdc_handler.c.obj) + .debug_loc 0x00000000000007ea 0xd62 app/libapp.a(pfet_control.c.obj) + .debug_loc 0x000000000000154c 0xf57 app/libapp.a(gs_usb_can.c.obj) + .debug_loc 0x00000000000024a3 0x3a2 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_loc 0x0000000000002845 0x3c18 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x000000000000645d 0x27c3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x0000000000008c20 0x130 zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x0000000000008d50 0x9e zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x0000000000008dee 0x186d zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_loc 0x000000000000a65b 0x30 zephyr/libzephyr.a(soc_config.c.obj) + .debug_loc 0x000000000000a68b 0x1c8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_loc 0x000000000000a853 0x64 zephyr/libzephyr.a(soc.c.obj) + .debug_loc 0x000000000000a8b7 0x13b3 zephyr/libzephyr.a(log_core.c.obj) + .debug_loc 0x000000000000bc6a 0xcff zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_loc 0x000000000000c969 0x124d zephyr/libzephyr.a(log_msg.c.obj) + .debug_loc 0x000000000000dbb6 0x15d4 zephyr/libzephyr.a(log_output.c.obj) + .debug_loc 0x000000000000f18a 0x4b5 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_loc 0x000000000000f63f 0x2474 zephyr/libzephyr.a(usb_device.c.obj) + .debug_loc 0x0000000000011ab3 0x1027 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_loc 0x0000000000012ada 0xc7c zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_loc 0x0000000000013756 0xde zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_loc 0x0000000000013834 0xb55 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_loc 0x0000000000014389 0xd6 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_loc 0x000000000001445f 0xacd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_loc 0x0000000000014f2c 0x3a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_loc 0x0000000000014f66 0x1d1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_loc 0x0000000000015137 0x15d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_loc 0x0000000000015294 0x15 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_loc 0x00000000000152a9 0x6a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_loc 0x0000000000015313 0x3f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_loc 0x0000000000015352 0x128 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x000000000001547a 0xe6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x0000000000015560 0x61e zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x0000000000015b7e 0x19c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_loc 0x0000000000015d1a 0x6d9 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_loc 0x00000000000163f3 0x1638 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_loc 0x0000000000017a2b 0x20a4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_loc 0x0000000000019acf 0x24f4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_loc 0x000000000001bfc3 0x3e77 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_loc 0x000000000001fe3a 0x1440 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_loc 0x000000000002127a 0xb28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_loc 0x0000000000021da2 0x8a zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_loc 0x0000000000021e2c 0x85 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x0000000000021eb1 0x19a3 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_loc 0x0000000000023854 0xc1 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_loc 0x0000000000023915 0x42 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0000000000023957 0x29f zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_loc 0x0000000000023bf6 0x3f7 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_loc 0x0000000000023fed 0x275d zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_loc 0x000000000002674a 0x5d8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_loc 0x0000000000026d22 0xe0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_loc 0x0000000000026e02 0x73b modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_loc 0x000000000002753d 0x136c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_loc 0x00000000000288a9 0x273 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_loc 0x0000000000028b1c 0x23ad modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_loc 0x000000000002aec9 0x7a8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_loc 0x000000000002b671 0x24e zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x000000000002b8bf 0x979 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x000000000002c238 0x447 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x000000000002c67f 0x6f zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x000000000002c6ee 0x728 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x000000000002ce16 0x6d5 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x000000000002d4eb 0x3f67 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x0000000000031452 0x8f0 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x0000000000031d42 0x42a4 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0000000000035fe6 0x2fb zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x00000000000362e1 0x1067 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0000000000037348 0x843 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0000000000037b8b 0x7ac zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_loc 0x0000000000038337 0x924 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0000000000038c5b 0x966 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x0000000000000000 0xa130 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_ranges 0x0000000000000020 0x10 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_ranges 0x0000000000000030 0x100 app/libapp.a(main.c.obj) + .debug_ranges 0x0000000000000130 0xd0 app/libapp.a(cdc_handler.c.obj) + .debug_ranges 0x0000000000000200 0x338 app/libapp.a(pfet_control.c.obj) + .debug_ranges 0x0000000000000538 0x710 app/libapp.a(gs_usb_can.c.obj) + .debug_ranges 0x0000000000000c48 0x150 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_ranges 0x0000000000000d98 0x5c8 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x0000000000001360 0x398 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x00000000000016f8 0x38 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x0000000000001730 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x0000000000001758 0x418 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_ranges 0x0000000000001b70 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x0000000000001b80 0x60 zephyr/libzephyr.a(soc_config.c.obj) + .debug_ranges 0x0000000000001be0 0xa8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_ranges 0x0000000000001c88 0x80 zephyr/libzephyr.a(soc.c.obj) + .debug_ranges 0x0000000000001d08 0x528 zephyr/libzephyr.a(log_core.c.obj) + .debug_ranges 0x0000000000002230 0x4b8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_ranges 0x00000000000026e8 0x318 zephyr/libzephyr.a(log_msg.c.obj) + .debug_ranges 0x0000000000002a00 0x250 zephyr/libzephyr.a(log_output.c.obj) + .debug_ranges 0x0000000000002c50 0xc0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_ranges 0x0000000000002d10 0x610 zephyr/libzephyr.a(usb_device.c.obj) + .debug_ranges 0x0000000000003320 0x1b0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_ranges 0x00000000000034d0 0x1f8 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_ranges 0x00000000000036c8 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_ranges 0x00000000000036e8 0x10 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_ranges 0x00000000000036f8 0x1a8 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_ranges 0x00000000000038a0 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_ranges 0x00000000000038b0 0x50 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_ranges 0x0000000000003900 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_ranges 0x0000000000003910 0x170 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_ranges 0x0000000000003a80 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_ranges 0x0000000000003a90 0x58 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_ranges 0x0000000000003ae8 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_ranges 0x0000000000003b00 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_ranges 0x0000000000003b30 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_ranges 0x0000000000003b50 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_ranges 0x0000000000003b88 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_ranges 0x0000000000003bb0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x0000000000003bc8 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x0000000000003c10 0xf0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x0000000000003d00 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_ranges 0x0000000000003d18 0x210 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_ranges 0x0000000000003f28 0x290 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_ranges 0x00000000000041b8 0x5e8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_ranges 0x00000000000047a0 0x6d0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_ranges 0x0000000000004e70 0x5b8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_ranges 0x0000000000005428 0x280 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_ranges 0x00000000000056a8 0x288 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_ranges 0x0000000000005930 0x90 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_ranges 0x00000000000059c0 0x68 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x0000000000005a28 0x2d0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_ranges 0x0000000000005cf8 0x80 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_ranges 0x0000000000005d78 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x0000000000005d88 0x58 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_ranges 0x0000000000005de0 0x78 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_ranges 0x0000000000005e58 0x9c8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_ranges 0x0000000000006820 0xf8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_ranges 0x0000000000006918 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_ranges 0x0000000000006930 0xd0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_ranges 0x0000000000006a00 0x218 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_ranges 0x0000000000006c18 0x48 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_ranges 0x0000000000006c60 0x548 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_ranges 0x00000000000071a8 0x1d0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_ranges 0x0000000000007378 0x98 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x0000000000007410 0x3c0 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x00000000000077d0 0x198 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x0000000000007968 0x18 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x0000000000007980 0x1b8 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x0000000000007b38 0x230 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x0000000000007d68 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_ranges 0x0000000000007d78 0x998 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x0000000000008710 0x1c8 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x00000000000088d8 0xe88 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x0000000000009760 0xa8 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x0000000000009808 0x388 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x0000000000009b90 0x168 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x0000000000009cf8 0x248 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_ranges 0x0000000000009f40 0x90 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x0000000000009fd0 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_ranges 0x0000000000009fe0 0x150 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.note.GNU-stack)) + +.ARM.attributes + 0x0000000000000000 0x30 + *(SORT_BY_ALIGNMENT(.ARM.attributes)) + .ARM.attributes + 0x0000000000000000 0x2e zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .ARM.attributes + 0x000000000000002e 0x2e zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .ARM.attributes + 0x000000000000005c 0x2e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .ARM.attributes + 0x000000000000008a 0x2e app/libapp.a(main.c.obj) + .ARM.attributes + 0x00000000000000b8 0x2e app/libapp.a(cdc_handler.c.obj) + .ARM.attributes + 0x00000000000000e6 0x2e app/libapp.a(pfet_control.c.obj) + .ARM.attributes + 0x0000000000000114 0x2e app/libapp.a(gs_usb_can.c.obj) + .ARM.attributes + 0x0000000000000142 0x2e app/libapp.a(usb_gs_usb_class.c.obj) + .ARM.attributes + 0x0000000000000170 0x2e zephyr/libzephyr.a(validate_libc.c.obj) + .ARM.attributes + 0x000000000000019e 0x2e zephyr/libzephyr.a(heap.c.obj) + .ARM.attributes + 0x00000000000001cc 0x2e zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .ARM.attributes + 0x00000000000001fa 0x2e zephyr/libzephyr.a(clock.c.obj) + .ARM.attributes + 0x0000000000000228 0x2e zephyr/libzephyr.a(printk.c.obj) + .ARM.attributes + 0x0000000000000256 0x2e zephyr/libzephyr.a(sem.c.obj) + .ARM.attributes + 0x0000000000000284 0x2e zephyr/libzephyr.a(thread_entry.c.obj) + .ARM.attributes + 0x00000000000002b2 0x2e zephyr/libzephyr.a(cbprintf_complete.c.obj) + .ARM.attributes + 0x00000000000002e0 0x2e zephyr/libzephyr.a(assert.c.obj) + .ARM.attributes + 0x000000000000030e 0x2e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .ARM.attributes + 0x000000000000033c 0x2e zephyr/libzephyr.a(dec.c.obj) + .ARM.attributes + 0x000000000000036a 0x2e zephyr/libzephyr.a(hex.c.obj) + .ARM.attributes + 0x0000000000000398 0x2e zephyr/libzephyr.a(rb.c.obj) + .ARM.attributes + 0x00000000000003c6 0x2e zephyr/libzephyr.a(timeutil.c.obj) + .ARM.attributes + 0x00000000000003f4 0x2e zephyr/libzephyr.a(bitarray.c.obj) + .ARM.attributes + 0x0000000000000422 0x2e zephyr/libzephyr.a(bitmask.c.obj) + .ARM.attributes + 0x0000000000000450 0x2e zephyr/libzephyr.a(ring_buffer.c.obj) + .ARM.attributes + 0x000000000000047e 0x2e zephyr/libzephyr.a(last_section_id.c.obj) + .ARM.attributes + 0x00000000000004ac 0x2e zephyr/libzephyr.a(configs.c.obj) + .ARM.attributes + 0x00000000000004da 0x2e zephyr/libzephyr.a(stm32cube_hal.c.obj) + .ARM.attributes + 0x0000000000000508 0x2e zephyr/libzephyr.a(soc_config.c.obj) + .ARM.attributes + 0x0000000000000536 0x2e zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .ARM.attributes + 0x0000000000000564 0x2e zephyr/libzephyr.a(soc.c.obj) + .ARM.attributes + 0x0000000000000592 0x2e zephyr/libzephyr.a(log_core.c.obj) + .ARM.attributes + 0x00000000000005c0 0x2e zephyr/libzephyr.a(log_mgmt.c.obj) + .ARM.attributes + 0x00000000000005ee 0x2e zephyr/libzephyr.a(log_cache.c.obj) + .ARM.attributes + 0x000000000000061c 0x2e zephyr/libzephyr.a(log_msg.c.obj) + .ARM.attributes + 0x000000000000064a 0x2e zephyr/libzephyr.a(log_output.c.obj) + .ARM.attributes + 0x0000000000000678 0x2e zephyr/libzephyr.a(log_backend_uart.c.obj) + .ARM.attributes + 0x00000000000006a6 0x2e zephyr/libzephyr.a(tracing_none.c.obj) + .ARM.attributes + 0x00000000000006d4 0x2e zephyr/libzephyr.a(usb_device.c.obj) + .ARM.attributes + 0x0000000000000702 0x2e zephyr/libzephyr.a(usb_descriptor.c.obj) + .ARM.attributes + 0x0000000000000730 0x2e zephyr/libzephyr.a(usb_transfer.c.obj) + .ARM.attributes + 0x000000000000075e 0x2e zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .ARM.attributes + 0x000000000000078c 0x2e zephyr/arch/common/libarch__common.a(init.c.obj) + .ARM.attributes + 0x00000000000007ba 0x2e zephyr/arch/common/libarch__common.a(xip.c.obj) + .ARM.attributes + 0x00000000000007e8 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .ARM.attributes + 0x0000000000000816 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .ARM.attributes + 0x0000000000000844 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .ARM.attributes + 0x0000000000000860 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .ARM.attributes + 0x000000000000088e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .ARM.attributes + 0x00000000000008bc 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .ARM.attributes + 0x00000000000008ea 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .ARM.attributes + 0x0000000000000906 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .ARM.attributes + 0x0000000000000934 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .ARM.attributes + 0x0000000000000950 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .ARM.attributes + 0x000000000000097e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .ARM.attributes + 0x00000000000009ac 0x1e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .ARM.attributes + 0x00000000000009ca 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .ARM.attributes + 0x00000000000009e6 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .ARM.attributes + 0x0000000000000a14 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .ARM.attributes + 0x0000000000000a42 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .ARM.attributes + 0x0000000000000a70 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .ARM.attributes + 0x0000000000000a9e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .ARM.attributes + 0x0000000000000acc 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .ARM.attributes + 0x0000000000000afa 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .ARM.attributes + 0x0000000000000b16 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .ARM.attributes + 0x0000000000000b44 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .ARM.attributes + 0x0000000000000b72 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .ARM.attributes + 0x0000000000000ba0 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .ARM.attributes + 0x0000000000000bce 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .ARM.attributes + 0x0000000000000bfc 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .ARM.attributes + 0x0000000000000c2a 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .ARM.attributes + 0x0000000000000c58 0x2e zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .ARM.attributes + 0x0000000000000c86 0x2e zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .ARM.attributes + 0x0000000000000cb4 0x2e zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .ARM.attributes + 0x0000000000000ce2 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .ARM.attributes + 0x0000000000000d10 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .ARM.attributes + 0x0000000000000d3e 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .ARM.attributes + 0x0000000000000d6c 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .ARM.attributes + 0x0000000000000d9a 0x2e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .ARM.attributes + 0x0000000000000dc8 0x2e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .ARM.attributes + 0x0000000000000df6 0x2e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .ARM.attributes + 0x0000000000000e24 0x2e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .ARM.attributes + 0x0000000000000e52 0x2e zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .ARM.attributes + 0x0000000000000e80 0x2e zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .ARM.attributes + 0x0000000000000eae 0x2e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .ARM.attributes + 0x0000000000000edc 0x2e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .ARM.attributes + 0x0000000000000f0a 0x2e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .ARM.attributes + 0x0000000000000f38 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .ARM.attributes + 0x0000000000000f66 0x2e zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .ARM.attributes + 0x0000000000000f94 0x2e zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .ARM.attributes + 0x0000000000000fc2 0x2e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .ARM.attributes + 0x0000000000000ff0 0x2e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .ARM.attributes + 0x000000000000101e 0x2e zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .ARM.attributes + 0x000000000000104c 0x2e zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .ARM.attributes + 0x000000000000107a 0x2e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .ARM.attributes + 0x00000000000010a8 0x2e zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .ARM.attributes + 0x00000000000010d6 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .ARM.attributes + 0x0000000000001104 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .ARM.attributes + 0x0000000000001132 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .ARM.attributes + 0x0000000000001160 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .ARM.attributes + 0x000000000000118e 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .ARM.attributes + 0x00000000000011bc 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .ARM.attributes + 0x00000000000011ea 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .ARM.attributes + 0x0000000000001218 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .ARM.attributes + 0x0000000000001246 0x2e zephyr/kernel/libkernel.a(device.c.obj) + .ARM.attributes + 0x0000000000001274 0x2e zephyr/kernel/libkernel.a(fatal.c.obj) + .ARM.attributes + 0x00000000000012a2 0x2e zephyr/kernel/libkernel.a(init.c.obj) + .ARM.attributes + 0x00000000000012d0 0x2e zephyr/kernel/libkernel.a(idle.c.obj) + .ARM.attributes + 0x00000000000012fe 0x2e zephyr/kernel/libkernel.a(msg_q.c.obj) + .ARM.attributes + 0x000000000000132c 0x2e zephyr/kernel/libkernel.a(mutex.c.obj) + .ARM.attributes + 0x000000000000135a 0x2e zephyr/kernel/libkernel.a(sem.c.obj) + .ARM.attributes + 0x0000000000001388 0x2e zephyr/kernel/libkernel.a(system_work_q.c.obj) + .ARM.attributes + 0x00000000000013b6 0x2e zephyr/kernel/libkernel.a(work.c.obj) + .ARM.attributes + 0x00000000000013e4 0x2e zephyr/kernel/libkernel.a(thread.c.obj) + .ARM.attributes + 0x0000000000001412 0x2e zephyr/kernel/libkernel.a(sched.c.obj) + .ARM.attributes + 0x0000000000001440 0x2e zephyr/kernel/libkernel.a(timeslicing.c.obj) + .ARM.attributes + 0x000000000000146e 0x2e zephyr/kernel/libkernel.a(timeout.c.obj) + .ARM.attributes + 0x000000000000149c 0x2e zephyr/kernel/libkernel.a(timer.c.obj) + .ARM.attributes + 0x00000000000014ca 0x2e zephyr/kernel/libkernel.a(atomic_c.c.obj) + .ARM.attributes + 0x00000000000014f8 0x2e zephyr/kernel/libkernel.a(mempool.c.obj) + .ARM.attributes + 0x0000000000001526 0x2e zephyr/kernel/libkernel.a(banner.c.obj) + .ARM.attributes + 0x0000000000001554 0x2e zephyr/kernel/libkernel.a(kheap.c.obj) + .ARM.attributes + 0x0000000000001582 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .ARM.attributes + 0x000000000000159e 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .ARM.attributes + 0x00000000000015ba 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .ARM.attributes + 0x00000000000015ea 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .ARM.attributes + 0x000000000000161a 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .ARM.attributes + 0x0000000000001636 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .ARM.attributes + 0x0000000000001666 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .ARM.attributes + 0x0000000000001696 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .ARM.attributes + 0x00000000000016c6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .ARM.attributes + 0x00000000000016f6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .ARM.attributes + 0x0000000000001726 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .ARM.attributes + 0x0000000000001756 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .ARM.attributes + 0x0000000000001786 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .ARM.attributes + 0x00000000000017b6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .ARM.attributes + 0x00000000000017e6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .ARM.attributes + 0x0000000000001816 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .ARM.attributes + 0x0000000000001846 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .ARM.attributes + 0x0000000000001876 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .ARM.attributes + 0x00000000000018a6 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .ARM.attributes + 0x00000000000018c4 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .ARM.attributes + 0x00000000000018e2 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .ARM.attributes + 0x0000000000001900 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .ARM.attributes + 0x000000000000191e 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .ARM.attributes + 0x000000000000193c 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x000000000000195a 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000000000001978 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .ARM.attributes + 0x0000000000001996 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .ARM.attributes + 0x00000000000019b4 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .ARM.attributes + 0x00000000000019d2 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x00000000000019f0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .ARM.attributes + 0x0000000000001a1c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .ARM.attributes + 0x0000000000001a48 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .ARM.attributes + 0x0000000000001a74 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x0000000000001aa0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x0000000000001acc 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .ARM.attributes + 0x0000000000001af8 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .ARM.attributes + 0x0000000000001b24 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000000000001b50 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .ARM.attributes + 0x0000000000001b7c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .ARM.attributes + 0x0000000000001ba8 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .ARM.attributes + 0x0000000000001bd4 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .ARM.attributes + 0x0000000000001c00 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .ARM.attributes + 0x0000000000001c2c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .ARM.attributes + 0x0000000000001c58 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .ARM.attributes + 0x0000000000001c84 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .ARM.attributes + 0x0000000000001cb0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .ARM.attributes + 0x0000000000001cdc 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .ARM.attributes + 0x0000000000001d08 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .ARM.attributes + 0x0000000000001d34 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .ARM.attributes + 0x0000000000001d60 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .ARM.attributes + 0x0000000000001d7e 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .ARM.attributes + 0x0000000000001d9c 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .ARM.attributes + 0x0000000000001dba 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000001dd8 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .ARM.attributes + 0x0000000000001df6 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .ARM.attributes + 0x0000000000001e22 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.attributes + 0x0000000000001e4e 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .ARM.attributes + 0x0000000000001e7a 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .ARM.attributes + 0x0000000000001ea6 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .ARM.attributes + 0x0000000000001ed2 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + *(SORT_BY_ALIGNMENT(.gnu.attributes)) + +SRAM0 0x0000000020000000 0x0 + 0x0000000020000000 __SRAM0_start = . + *(SORT_BY_ALIGNMENT(SRAM0)) + *(SORT_BY_ALIGNMENT(SRAM0.*)) + 0x0000000020000000 __SRAM0_end = . + 0x0000000000000000 __SRAM0_size = (__SRAM0_end - __SRAM0_start) + 0x0000000020000000 __SRAM0_load_start = LOADADDR (SRAM0) + +.last_section 0x000000000800c8a8 0x4 + *(SORT_BY_ALIGNMENT(.last_section)) + .last_section 0x000000000800c8a8 0x4 zephyr/libzephyr.a(last_section_id.c.obj) + 0x000000000000c8ac _flash_used = ((LOADADDR (.last_section) + SIZEOF (.last_section)) - __rom_region_start) + +bss 0x0000000020000150 0x131e + 0x0000000020000150 . = ALIGN (0x4) + 0x0000000020000150 __bss_start = . + 0x0000000020000150 __kernel_ram_start = . + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.logging_thread + 0x0000000020000150 0x70 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000020000150 logging_thread + .bss.buf32 0x00000000200001c0 0x400 zephyr/libzephyr.a(log_core.c.obj) + .bss.last_failure_report + 0x00000000200005c0 0x8 zephyr/libzephyr.a(log_core.c.obj) + .bss.log_process_thread_timer + 0x00000000200005c8 0x38 zephyr/libzephyr.a(log_core.c.obj) + .bss.announced_cycles + 0x0000000020000600 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.cycle_count + 0x0000000020000608 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.z_idle_threads + 0x0000000020000610 0x70 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000610 z_idle_threads + .bss.z_main_thread + 0x0000000020000680 0x70 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000680 z_main_thread + .bss.k_sys_work_q + 0x00000000200006f0 0x90 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x00000000200006f0 k_sys_work_q + .bss._thread_dummy + 0x0000000020000780 0x70 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020000780 _thread_dummy + .bss.slice_timeouts + 0x00000000200007f0 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x0000000020000808 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.rx_pos 0x0000000020000810 0x4 app/libapp.a(cdc_handler.c.obj) + .bss.curr_log_buffer + 0x0000000020000814 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.proc_tid 0x0000000020000818 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.dropped_cnt + 0x000000002000081c 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.buffered_cnt + 0x0000000020000820 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.initialized + 0x0000000020000824 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.timestamp_div + 0x0000000020000828 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.freq 0x000000002000082c 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.lbu_data 0x0000000020000830 0x18 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.lbu_output_control_block + 0x0000000020000848 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.usb_dev 0x0000000020000854 0xcc zephyr/libzephyr.a(usb_device.c.obj) + .bss.ut_data 0x0000000020000920 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss.z_arm_tls_ptr + 0x0000000020000a20 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000020000a20 z_arm_tls_ptr + .bss._stdout_hook + 0x0000000020000a24 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x0000000020000a28 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.intc_gpio_data + 0x0000000020000a34 0x80 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .bss.usb_dc_stm32_state + 0x0000000020000ab4 0x728 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .bss.can_mcan_data_0 + 0x00000000200011dc 0x4c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_ext_cbs + 0x0000000020001228 0x40 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_std_cbs + 0x0000000020001268 0xe0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_tx_cbs + 0x0000000020001348 0x18 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.gpio_stm32_data_f + 0x0000000020001360 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_e + 0x0000000020001374 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_d + 0x0000000020001388 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_c + 0x000000002000139c 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_b + 0x00000000200013b0 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_a + 0x00000000200013c4 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.overflow_cyc + 0x00000000200013d8 0x4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.last_load + 0x00000000200013dc 0x4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss._kernel 0x00000000200013e0 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000200013e0 _kernel + .bss.pending_cancels + 0x0000000020001400 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss.pending_current + 0x0000000020001408 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x0000000020001408 pending_current + .bss.slice_max_prio + 0x000000002000140c 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x0000000020001410 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.rx_buf 0x0000000020001414 0x40 app/libapp.a(cdc_handler.c.obj) + .bss.pfet2_state + 0x0000000020001454 0x1 app/libapp.a(pfet_control.c.obj) + .bss.pfet1_state + 0x0000000020001455 0x1 app/libapp.a(pfet_control.c.obj) + .bss.backend_attached + 0x0000000020001456 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.panic_mode + 0x0000000020001457 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.lbu_buffer + 0x0000000020001458 0x1 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.initialized.0 + 0x0000000020001459 0x1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.sn.1 0x000000002000145a 0x12 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.z_sys_post_kernel + 0x000000002000146c 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000002000146c z_sys_post_kernel + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss._sched_spinlock + 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000002000146d _sched_spinlock + .bss.slice_expired + 0x000000002000146d 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *(SORT_BY_ALIGNMENT(COMMON)) + *(SORT_BY_ALIGNMENT(.kernel_bss.*)) + 0x0000000020001470 __bss_end = ALIGN (0x4) + +noinit 0x0000000020001470 0x4000 + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit."WEST_TOPDIR/zephyr/subsys/logging/log_core.c".0 + 0x0000000020001470 0x300 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000020001470 logging_stack + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".2 + 0x0000000020001770 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020001770 z_interrupt_stacks + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".1 + 0x0000000020001f70 0x100 zephyr/kernel/libkernel.a(init.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".0 + 0x0000000020002070 0x1000 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002070 z_main_stack + .noinit."WEST_TOPDIR/zephyr/kernel/system_work_q.c".0 + 0x0000000020003070 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/mempool.c".kheap_buf__system_heap + 0x0000000020003470 0x2000 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x0000000020003470 kheap__system_heap + 0x0000000020024000 __kernel_ram_end = 0x20024000 + 0x0000000000023eb0 __kernel_ram_size = (__kernel_ram_end - __kernel_ram_start) + +.last_ram_section + 0x0000000020005470 0x0 + 0x0000000020005470 _image_ram_end = . + 0x0000000000005470 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x0000000020005470 _end = . + 0x0000000020005470 z_mapped_end = . +OUTPUT(zephyr\zephyr.elf elf32-littlearm) +LOAD linker stubs diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr.stat b/firmware/canfd_cdc_composite/build/zephyr/zephyr.stat new file mode 100644 index 0000000..00f4a13 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr.stat @@ -0,0 +1,87 @@ +ELF Header: + Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 + Class: ELF32 + Data: 2's complement, little endian + Version: 1 (current) + OS/ABI: UNIX - System V + ABI Version: 0 + Type: EXEC (Executable file) + Machine: ARM + Version: 0x1 + Entry point address: 0x8002f2d + Start of program headers: 52 (bytes into file) + Start of section headers: 1906848 (bytes into file) + Flags: 0x5000200, Version5 EABI, soft-float ABI + Size of this header: 52 (bytes) + Size of program headers: 32 (bytes) + Number of program headers: 6 + Size of section headers: 40 (bytes) + Number of section headers: 41 + Section header string table index: 40 + +Section Headers: + [Nr] Name Type Addr Off Size ES Flg Lk Inf Al + [ 0] NULL 00000000 000000 000000 00 0 0 0 + [ 1] rom_start PROGBITS 08000000 0000f4 0000bc 00 AX 0 0 4 + [ 2] text PROGBITS 080000bc 0001b0 00a8d4 00 AX 0 0 4 + [ 3] .ARM.exidx ARM_EXIDX 0800a990 00aa84 000008 00 AL 2 0 4 + [ 4] initlevel PROGBITS 0800a998 00aa8c 000098 00 A 0 0 4 + [ 5] device_area PROGBITS 0800aa30 00ab24 000160 00 A 0 0 4 + [ 6] sw_isr_table PROGBITS 0800ab90 00ac84 0000f8 00 A 0 0 4 + [ 7] can_driver_a[...] PROGBITS 0800ac88 00ad7c 00005c 00 A 0 0 4 + [ 8] gpio_driver_[...] PROGBITS 0800ace4 00add8 000024 00 A 0 0 4 + [ 9] reset_driver[...] PROGBITS 0800ad08 00adfc 000010 00 A 0 0 4 + [10] clock_contro[...] PROGBITS 0800ad18 00ae0c 00001c 00 A 0 0 4 + [11] uart_driver_[...] PROGBITS 0800ad34 00ae28 00001c 00 A 0 0 4 + [12] log_const_area PROGBITS 0800ad50 00ae44 0000b0 00 A 0 0 4 + [13] log_backend_area PROGBITS 0800ae00 00aef4 000010 00 A 0 0 4 + [14] tbss NOBITS 0800ae10 00af04 000004 00 WAT 0 0 4 + [15] rodata PROGBITS 0800ae10 00af04 00194c 00 A 0 0 4 + [16] .ramfunc PROGBITS 20000000 00c9a0 000000 00 W 0 0 1 + [17] datas PROGBITS 20000000 00c850 000050 00 WA 0 0 4 + [18] device_states PROGBITS 20000050 00c8a0 000018 00 WA 0 0 1 + [19] log_mpsc_pbu[...] PROGBITS 20000068 00c8b8 000038 00 WA 0 0 4 + [20] log_msg_ptr_area PROGBITS 200000a0 00c8f0 000004 00 WA 0 0 4 + [21] k_heap_area PROGBITS 200000a4 00c8f4 000014 00 WA 0 0 4 + [22] k_mutex_area PROGBITS 200000b8 00c908 000014 00 WA 0 0 4 + [23] k_sem_area PROGBITS 200000cc 00c91c 000010 00 WA 0 0 4 + [24] usb_descriptor PROGBITS 200000dc 00c92c 00006f 00 WA 0 0 1 + [25] .comment PROGBITS 00000000 00c9a0 000020 01 MS 0 0 1 + [26] .debug_aranges PROGBITS 00000000 00c9c0 001e30 00 0 0 8 + [27] .debug_info PROGBITS 00000000 00e7f0 10b4d5 00 0 0 1 + [28] .debug_abbrev PROGBITS 00000000 119cc5 013414 00 0 0 1 + [29] .debug_line PROGBITS 00000000 12d0d9 03c170 00 0 0 1 + [30] .debug_frame PROGBITS 00000000 16924c 004b6c 00 0 0 4 + [31] .debug_str PROGBITS 00000000 16ddb8 00da5f 01 MS 0 0 1 + [32] .debug_loc PROGBITS 00000000 17b817 0395c1 00 0 0 1 + [33] .debug_ranges PROGBITS 00000000 1b4dd8 00a130 00 0 0 8 + [34] .ARM.attributes ARM_ATTRIBUTES 00000000 1bef08 000030 00 0 0 1 + [35] .last_section PROGBITS 0800c8a8 00c99c 000004 00 WA 0 0 4 + [36] bss NOBITS 20000150 00c9a0 00131e 00 WA 0 0 8 + [37] noinit NOBITS 20001470 00c9a0 004000 00 WA 0 0 8 + [38] .symtab SYMTAB 00000000 1bef38 00a290 10 39 1464 4 + [39] .strtab STRTAB 00000000 1c91c8 0084d9 00 0 0 1 + [40] .shstrtab STRTAB 00000000 1d16a1 0001fe 00 0 0 1 +Key to Flags: + W (write), A (alloc), X (execute), M (merge), S (strings), I (info), + L (link order), O (extra OS processing required), G (group), T (TLS), + C (compressed), x (unknown), o (OS specific), E (exclude), + D (mbind), y (purecode), p (processor specific) + +Program Headers: + Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align + EXIDX 0x00aa84 0x0800a990 0x0800a990 0x00008 0x00008 R 0x4 + LOAD 0x0000f4 0x08000000 0x08000000 0x0c75c 0x0c75c RWE 0x4 + LOAD 0x00c850 0x20000000 0x0800c75c 0x0014b 0x0014b RW 0x4 + LOAD 0x00c99c 0x0800c8a8 0x0800c8a8 0x00004 0x00004 RW 0x4 + LOAD 0x000000 0x20000150 0x20000150 0x00000 0x05320 RW 0x8 + TLS 0x00af04 0x0800ae10 0x0800ae10 0x00000 0x00004 R 0x4 + + Section to Segment mapping: + Segment Sections... + 00 .ARM.exidx + 01 rom_start text .ARM.exidx initlevel device_area sw_isr_table can_driver_api_area gpio_driver_api_area reset_driver_api_area clock_control_driver_api_area uart_driver_api_area log_const_area log_backend_area rodata + 02 datas device_states log_mpsc_pbuf_area log_msg_ptr_area k_heap_area k_mutex_area k_sem_area usb_descriptor + 03 .last_section + 04 bss noinit + 05 tbss diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr_final.map b/firmware/canfd_cdc_composite/build/zephyr/zephyr_final.map new file mode 100644 index 0000000..37e01f2 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr_final.map @@ -0,0 +1,6519 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(cdc_handler.c.obj) + (--whole-archive) +app/libapp.a(pfet_control.c.obj) + (--whole-archive) +app/libapp.a(gs_usb_can.c.obj) + (--whole-archive) +app/libapp.a(usb_gs_usb_class.c.obj) + (--whole-archive) +zephyr/libzephyr.a(validate_libc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clock.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpsc_pbuf.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitmask.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(last_section_id.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(stm32cube_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_config.c.obj) + (--whole-archive) +zephyr/libzephyr.a(stm32_backup_domain.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_core.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_mgmt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_cache.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_msg.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_backend_uart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_device.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_descriptor.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_transfer.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(init.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(xip.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + (--whole-archive) +zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + (--whole-archive) +zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(main.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) (_kernel) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(msg_q.c.obj) + zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) (z_impl_k_msgq_put) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_sys_work_q) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(mpsc_pbuf.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_thread_timeout) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(sched.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/libzephyr.a(log_core.c.obj) (k_timer_init) +zephyr/kernel/libkernel.a(atomic_c.c.obj) + zephyr/libzephyr.a(stm32_backup_domain.c.obj) (z_impl_atomic_cas) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/kernel/libkernel.a(msg_q.c.obj) (k_free) +zephyr/kernel/libkernel.a(banner.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (boot_banner) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_free) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + zephyr/libzephyr.a(log_mgmt.c.obj) (strcmp) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + app/libapp.a(cdc_handler.c.obj) (strcpy) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + app/libapp.a(gs_usb_can.c.obj) (memcpy) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + app/libapp.a(gs_usb_can.c.obj) (memset) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + app/libapp.a(cdc_handler.c.obj) (strlen) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + zephyr/libzephyr.a(timeutil.c.obj) (errno) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) (strchr) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + app/libapp.a(cdc_handler.c.obj) (strncmp) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + app/libapp.a(cdc_handler.c.obj) (snprintf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) (getc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) (__atomic_compare_exchange_ungetc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) (__atomic_exchange_ungetc) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (__gnu_thumb1_case_sqi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + app/libapp.a(gs_usb_can.c.obj) (__gnu_thumb1_case_uqi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (__gnu_thumb1_case_shi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + zephyr/libzephyr.a(heap.c.obj) (__aeabi_uidiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + zephyr/libzephyr.a(dec.c.obj) (__aeabi_idiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) (__aeabi_idiv0) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_fcmpeq) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + zephyr/libzephyr.a(heap.c.obj) (__clzsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + zephyr/libzephyr.a(heap.c.obj) (__ctzsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ldivmod) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + app/libapp.a(gs_usb_can.c.obj) (__aeabi_uldivmod) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + zephyr/libzephyr.a(clock.c.obj) (__aeabi_lmul) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__ffssi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2lz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_l2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ul2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) (__gnu_ldivmod_helper) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__eqsf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__gesf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__lesf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) (__aeabi_dadd) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ddiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dmul) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dsub) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) (__aeabi_i2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ui2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_f2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2f) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) (__gnu_thumb1_case_uhi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__aeabi_llsr) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__aeabi_llsl) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) (__aeabi_dcmplt) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__clzdi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) (__aeabi_d2uiz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) (__divdi3) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__eqdf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__gedf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__ledf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) (__aeabi_d2iz) + +Discarded input sections + + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_line 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_str 0x0000000000000000 0x225 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .comment 0x0000000000000000 0x21 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .text 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_handle_control_request.str1.1 + 0x0000000000000000 0x6e app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_handle_control_request + 0x0000000000000000 0xf8 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_can_send_frame + 0x0000000000000000 0x6 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_process_host_frame.str1.1 + 0x0000000000000000 0x19 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_process_host_frame + 0x0000000000000000 0x10c app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.0 + 0x0000000000000000 0x1a app/libapp.a(gs_usb_can.c.obj) + .bss.response_buf.1 + 0x0000000000000000 0x40 app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.2 + 0x0000000000000000 0x1e app/libapp.a(gs_usb_can.c.obj) + .bss.echo_id_counter + 0x0000000000000000 0x4 app/libapp.a(gs_usb_can.c.obj) + .bss.current_state + 0x0000000000000000 0xc app/libapp.a(gs_usb_can.c.obj) + .bss.current_mode + 0x0000000000000000 0x8 app/libapp.a(gs_usb_can.c.obj) + .data.bt_const + 0x0000000000000000 0x28 app/libapp.a(gs_usb_can.c.obj) + .data.device_config + 0x0000000000000000 0xc app/libapp.a(gs_usb_can.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_info 0x0000000000000000 0xbf zephyr/libzephyr.a(validate_libc.c.obj) + .debug_abbrev 0x0000000000000000 0x5f zephyr/libzephyr.a(validate_libc.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_line 0x0000000000000000 0x17b zephyr/libzephyr.a(validate_libc.c.obj) + .debug_str 0x0000000000000000 0x2ec zephyr/libzephyr.a(validate_libc.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(validate_libc.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove_bidx + 0x0000000000000000 0x36 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove + 0x0000000000000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .text.alloc_chunk + 0x0000000000000000 0x7e zephyr/libzephyr.a(heap.c.obj) + .text.merge_chunks + 0x0000000000000000 0x30 zephyr/libzephyr.a(heap.c.obj) + .text.split_chunks + 0x0000000000000000 0x34 zephyr/libzephyr.a(heap.c.obj) + .text.free_chunk + 0x0000000000000000 0x60 zephyr/libzephyr.a(heap.c.obj) + .text.inplace_realloc.isra.0 + 0x0000000000000000 0xd8 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_free + 0x0000000000000000 0x20 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x0000000000000000 0x20 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_alloc + 0x0000000000000000 0x5e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_noalign_alloc + 0x0000000000000000 0xa zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_alloc + 0x0000000000000000 0xd6 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_realloc + 0x0000000000000000 0x5e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x0000000000000000 0x74 zephyr/libzephyr.a(heap.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x0000000000000000 0x1c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_compare + 0x0000000000000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_add + 0x0000000000000000 0x68 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_from_clockid + 0x0000000000000000 0xa zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_getrtoffset + 0x0000000000000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_gettime + 0x0000000000000000 0x70 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_settime + 0x0000000000000000 0x70 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_nanosleep + 0x0000000000000000 0x1f8 zephyr/libzephyr.a(clock.c.obj) + .bss.rt_clock_offset + 0x0000000000000000 0x10 zephyr/libzephyr.a(clock.c.obj) + .rodata 0x0000000000000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .debug_info 0x0000000000000000 0xffe zephyr/libzephyr.a(clock.c.obj) + .debug_abbrev 0x0000000000000000 0x461 zephyr/libzephyr.a(clock.c.obj) + .debug_loc 0x0000000000000000 0xa4f zephyr/libzephyr.a(clock.c.obj) + .debug_aranges + 0x0000000000000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .debug_ranges 0x0000000000000000 0x100 zephyr/libzephyr.a(clock.c.obj) + .debug_line 0x0000000000000000 0xafd zephyr/libzephyr.a(clock.c.obj) + .debug_str 0x0000000000000000 0x8e3 zephyr/libzephyr.a(clock.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(clock.c.obj) + .debug_frame 0x0000000000000000 0xdc zephyr/libzephyr.a(clock.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x0000000000000000 0xc zephyr/libzephyr.a(printk.c.obj) + .text.vprintk 0x0000000000000000 0x8 zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x0000000000000000 0x1c zephyr/libzephyr.a(printk.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x0000000000000000 0xa zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x0000000000000000 0xa zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x0000000000000000 0x18 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x0000000000000000 0x523 zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x0000000000000000 0x254 zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x0000000000000000 0x20d zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x0000000000000000 0x80 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x0000000000000000 0x3df zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x0000000000000000 0x448 zephyr/libzephyr.a(sem.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x0000000000000000 0x9a zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.outs 0x0000000000000000 0x2c zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.1 + 0x0000000000000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x0000000000000000 0x72c zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x0000000000000000 0x10d0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x0000000000000000 0x414 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x0000000000000000 0x1513 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x0000000000000000 0x218 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x0000000000000000 0xdd3 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x0000000000000000 0x712 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x0000000000000000 0x74 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text.assert_post_action + 0x0000000000000000 0xe zephyr/libzephyr.a(assert.c.obj) + .text.assert_print + 0x0000000000000000 0x16 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x0000000000000000 0x250 zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0x1c4 zephyr/libzephyr.a(assert.c.obj) + .debug_loc 0x0000000000000000 0x3b zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x0000000000000000 0x389 zephyr/libzephyr.a(assert.c.obj) + .debug_str 0x0000000000000000 0x3e5 zephyr/libzephyr.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x40 zephyr/libzephyr.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word + 0x0000000000000000 0xb8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word_ext + 0x0000000000000000 0xf8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_data + 0x0000000000000000 0xec zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_utilization + 0x0000000000000000 0x26 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_max_utilization + 0x0000000000000000 0x26 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x0000000000000000 0x78 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x0000000000000000 0x16a zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x0000000000000000 0xb4 zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x0000000000000000 0x138 zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x0000000000000000 0x1bb zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x0000000000000000 0x319 zephyr/libzephyr.a(dec.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x0000000000000000 0x34 zephyr/libzephyr.a(dec.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x0000000000000000 0x30 zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x0000000000000000 0x1c zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x0000000000000000 0x42 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x0000000000000000 0x74 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x0000000000000000 0x2a3 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x0000000000000000 0x117 zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x0000000000000000 0x2fd zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x0000000000000000 0x40 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x0000000000000000 0x329 zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x0000000000000000 0x301 zephyr/libzephyr.a(hex.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x0000000000000000 0x74 zephyr/libzephyr.a(hex.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x0000000000000000 0x3a zephyr/libzephyr.a(rb.c.obj) + .text.stack_left_limb + 0x0000000000000000 0x3a zephyr/libzephyr.a(rb.c.obj) + .text.set_child + 0x0000000000000000 0x14 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x0000000000000000 0xa4 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x0000000000000000 0x1e zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x0000000000000000 0x14c zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x0000000000000000 0x348 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x0000000000000000 0x26 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x0000000000000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x0000000000000000 0x8 zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x0000000000000000 0x32 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x0000000000000000 0x52 zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x0000000000000000 0x24ec zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x0000000000000000 0x4c9 zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x0000000000000000 0x297e zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x0000000000000000 0x78 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x0000000000000000 0x660 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x0000000000000000 0x14fa zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x0000000000000000 0x504 zephyr/libzephyr.a(rb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x0000000000000000 0x148 zephyr/libzephyr.a(rb.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x0000000000000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x0000000000000000 0x66 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x0000000000000000 0x3e zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x0000000000000000 0x9e zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x0000000000000000 0xb0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x0000000000000000 0xa2 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x0000000000000000 0x34 zephyr/libzephyr.a(timeutil.c.obj) + .text.timespec_normalize + 0x0000000000000000 0xa0 zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x0000000000000000 0xa41 zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x0000000000000000 0x220 zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x0000000000000000 0x8e8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x0000000000000000 0x60 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x0000000000000000 0xb8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x0000000000000000 0x725 zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x0000000000000000 0x63b zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.setup_bundle_data.constprop.0 + 0x0000000000000000 0x38 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x0000000000000000 0x8e zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x0000000000000000 0x40 zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x0000000000000000 0x92 zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x0000000000000000 0x44 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x0000000000000000 0x98 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x0000000000000000 0xb2 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x0000000000000000 0x46 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x0000000000000000 0x46 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x0000000000000000 0xc4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x0000000000000000 0xc6 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x0000000000000000 0x86 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x0000000000000000 0x6e zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x0000000000000000 0x22d7 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x0000000000000000 0x4e5 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x0000000000000000 0x1f3f zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x0000000000000000 0xb8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x0000000000000000 0x2e8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x0000000000000000 0x18ac zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x0000000000000000 0x703 zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x0000000000000000 0x250 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .text.bitmask_find_gap + 0x0000000000000000 0x7e zephyr/libzephyr.a(bitmask.c.obj) + .debug_info 0x0000000000000000 0x218 zephyr/libzephyr.a(bitmask.c.obj) + .debug_abbrev 0x0000000000000000 0x10e zephyr/libzephyr.a(bitmask.c.obj) + .debug_loc 0x0000000000000000 0x2b2 zephyr/libzephyr.a(bitmask.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .debug_ranges 0x0000000000000000 0x40 zephyr/libzephyr.a(bitmask.c.obj) + .debug_line 0x0000000000000000 0x2e8 zephyr/libzephyr.a(bitmask.c.obj) + .debug_str 0x0000000000000000 0x34d zephyr/libzephyr.a(bitmask.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitmask.c.obj) + .debug_frame 0x0000000000000000 0x34 zephyr/libzephyr.a(bitmask.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_claim + 0x0000000000000000 0x30 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x0000000000000000 0x20 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get_claim + 0x0000000000000000 0x1e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_finish + 0x0000000000000000 0x32 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put + 0x0000000000000000 0x40 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get + 0x0000000000000000 0x42 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x0000000000000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x0000000000000000 0x74 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x0000000000000000 0x96 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x0000000000000000 0xcfd zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x0000000000000000 0x2ad zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x0000000000000000 0xb5e zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x0000000000000000 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x0000000000000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x0000000000000000 0x74e zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_str 0x0000000000000000 0x514 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x0000000000000000 0x118 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text.HAL_GetTick + 0x0000000000000000 0x10 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text.HAL_Delay + 0x0000000000000000 0x1c zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_info 0x0000000000000000 0x2d8 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x1cf zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_loc 0x0000000000000000 0x38 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_ranges 0x0000000000000000 0xa8 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_line 0x0000000000000000 0x34a zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_str 0x0000000000000000 0x403 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_frame 0x0000000000000000 0x44 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text.stm32_backup_domain_enable_access + 0x0000000000000000 0x3c zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .rodata.stm32_backup_domain_disable_access.str1.1 + 0x0000000000000000 0x29 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text.stm32_backup_domain_disable_access + 0x0000000000000000 0x60 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss.__warned.0 + 0x0000000000000000 0x4 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss.refcount 0x0000000000000000 0x4 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_table_size + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_timestamp + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_set_all_active_backends + 0x0000000000000000 0x4c zephyr/libzephyr.a(log_core.c.obj) + .text.log_init + 0x0000000000000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_trigger + 0x0000000000000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_set + 0x0000000000000000 0x2 zephyr/libzephyr.a(log_core.c.obj) + .rodata.unordered_notify.str1.1 + 0x0000000000000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.unordered_notify + 0x0000000000000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.z_impl_log_buffered_cnt + 0x0000000000000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_dropped_pending + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim_oldest + 0x0000000000000000 0x74 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_enqueue + 0x0000000000000000 0x6c zephyr/libzephyr.a(log_core.c.obj) + .text.log_set_tag + 0x0000000000000000 0x6 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_usage + 0x0000000000000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_max_usage + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_core.c.obj) + .text.log_flush + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_core.c.obj) + .bss.unordered_cnt + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.prev_timestamp + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.domain_id_cmp + 0x0000000000000000 0xa zephyr/libzephyr.a(log_mgmt.c.obj) + .text.source_id_cmp + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_get_dynamic_filter + 0x0000000000000000 0x44 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_ext_domain_count + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_src_cnt_get + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.log_domain_name_get.str1.1 + 0x0000000000000000 0x1 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_domain_name_get + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_compiled_level_get + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_set_runtime_level + 0x0000000000000000 0x40 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_runtime_filters_init + 0x0000000000000000 0x34 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_source_id_get + 0x0000000000000000 0x38 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_frontend_filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_get_by_name + 0x0000000000000000 0x2c zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_disable + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_filter_get + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_frontend_filter_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_links_initiate + 0x0000000000000000 0x50 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.sname_cache_config.0 + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.dname_cache_config.1 + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache_buffer + 0x0000000000000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache_buffer + 0x0000000000000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_init + 0x0000000000000000 0x5e zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_get + 0x0000000000000000 0xaa zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_put + 0x0000000000000000 0x12 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_release + 0x0000000000000000 0x12 zephyr/libzephyr.a(log_cache.c.obj) + .debug_info 0x0000000000000000 0x1100 zephyr/libzephyr.a(log_cache.c.obj) + .debug_abbrev 0x0000000000000000 0x2b4 zephyr/libzephyr.a(log_cache.c.obj) + .debug_loc 0x0000000000000000 0xbb9 zephyr/libzephyr.a(log_cache.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(log_cache.c.obj) + .debug_ranges 0x0000000000000000 0x240 zephyr/libzephyr.a(log_cache.c.obj) + .debug_line 0x0000000000000000 0x834 zephyr/libzephyr.a(log_cache.c.obj) + .debug_str 0x0000000000000000 0x55c zephyr/libzephyr.a(log_cache.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(log_cache.c.obj) + .debug_frame 0x0000000000000000 0x78 zephyr/libzephyr.a(log_cache.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_timestamp_to_us + 0x0000000000000000 0x30 zephyr/libzephyr.a(log_output.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle_exit + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x0000000000000000 0xff zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x0000000000000000 0x97 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x0000000000000000 0x1d6 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x0000000000000000 0x35b zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/libzephyr.a(tracing_none.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_deconfig + 0x0000000000000000 0x20 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_disable + 0x0000000000000000 0x70 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_read + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_set_stall + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_clear_stall + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_wait + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_continue + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_get_remote_wakeup_status + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_wakeup_request + 0x0000000000000000 0x1c zephyr/libzephyr.a(usb_device.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_str_descriptor_idx + 0x0000000000000000 0x28 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_cfg + 0x0000000000000000 0x16 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_iface + 0x0000000000000000 0x1a zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_ep + 0x0000000000000000 0x2a zephyr/libzephyr.a(usb_descriptor.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync_cb + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_is_busy + 0x0000000000000000 0x16 zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.usb_transfer_ep_callback.str1.1 + 0x0000000000000000 0x1a zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_ep_callback + 0x0000000000000000 0x64 zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.usb_transfer.str1.1 + 0x0000000000000000 0x44 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer + 0x0000000000000000 0x104 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync + 0x0000000000000000 0x44 zephyr/libzephyr.a(usb_transfer.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text.z_get_sw_isr_table_idx + 0x0000000000000000 0x2 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x0000000000000000 0x100 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x0000000000000000 0xa4 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x0000000000000000 0x15 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0000000000000000 0x19d zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0000000000000000 0x310 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_save_fp_context + 0x0000000000000000 0x2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_restore_fp_context + 0x0000000000000000 0x2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_info 0x0000000000000000 0x18c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_abbrev 0x0000000000000000 0xde zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_line 0x0000000000000000 0x1f3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_str 0x0000000000000000 0x371 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_save_scb_context + 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_restore_scb_context + 0x0000000000000000 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_info 0x0000000000000000 0x36c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_abbrev 0x0000000000000000 0x1b3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_loc 0x0000000000000000 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_line 0x0000000000000000 0x3bd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_str 0x0000000000000000 0x3c7 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_frame 0x0000000000000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text.arm_irq_is_enabled + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text.arch_irq_lock_outlined + 0x0000000000000000 0x8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text.arch_cpu_atomic_idle + 0x0000000000000000 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text.__assert_no_args + 0x0000000000000000 0x6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x0000000000000000 0xeb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0xa1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0000000000000000 0x1e7 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0000000000000000 0x30e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.1 + 0x0000000000000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x0000000000000000 0x1c4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x0000000000000000 0x15f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_loc 0x0000000000000000 0x16 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x0000000000000000 0x302 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x0000000000000000 0x3b5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x0000000000000000 0xbf zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x0000000000000000 0x5f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x0000000000000000 0x181 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x0000000000000000 0x2fb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.1 + 0x0000000000000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x0000000000000000 0x110 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x0000000000000000 0xbb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x0000000000000000 0x1b9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x0000000000000000 0x316 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x0000000000000000 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x0000000000000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x0000000000000000 0xa3a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x0000000000000000 0x2f8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x0000000000000000 0x203 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x0000000000000000 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x0000000000000000 0xf0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x0000000000000000 0x63e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x0000000000000000 0x927 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x0000000000000000 0x100 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.abort.str1.1 + 0x0000000000000000 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text.abort 0x0000000000000000 0x18 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x0000000000000000 0x1c4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0000000000000000 0x15f zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_loc 0x0000000000000000 0x16 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0000000000000000 0x35a zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0000000000000000 0x3c4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text.time 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_info 0x0000000000000000 0x14f zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_abbrev 0x0000000000000000 0xff zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_loc 0x0000000000000000 0x61 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_line 0x0000000000000000 0x202 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_str 0x0000000000000000 0x32e zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_unlock + 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x0000000000000000 0x38 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x0000000000000000 0x38 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x0000000000000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x0000000000000000 0x64 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x0000000000000000 0x54 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.foldcase + 0x0000000000000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatchx + 0x0000000000000000 0x28a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatch 0x0000000000000000 0xa zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_info 0x0000000000000000 0x510 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_abbrev 0x0000000000000000 0x20b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_loc 0x0000000000000000 0x56b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_ranges 0x0000000000000000 0x70 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_line 0x0000000000000000 0x522 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_str 0x0000000000000000 0x33f zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_frame 0x0000000000000000 0x58 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text.getentropy + 0x0000000000000000 0x1c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_info 0x0000000000000000 0x253 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_abbrev 0x0000000000000000 0x148 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_line 0x0000000000000000 0x261 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_str 0x0000000000000000 0x3a2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .rodata.getopt_init.str1.1 + 0x0000000000000000 0x1 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text.getopt_init + 0x0000000000000000 0x48 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text.getopt 0x0000000000000000 0xfc zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text.z_getopt_global_state_update + 0x0000000000000000 0x34 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text.getopt_state_get + 0x0000000000000000 0x8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x1 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.m_getopt_common_state + 0x0000000000000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optarg 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optreset 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optopt 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.optind 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.opterr 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_info 0x0000000000000000 0x2b3 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_abbrev 0x0000000000000000 0x13b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_line 0x0000000000000000 0x24b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_str 0x0000000000000000 0x596 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_falling_trig.part.0 + 0x0000000000000000 0x1c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_rising_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_rising_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_falling_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_event + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_it + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_it + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_event + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_falling_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_sw_interrupt + 0x0000000000000000 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.stm32_exti_enable.str1.1 + 0x0000000000000000 0x37 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable + 0x0000000000000000 0xe0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable + 0x0000000000000000 0x4c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_halt + 0x0000000000000000 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_flush.str1.1 + 0x0000000000000000 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_flush + 0x0000000000000000 0x24 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_wakeup_request + 0x0000000000000000 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_detach.str1.1 + 0x0000000000000000 0x32 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_detach + 0x0000000000000000 0x64 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_reset + 0x0000000000000000 0x18 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_ConnectCallback + 0x0000000000000000 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_DisconnectCallback + 0x0000000000000000 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_ISOINIncompleteCallback + 0x0000000000000000 0x12 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_tx_default_cb + 0x0000000000000000 0xc zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_msgq_put.part.0.isra.0.str1.1 + 0x0000000000000000 0x23 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_msgq_put.part.0.isra.0 + 0x0000000000000000 0x30 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_msgq_put + 0x0000000000000000 0x1e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_send + 0x0000000000000000 0xd4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_add_rx_filter_msgq + 0x0000000000000000 0x18 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_bitrate + 0x0000000000000000 0x74 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_bitrate_data + 0x0000000000000000 0x74 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_configure_mram + 0x0000000000000000 0x13c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x0000000000000000 0x2 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_eui64 + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_info 0x0000000000000000 0x1d7 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_abbrev 0x0000000000000000 0x122 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_line 0x0000000000000000 0x273 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_str 0x0000000000000000 0x3e0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x58 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x20 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x0000000000000000 0x2 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x2 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x0000000000000000 0x120 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x0000000000000000 0xa8 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x0000000000000000 0x1a5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x0000000000000000 0x339 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_cycle_get_64 + 0x0000000000000000 0x2c zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_disable + 0x0000000000000000 0x10 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text.SystemInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text.SystemCoreClockUpdate + 0x0000000000000000 0x8c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .rodata.APBPrescTable + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_MspInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_MspDeInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DeInit + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_InitTick + 0x0000000000000000 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_Init + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_IncTick + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTick + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTickPrio + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SetTickFreq + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTickFreq + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_Delay + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SuspendTick + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_ResumeTick + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetHalVersion + 0x0000000000000000 0x8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetREVID + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetDEVID + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw0 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw1 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw2 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_EnableDBGStopMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_DisableDBGStopMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_VoltageScalingConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_HighImpedanceConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_TrimmingConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableVREFBUF + 0x0000000000000000 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableVREFBUF + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableIOAnalogSwitchBooster + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableIOAnalogSwitchBooster + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableRemap + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableRemap + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableClampingDiode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableClampingDiode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_StrobeDBattpinsConfig + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data.uwTickFreq + 0x0000000000000000 0x1 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data.uwTickPrio + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .bss.uwTick 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_info 0x0000000000000000 0xc4e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x308 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_loc 0x0000000000000000 0x1f9 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x130 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_ranges 0x0000000000000000 0x120 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_line 0x0000000000000000 0x823 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_str 0x0000000000000000 0xbaa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_frame 0x0000000000000000 0x280 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_DeInit + 0x0000000000000000 0xb4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_OscConfig + 0x0000000000000000 0x4b0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_MCOConfig + 0x0000000000000000 0x68 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_ClockConfig + 0x0000000000000000 0x15c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetHCLKFreq + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetPCLK1Freq + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetOscConfig + 0x0000000000000000 0xa0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetClockConfig + 0x0000000000000000 0x34 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_EnableCSS + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_EnableLSECSS + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_DisableLSECSS + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_CSSCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_LSECSSCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_NMI_IRQHandler + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetResetSource + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_PeriphCLKConfig + 0x0000000000000000 0x2d0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x0000000000000000 0xa8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x0000000000000000 0x534 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_EnableLSCO + 0x0000000000000000 0x98 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_DisableLSCO + 0x0000000000000000 0x74 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSConfig + 0x0000000000000000 0x54 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSGetSynchronizationInfo + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSWaitSynchronization + 0x0000000000000000 0x84 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_SyncOkCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_SyncWarnCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_ExpectedSyncCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_ErrorCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_IRQHandler + 0x0000000000000000 0x6c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_info 0x0000000000000000 0xc24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_abbrev 0x0000000000000000 0x2d6 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_loc 0x0000000000000000 0x8e8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_aranges + 0x0000000000000000 0x88 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_ranges 0x0000000000000000 0xe0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_line 0x0000000000000000 0x106a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_str 0x0000000000000000 0xa16 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_frame 0x0000000000000000 0x154 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_MspDeInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DeInit + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DataOutStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DataInStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_SetupStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ResetCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_SuspendCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ResumeCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ISOOUTIncompleteCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ISOINIncompleteCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ConnectCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DisconnectCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DevConnect + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DevDisconnect + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_EP_Abort + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_EP_Flush + 0x0000000000000000 0x34 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ActivateRemoteWakeup + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DeActivateRemoteWakeup + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_GetState + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_ActivateBCD + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_DeActivateBCD + 0x0000000000000000 0x16 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_DeActivateLPM + 0x0000000000000000 0x1e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_BCD_Callback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_BCD_VBUSDetect + 0x0000000000000000 0x90 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_CoreInit + 0x0000000000000000 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_SetCurrentMode + 0x0000000000000000 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_FlushTxFifo + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_FlushRxFifo + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_EPStopXfer + 0x0000000000000000 0x64 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_StopDevice + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_ActivateRemoteWakeup + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_DeActivateRemoteWakeup + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HostInit + 0x0000000000000000 0x3c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_ResetPort + 0x0000000000000000 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_GetHostSpeed + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_GetCurrentFrame + 0x0000000000000000 0x8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_DoubleBuffer + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_Init + 0x0000000000000000 0x78 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_StartXfer + 0x0000000000000000 0x2cc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_IN_Halt + 0x0000000000000000 0x1c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_OUT_Halt + 0x0000000000000000 0x1c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_StopHost + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_Init1msTick + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_mDelay + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_SetSystemCoreClock + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.UTILS_EnablePLLAndSwitchSystem + 0x0000000000000000 0xa8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_PLL_ConfigSystemClock_HSI + 0x0000000000000000 0x80 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_PLL_ConfigSystemClock_HSE + 0x0000000000000000 0x90 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_state_init + 0x0000000000000000 0x2 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_init + 0x0000000000000000 0x16 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_deinit + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x0000000000000000 0x64 zephyr/kernel/libkernel.a(init.c.obj) + .data.state.1 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.unpend_thread_no_timeout + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.put_msg_in_queue + 0x0000000000000000 0xcc zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.k_msgq_init + 0x0000000000000000 0x1e zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_alloc_init + 0x0000000000000000 0x68 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.k_msgq_cleanup + 0x0000000000000000 0x2c zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_put + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_put_front + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_get_attrs + 0x0000000000000000 0xe zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_get + 0x0000000000000000 0xb8 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_peek + 0x0000000000000000 0x2e zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_peek_at + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_purge + 0x0000000000000000 0x80 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_info 0x0000000000000000 0x1cc0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_abbrev 0x0000000000000000 0x539 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_loc 0x0000000000000000 0x1025 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_aranges + 0x0000000000000000 0x78 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_ranges 0x0000000000000000 0x2e0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_line 0x0000000000000000 0x11be zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_str 0x0000000000000000 0x9ad zephyr/kernel/libkernel.a(msg_q.c.obj) + .comment 0x0000000000000000 0x21 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_frame 0x0000000000000000 0x148 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x0000000000000000 0x68 zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x0000000000000000 0x2 zephyr/kernel/libkernel.a(work.c.obj) + .text.unschedule_locked + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x0000000000000000 0x64 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_sync_locked + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x0000000000000000 0x74 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_submit + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x0000000000000000 0x56 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_run + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x0000000000000000 0x70 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x0000000000000000 0x86 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init_delayable + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule_for_queue + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x0000000000000000 0x5c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x0000000000000000 0x5e zephyr/kernel/libkernel.a(work.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.1 + 0x0000000000000000 0x3 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x0000000000000000 0x84 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x0000000000000000 0xe zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x41 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string.0 + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_move_thread_to_end_of_prio_q + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x0000000000000000 0xe0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x0000000000000000 0x28 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_thread + 0x0000000000000000 0x12 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_all + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x0000000000000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x0000000000000000 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x0000000000000000 0x3a zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x0000000000000000 0x38 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.timeout_rem + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x0000000000000000 0x36 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_calc + 0x0000000000000000 0x42 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_timeout + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x0000000000000000 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.lock 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_cas + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_ptr_cas + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.atomic_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.atomic_ptr_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_ptr_set + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_or + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_xor + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_and + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_nand + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_alloc_helper + 0x0000000000000000 0x32 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_alloc_helper + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_free 0x0000000000000000 0x12 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_aligned_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_malloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_calloc + 0x0000000000000000 0x56 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_realloc + 0x0000000000000000 0x42 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_aligned_alloc + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_malloc + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.z_heap_alloc_helper + 0x0000000000000000 0x6e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_array_get + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x0000000000000000 0x5a zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x0000000000000000 0x6e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_free + 0x0000000000000000 0x32 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x0000000000000000 0x14 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .tbss.errno 0x0000000000000000 0x4 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .text.strchr 0x0000000000000000 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x0000000000000000 0x40 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x0000000000000000 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x0000000000000000 0x14 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_ungetc + 0x0000000000000000 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x0000000000000000 0x2a c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x0000000000000000 0x2a c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x0000000000000000 0xc c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x0000000000000000 0x394 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x0000000000000000 0x94 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x0000000000000000 0x42 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x0000000000000000 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x0000000000000000 0x32 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x0000000000000000 0x2c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .text.__picolibc_non_atomic_compare_exchange_ungetc + 0x0000000000000000 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .debug_frame 0x0000000000000000 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .text.__picolibc_non_atomic_exchange_ungetc + 0x0000000000000000 0x8 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .text 0x0000000000000000 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .text 0x0000000000000000 0x74 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .text 0x0000000000000000 0x48 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .text 0x0000000000000000 0x44 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .text 0x0000000000000000 0xe c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .debug_frame 0x0000000000000000 0x28 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .text 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x38 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x3c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .text 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .text 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .ARM.extab 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .text 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .text 0x0000000000000000 0x4e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .text 0x0000000000000000 0x9c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .text 0x0000000000000000 0xa0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .text 0x0000000000000000 0x5e0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .text 0x0000000000000000 0x504 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .text 0x0000000000000000 0x454 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .text 0x0000000000000000 0x628 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .text 0x0000000000000000 0x54 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .text 0x0000000000000000 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .debug_frame 0x0000000000000000 0x28 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .text 0x0000000000000000 0x84 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .text 0x0000000000000000 0x118 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .text 0x0000000000000000 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .text 0x0000000000000000 0x7c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .text 0x0000000000000000 0x38 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .text 0x0000000000000000 0x142 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.extab 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.exidx 0x0000000000000000 0x8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x84 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .text 0x0000000000000000 0xec c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .text 0x0000000000000000 0xf0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .text 0x0000000000000000 0x64 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x0000000008000000 0x0000000000080000 xr +RAM 0x0000000020000000 0x0000000000024000 xw +SRAM0 0x0000000020000000 0x0000000000024000 rw +IDT_LIST 0x00000000ffff7fff 0x0000000000008000 xw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + + 0x0000000008008adc vfprintf = __l_vfprintf + 0x0000000000000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/arm/core/libarch__arm__core.a +LOAD zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a +LOAD zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a +LOAD zephyr/drivers/usb/device/libdrivers__usb__device.a +LOAD zephyr/drivers/can/libdrivers__can.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/hwinfo/libdrivers__hwinfo.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/reset/libdrivers__reset.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a +LOAD c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a + 0x0000000000000004 _region_min_align = 0x4 + +.rel.plt 0x0000000008000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + .rel.iplt 0x0000000008000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.plt)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.iplt)) + 0x0000000008000000 __rom_region_start = 0x8000000 + +rom_start 0x0000000008000000 0xbc + 0x0000000008000000 __rom_start_address = . + FILL mask 0x00 + 0x0000000008000000 . = (. + (0x0 - (. - __rom_start_address))) + 0x0000000008000000 . = ALIGN (0x4) + 0x0000000008000000 . = ALIGN (0x100) + 0x0000000008000000 . = ALIGN (0x100) + 0x0000000008000000 _vector_start = . + *(SORT_BY_ALIGNMENT(.exc_vector_table)) + *(SORT_BY_ALIGNMENT(.exc_vector_table.*)) + .exc_vector_table._vector_table_section + 0x0000000008000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + 0x0000000008000000 _vector_table + *(SORT_BY_ALIGNMENT(.vectors)) + 0x00000000080000bc _vector_end = . + 0x0000000008000040 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.irq_vector_table*)) + .gnu.linkonce.irq_vector_table + 0x0000000008000040 0x7c zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x0000000008000040 _irq_vector_table + 0x00000000080000bc _vector_end = . + +text 0x00000000080000bc 0xa8d4 + 0x00000000080000bc __text_region_start = . + *(SORT_BY_ALIGNMENT(.text)) + .text 0x00000000080000bc 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + 0x00000000080000bc __gnu_thumb1_case_sqi + .text 0x00000000080000d0 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + 0x00000000080000d0 __gnu_thumb1_case_uqi + .text 0x00000000080000e4 0x8c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + 0x00000000080000e4 __aeabi_uidiv + 0x00000000080000e4 __udivsi3 + 0x000000000800015c __aeabi_uidivmod + .text 0x0000000008000170 0xa8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + 0x0000000008000170 __divsi3 + 0x0000000008000170 __aeabi_idiv + 0x0000000008000204 __aeabi_idivmod + .text 0x0000000008000218 0x4 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + 0x0000000008000218 __aeabi_idiv0 + 0x0000000008000218 __aeabi_ldiv0 + .text 0x000000000800021c 0x3c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + 0x000000000800021c __clzsi2 + .text 0x0000000008000258 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + 0x0000000008000258 __ctzsi2 + .text 0x0000000008000298 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + 0x0000000008000298 __aeabi_uldivmod + .text 0x00000000080002d8 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + 0x00000000080002d8 __lshrdi3 + 0x00000000080002d8 __aeabi_llsr + .text 0x00000000080002f0 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + 0x00000000080002f0 __aeabi_llsl + 0x00000000080002f0 __ashldi3 + .text 0x0000000008000308 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + 0x0000000008000308 __clzdi2 + .text 0x0000000008000320 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + 0x0000000008000320 strcpy + .text 0x0000000008000330 0xe c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + 0x0000000008000330 strlen + .text 0x000000000800033e 0xde c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + 0x000000000800033e __udivmoddi4 + *(SORT_BY_ALIGNMENT(.text.*)) + .text.main 0x000000000800041c 0xd4 app/libapp.a(main.c.obj) + 0x000000000800041c main + .text.cdc_handler_init + 0x00000000080004f0 0x38 app/libapp.a(cdc_handler.c.obj) + 0x00000000080004f0 cdc_handler_init + .text.cdc_handler_process + 0x0000000008000528 0x158 app/libapp.a(cdc_handler.c.obj) + 0x0000000008000528 cdc_handler_process + .text.gpio_pin_configure_dt.constprop.0 + 0x0000000008000680 0x4c app/libapp.a(pfet_control.c.obj) + .text.pfet_control_init + 0x00000000080006cc 0x84 app/libapp.a(pfet_control.c.obj) + 0x00000000080006cc pfet_control_init + .text.pfet_set_state + 0x0000000008000750 0xa0 app/libapp.a(pfet_control.c.obj) + 0x0000000008000750 pfet_set_state + .text.pfet_get_state + 0x00000000080007f0 0x20 app/libapp.a(pfet_control.c.obj) + 0x00000000080007f0 pfet_get_state + .text.can_rx_callback + 0x0000000008000810 0xb8 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_can_init + 0x00000000080008c8 0x98 app/libapp.a(gs_usb_can.c.obj) + 0x00000000080008c8 gs_usb_can_init + .text.gs_usb_send_frame_to_host + 0x0000000008000960 0x38 app/libapp.a(usb_gs_usb_class.c.obj) + 0x0000000008000960 gs_usb_send_frame_to_host + .text.usb_gs_usb_init + 0x0000000008000998 0x44 app/libapp.a(usb_gs_usb_class.c.obj) + 0x0000000008000998 usb_gs_usb_init + .text.cbvprintf_package + 0x00000000080009dc 0x3b8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x00000000080009dc cbvprintf_package + .text.cbprintf_package_convert + 0x0000000008000d94 0x430 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x0000000008000d94 cbprintf_package_convert + .text.__printk_hook_install + 0x00000000080011c4 0xc zephyr/libzephyr.a(printk.c.obj) + 0x00000000080011c4 __printk_hook_install + .text.z_thread_entry + 0x00000000080011d0 0x30 zephyr/libzephyr.a(thread_entry.c.obj) + 0x00000000080011d0 z_thread_entry + .text.st_stm32_common_config + 0x0000000008001200 0x3c zephyr/libzephyr.a(soc_config.c.obj) + .text.soc_early_init_hook + 0x000000000800123c 0x4c zephyr/libzephyr.a(soc.c.obj) + 0x000000000800123c soc_early_init_hook + .text.activate_foreach_backend + 0x0000000008001288 0x58 zephyr/libzephyr.a(log_core.c.obj) + .text.enable_logger + 0x00000000080012e0 0x5c zephyr/libzephyr.a(log_core.c.obj) + .text.log_process_thread_timer_expiry_fn + 0x000000000800133c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_init + 0x000000000800134c 0x90 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_func_t_get + 0x00000000080013dc 0xc zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080013dc log_format_func_t_get + .text.log_set_timestamp_func + 0x00000000080013e8 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080013e8 log_set_timestamp_func + .text.z_log_notify_backend_enabled + 0x0000000008001408 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001408 z_log_notify_backend_enabled + .text.z_log_dropped + 0x0000000008001428 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001428 z_log_dropped + .text.z_log_dropped_read_and_clear + 0x000000000800145c 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800145c z_log_dropped_read_and_clear + .text.dropped_notify + 0x000000000800146c 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800146c dropped_notify + .text.z_log_msg_init + 0x00000000080014a0 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080014a0 z_log_msg_init + .text.log_core_init + 0x00000000080014c0 0x50 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080014c0 log_core_init + .text.z_log_msg_alloc + 0x0000000008001510 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001510 z_log_msg_alloc + .text.z_log_msg_local_claim + 0x0000000008001528 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001528 z_log_msg_local_claim + .text.z_log_msg_free + 0x0000000008001538 0x14 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001538 z_log_msg_free + .text.z_log_msg_pending + 0x000000000800154c 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800154c z_log_msg_pending + .text.z_impl_log_process + 0x000000000800155c 0x9c zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800155c z_impl_log_process + .text.z_impl_log_panic + 0x00000000080015f8 0x48 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080015f8 z_impl_log_panic + .text.log_process_thread_func + 0x0000000008001640 0xa4 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_post_finalize + 0x00000000080016e4 0x70 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_commit + 0x0000000008001754 0x24 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001754 z_log_msg_commit + .text.log_source_name_get + 0x0000000008001778 0x1c zephyr/libzephyr.a(log_mgmt.c.obj) + 0x0000000008001778 log_source_name_get + .text.z_log_msg_simple_create + 0x0000000008001794 0x70 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_impl_z_log_msg_static_create + 0x0000000008001804 0x130 zephyr/libzephyr.a(log_msg.c.obj) + 0x0000000008001804 z_impl_z_log_msg_static_create + .text.z_log_msg_runtime_vcreate + 0x0000000008001934 0x9c zephyr/libzephyr.a(log_msg.c.obj) + 0x0000000008001934 z_log_msg_runtime_vcreate + .text.log_msg_get_source_id + 0x00000000080019d0 0x1c zephyr/libzephyr.a(log_msg.c.obj) + 0x00000000080019d0 log_msg_get_source_id + .text.print_formatted + 0x00000000080019ec 0x20 zephyr/libzephyr.a(log_output.c.obj) + .text.newline_print + 0x0000000008001a0c 0x20 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_process + 0x0000000008001a2c 0x2cc zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001a2c log_output_process + .text.log_output_dropped_process + 0x0000000008001cf8 0x58 zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001cf8 log_output_dropped_process + .text.log_output_timestamp_freq_set + 0x0000000008001d50 0x34 zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001d50 log_output_timestamp_freq_set + .text.char_out + 0x0000000008001d84 0x24 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.class_handler + 0x0000000008001da8 0x54 zephyr/libzephyr.a(usb_device.c.obj) + .text.custom_handler + 0x0000000008001dfc 0x68 zephyr/libzephyr.a(usb_device.c.obj) + .text.vendor_handler + 0x0000000008001e64 0x38 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_reset_alt_setting + 0x0000000008001e9c 0x14 zephyr/libzephyr.a(usb_device.c.obj) + .text.is_ep_valid.part.0 + 0x0000000008001eb0 0x34 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_halt_endpoint_req + 0x0000000008001ee4 0x7c zephyr/libzephyr.a(usb_device.c.obj) + .text.get_ep_bm_from_addr.part.0 + 0x0000000008001f60 0x1c zephyr/libzephyr.a(usb_device.c.obj) + .text.disable_endpoint + 0x0000000008001f7c 0x54 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_request.constprop.0 + 0x0000000008001fd0 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .text.forward_status_cb + 0x0000000008002000 0xa8 zephyr/libzephyr.a(usb_device.c.obj) + .text.set_endpoint + 0x00000000080020a8 0xd0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_standard_request + 0x0000000008002178 0x330 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_write + 0x00000000080024a8 0x44 zephyr/libzephyr.a(usb_device.c.obj) + 0x00000000080024a8 usb_write + .text.usb_data_to_host + 0x00000000080024ec 0x5c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_control_transfer + 0x0000000008002548 0xf8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_set_config + 0x0000000008002640 0x2c zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000008002640 usb_set_config + .text.usb_enable + 0x000000000800266c 0x16c zephyr/libzephyr.a(usb_device.c.obj) + 0x000000000800266c usb_enable + .text.usb_update_sn_string_descriptor + 0x00000000080027d8 0x74 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x00000000080027d8 usb_update_sn_string_descriptor + .text.usb_get_device_descriptor + 0x000000000800284c 0x264 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000000800284c usb_get_device_descriptor + .text.usb_ep_get_transfer + 0x0000000008002ab0 0x2c zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_work + 0x0000000008002adc 0xf0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_cancel_transfer + 0x0000000008002bcc 0x34 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002bcc usb_cancel_transfer + .text.usb_cancel_transfers + 0x0000000008002c00 0x40 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002c00 usb_cancel_transfers + .text.usb_transfer_init + 0x0000000008002c40 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002c40 usb_transfer_init + .text.arch_bss_zero + 0x0000000008002c70 0x18 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x0000000008002c70 arch_bss_zero + .text.arch_data_copy + 0x0000000008002c88 0x34 zephyr/arch/common/libarch__common.a(xip.c.obj) + 0x0000000008002c88 arch_data_copy + .text.z_arm_fatal_error + 0x0000000008002cbc 0xb8 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000008002cbc z_arm_fatal_error + .text.z_SysNmiOnReset + 0x0000000008002d74 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x0000000008002d74 z_SysNmiOnReset + .text.arch_tls_stack_setup + 0x0000000008002d78 0x38 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000008002d78 arch_tls_stack_setup + .text._HandlerModeExit + 0x0000000008002db0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x0000000008002db0 z_arm_int_exit + 0x0000000008002db0 z_arm_exc_exit + .text.z_arm_fault + 0x0000000008002dd0 0x138 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000008002dd0 z_arm_fault + .text.z_arm_fault_init + 0x0000000008002f08 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000008002f08 z_arm_fault_init + .text.__fault 0x0000000008002f18 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0x0000000008002f18 z_arm_hard_fault + 0x0000000008002f18 z_arm_exc_spurious + .text._reset_section + 0x0000000008002f2c 0x34 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x0000000008002f2c __start + 0x0000000008002f2c z_arm_reset + .text.z_impl_k_thread_abort + 0x0000000008002f60 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x0000000008002f60 z_impl_k_thread_abort + .text.z_arm_pendsv + 0x0000000008002f98 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000008002f98 z_arm_pendsv + .text.z_arm_svc + 0x0000000008003008 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000008003008 z_arm_svc + .text.arm_irq_enable + 0x0000000008003030 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003030 arm_irq_enable + .text.arm_irq_disable + 0x0000000008003048 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003048 arm_irq_disable + .text.arm_irq_priority_set + 0x0000000008003068 0x54 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003068 arm_irq_priority_set + .text.relocate_vector_table + 0x00000000080030bc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x00000000080030bc relocate_vector_table + .text.arch_new_thread + 0x00000000080030d8 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x00000000080030d8 arch_new_thread + .text.arch_switch_to_main_thread + 0x0000000008003104 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000008003104 arch_switch_to_main_thread + .text.z_arm_cpu_idle_init + 0x000000000800313c 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000800313c z_arm_cpu_idle_init + .text.z_arm_interrupt_init + 0x0000000008003148 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x0000000008003148 z_arm_interrupt_init + .text._isr_wrapper + 0x0000000008003178 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x0000000008003178 _isr_wrapper + .text.cbvprintf + 0x0000000008003198 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x0000000008003198 cbvprintf + .text.z_impl_zephyr_fputc + 0x00000000080031d0 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x00000000080031d0 z_impl_zephyr_fputc + .text.__stdout_hook_install + 0x00000000080031e0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x00000000080031e0 __stdout_hook_install + .text.malloc_prepare + 0x00000000080031f8 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.stm32_intc_gpio_isr + 0x000000000800321c 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text.stm32_exti_gpio_intc_init + 0x0000000008003264 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text.stm32_gpio_intc_enable_line + 0x00000000080032a4 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032a4 stm32_gpio_intc_enable_line + .text.stm32_gpio_intc_disable_line + 0x00000000080032d4 0x10 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032d4 stm32_gpio_intc_disable_line + .text.stm32_gpio_intc_select_line_trigger + 0x00000000080032e4 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032e4 stm32_gpio_intc_select_line_trigger + .text.stm32_gpio_intc_set_irq_callback + 0x000000000800332c 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800332c stm32_gpio_intc_set_irq_callback + .text.stm32_gpio_intc_remove_irq_callback + 0x000000000800336c 0x24 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800336c stm32_gpio_intc_remove_irq_callback + .text.stm32_exti_set_line_src_port + 0x0000000008003390 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x0000000008003390 stm32_exti_set_line_src_port + .text.stm32_exti_get_line_src_port + 0x00000000080033c0 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080033c0 stm32_exti_get_line_src_port + .text.stm32_exti_init + 0x00000000080033e8 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_is_pending + 0x0000000008003430 0x54 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x0000000008003430 stm32_exti_is_pending + .text.stm32_exti_clear_pending + 0x0000000008003484 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x0000000008003484 stm32_exti_clear_pending + .text.usb_dc_stm32_get_ep_state + 0x00000000080034c4 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_stm32_isr + 0x00000000080034f0 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_read_continue.part.0 + 0x0000000008003500 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_get_read_count.part.0 + 0x000000000800351c 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_attach + 0x0000000008003538 0x1c8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003538 usb_dc_attach + .text.usb_dc_set_status_callback + 0x0000000008003700 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003700 usb_dc_set_status_callback + .text.usb_dc_set_address + 0x0000000008003710 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003710 usb_dc_set_address + .text.usb_dc_ep_start_read + 0x0000000008003744 0x70 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003744 usb_dc_ep_start_read + .text.usb_dc_ep_get_read_count + 0x00000000080037b4 0x28 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080037b4 usb_dc_ep_get_read_count + .text.usb_dc_ep_check_cap + 0x00000000080037dc 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080037dc usb_dc_ep_check_cap + .text.usb_dc_ep_configure + 0x0000000008003810 0x94 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003810 usb_dc_ep_configure + .text.usb_dc_ep_set_stall + 0x00000000080038a4 0x44 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080038a4 usb_dc_ep_set_stall + .text.usb_dc_ep_clear_stall + 0x00000000080038e8 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080038e8 usb_dc_ep_clear_stall + .text.usb_dc_ep_enable + 0x0000000008003934 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003934 usb_dc_ep_enable + .text.usb_dc_ep_disable + 0x0000000008003994 0x5c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003994 usb_dc_ep_disable + .text.usb_dc_ep_write + 0x00000000080039f0 0xd8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080039f0 usb_dc_ep_write + .text.usb_dc_ep_read_wait + 0x0000000008003ac8 0x90 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003ac8 usb_dc_ep_read_wait + .text.usb_dc_ep_read_continue + 0x0000000008003b58 0x38 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003b58 usb_dc_ep_read_continue + .text.HAL_PCD_ResetCallback + 0x0000000008003b90 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003b90 HAL_PCD_ResetCallback + .text.HAL_PCD_SuspendCallback + 0x0000000008003bdc 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003bdc HAL_PCD_SuspendCallback + .text.HAL_PCD_ResumeCallback + 0x0000000008003bf8 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003bf8 HAL_PCD_ResumeCallback + .text.HAL_PCD_SetupStageCallback + 0x0000000008003c14 0x58 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003c14 HAL_PCD_SetupStageCallback + .text.can_calc_timing_internal + 0x0000000008003c6c 0x1f0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_add_rx_filter + 0x0000000008003e5c 0x9c zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003e5c can_add_rx_filter + .text.z_impl_can_calc_timing + 0x0000000008003ef8 0x28 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003ef8 z_impl_can_calc_timing + .text.z_impl_can_calc_timing_data + 0x0000000008003f20 0x28 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003f20 z_impl_can_calc_timing_data + .text.can_mcan_read_reg + 0x0000000008003f48 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008003f48 can_mcan_read_reg + .text.can_mcan_write_reg + 0x0000000008003f74 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008003f74 can_mcan_write_reg + .text.can_mcan_get_message + 0x0000000008003fa0 0x158 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_exit_sleep_mode + 0x00000000080040f8 0x94 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_set_timing + 0x000000000800418c 0x64 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x000000000800418c can_mcan_set_timing + .text.can_mcan_start + 0x00000000080041f0 0xfc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080041f0 can_mcan_start + .text.can_mcan_set_mode + 0x00000000080042ec 0xc8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080042ec can_mcan_set_mode + .text.can_mcan_line_1_isr + 0x00000000080043b4 0x8c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080043b4 can_mcan_line_1_isr + .text.can_mcan_line_0_isr + 0x0000000008004440 0x1b0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004440 can_mcan_line_0_isr + .text.can_mcan_send + 0x00000000080045f0 0x220 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080045f0 can_mcan_send + .text.can_mcan_add_rx_filter_std + 0x0000000008004810 0xcc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004810 can_mcan_add_rx_filter_std + .text.can_mcan_add_rx_filter + 0x00000000080048dc 0x114 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080048dc can_mcan_add_rx_filter + .text.can_mcan_remove_rx_filter + 0x00000000080049f0 0xa4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080049f0 can_mcan_remove_rx_filter + .text.can_mcan_stop + 0x0000000008004a94 0xb0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004a94 can_mcan_stop + .text.can_mcan_init + 0x0000000008004b44 0x1b4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004b44 can_mcan_init + .text.can_stm32fd_remap_reg + 0x0000000008004cf8 0xc0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_read_reg + 0x0000000008004db8 0x8c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_write_reg + 0x0000000008004e44 0x8c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_init + 0x0000000008004ed0 0x118 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_get_core_clock + 0x0000000008004fe8 0x88 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.LL_RCC_HSI_IsReady + 0x0000000008005070 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_on + 0x0000000008005080 0x40 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_off + 0x00000000080050c0 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_get_subsys_rate + 0x00000000080050f0 0x98 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.enabled_clock + 0x0000000008005188 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008005188 enabled_clock + .text.stm32_clock_control_configure + 0x00000000080051a4 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_get_status + 0x00000000080051fc 0x34 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_init + 0x0000000008005230 0x178 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008005230 stm32_clock_control_init + .text.get_pllsrc_frequency + 0x00000000080053a8 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053a8 get_pllsrc_frequency + .text.config_pll_sysclock + 0x00000000080053b0 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053b0 config_pll_sysclock + .text.config_enable_default_clocks + 0x00000000080053d8 0x48 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053d8 config_enable_default_clocks + .text.uart_console_init + 0x0000000008005420 0x2c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.console_out + 0x000000000800544c 0x28 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.gpio_stm32_pin_interrupt_configure + 0x0000000008005474 0xb0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_init + 0x0000000008005524 0x3c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000008005560 0x3c zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + 0x0000000008005560 z_impl_hwinfo_get_device_id + .text.pinctrl_configure_pins + 0x000000000800559c 0x8c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + 0x000000000800559c pinctrl_configure_pins + .text.uart_stm32_config_get + 0x0000000008005628 0xa4 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_set_baudrate + 0x00000000080056cc 0xac zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_parameters_set + 0x0000000008005778 0x168 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_init + 0x00000000080058e0 0x220 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_configure + 0x0000000008005b00 0x17c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.elapsed 0x0000000008005c7c 0x54 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_driver_init + 0x0000000008005cd0 0x40 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_isr + 0x0000000008005d10 0x58 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005d10 sys_clock_isr + .text.sys_clock_set_timeout + 0x0000000008005d68 0x114 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005d68 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x0000000008005e7c 0x34 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005e7c sys_clock_elapsed + .text.sys_clock_cycle_get_32 + 0x0000000008005eb0 0x24 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005eb0 sys_clock_cycle_get_32 + .text.HAL_RCC_GetSysClockFreq + 0x0000000008005ed4 0x88 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + 0x0000000008005ed4 HAL_RCC_GetSysClockFreq + .text.PCD_GET_EP_DBUF0_CNT.constprop.0 + 0x0000000008005f5c 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.PCD_GET_EP_RX_CNT.constprop.0 + 0x0000000008005f84 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_Init + 0x0000000008005fac 0xa0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x0000000008005fac HAL_PCD_Init + .text.HAL_PCD_IRQHandler + 0x000000000800604c 0x9d8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800604c HAL_PCD_IRQHandler + .text.USB_EnableGlobalInt + 0x0000000008006a24 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a24 USB_EnableGlobalInt + .text.USB_DisableGlobalInt + 0x0000000008006a34 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a34 USB_DisableGlobalInt + .text.USB_ActivateEndpoint + 0x0000000008006a44 0x2ac modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a44 USB_ActivateEndpoint + .text.USB_DeactivateEndpoint + 0x0000000008006cf0 0x128 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006cf0 USB_DeactivateEndpoint + .text.USB_EPSetStall + 0x0000000008006e18 0x3c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006e18 USB_EPSetStall + .text.USB_EPClearStall + 0x0000000008006e54 0x8c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006e54 USB_EPClearStall + .text.USB_DevDisconnect + 0x0000000008006ee0 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006ee0 USB_DevDisconnect + .text.USB_WritePMA + 0x0000000008006ef0 0x68 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006ef0 USB_WritePMA + .text.USB_EPStartXfer + 0x0000000008006f58 0x588 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006f58 USB_EPStartXfer + .text.USB_ReadPMA + 0x00000000080074e0 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x00000000080074e0 USB_ReadPMA + .text.LL_SetFlashLatency + 0x000000000800753c 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + 0x000000000800753c LL_SetFlashLatency + .text.k_sys_fatal_error_handler + 0x000000000800758c 0x20 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000800758c k_sys_fatal_error_handler + .text.z_fatal_error + 0x00000000080075ac 0xf4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x00000000080075ac z_fatal_error + .text.z_sys_init_run_level + 0x00000000080076a0 0x34 zephyr/kernel/libkernel.a(init.c.obj) + .text.bg_thread_main + 0x00000000080076d4 0xa8 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_init_cpu + 0x000000000800777c 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000800777c z_init_cpu + .text.z_cstart + 0x00000000080077e4 0xb4 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000080077e4 z_cstart + .text.z_impl_k_mutex_lock + 0x0000000008007898 0xf0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x0000000008007898 z_impl_k_mutex_lock + .text.z_impl_k_mutex_unlock + 0x0000000008007988 0x98 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x0000000008007988 z_impl_k_mutex_unlock + .text.z_impl_k_sem_give + 0x0000000008007a20 0x64 zephyr/kernel/libkernel.a(sem.c.obj) + 0x0000000008007a20 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x0000000008007a84 0x4c zephyr/kernel/libkernel.a(sem.c.obj) + 0x0000000008007a84 z_impl_k_sem_take + .text.k_sys_work_q_init + 0x0000000008007ad0 0x28 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text.work_queue_main + 0x0000000008007af8 0x144 zephyr/kernel/libkernel.a(work.c.obj) + .text.submit_to_queue_locked + 0x0000000008007c3c 0xd4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_start + 0x0000000008007d10 0x88 zephyr/kernel/libkernel.a(work.c.obj) + 0x0000000008007d10 k_work_queue_start + .text.z_setup_new_thread + 0x0000000008007d98 0x74 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007d98 z_setup_new_thread + .text.z_impl_k_thread_create + 0x0000000008007e0c 0x58 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007e0c z_impl_k_thread_create + .text.z_dummy_thread_init + 0x0000000008007e64 0x18 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007e64 z_dummy_thread_init + .text.z_swap_irqlock + 0x0000000008007e7c 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + .text.ready_thread + 0x0000000008007ea8 0x8c zephyr/kernel/libkernel.a(sched.c.obj) + .text.unready_thread + 0x0000000008007f34 0x58 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_thread_timeout + 0x0000000008007f8c 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text.move_thread_to_end_of_prio_q + 0x0000000008007fa4 0x98 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008007fa4 move_thread_to_end_of_prio_q + .text.z_pend_curr + 0x000000000800803c 0x38 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800803c z_pend_curr + .text.z_thread_prio_set + 0x0000000008008074 0xe8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008074 z_thread_prio_set + .text.z_reschedule + 0x000000000800815c 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800815c z_reschedule + .text.z_reschedule_irqlock + 0x0000000008008188 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008188 z_reschedule_irqlock + .text.k_sched_lock + 0x00000000080081b4 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080081b4 k_sched_lock + .text.k_sched_unlock + 0x00000000080081d4 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080081d4 k_sched_unlock + .text.z_sched_init + 0x0000000008008234 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008234 z_sched_init + .text.z_impl_k_yield + 0x0000000008008248 0x84 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008248 z_impl_k_yield + .text.z_tick_sleep + 0x00000000080082cc 0x74 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_sleep + 0x0000000008008340 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008340 z_impl_k_sleep + .text.z_impl_k_wakeup + 0x0000000008008380 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008380 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x00000000080083c0 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080083c0 z_impl_k_sched_current_thread_query + .text.z_thread_abort + 0x00000000080083cc 0x12c zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080083cc z_thread_abort + .text.z_sched_wait + 0x00000000080084f8 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080084f8 z_sched_wait + .text.slice_timeout + 0x000000000800851c 0x20 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.thread_is_sliceable + 0x000000000800853c 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000800853c thread_is_sliceable + .text.z_reset_time_slice + 0x000000000800857c 0x4c zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000800857c z_reset_time_slice + .text.z_time_slice + 0x00000000080085c8 0x58 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x00000000080085c8 z_time_slice + .text.first 0x0000000008008620 0x10 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.next_timeout + 0x0000000008008630 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.elapsed 0x0000000008008668 0x18 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.remove_timeout + 0x0000000008008680 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_add_timeout + 0x00000000080086b8 0x120 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080086b8 z_add_timeout + .text.sys_clock_announce + 0x00000000080087d8 0xd4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080087d8 sys_clock_announce + .text.sys_clock_tick_get + 0x00000000080088ac 0x2c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080088ac sys_clock_tick_get + .text.z_timer_expiration_handler + 0x00000000080088d8 0x108 zephyr/kernel/libkernel.a(timer.c.obj) + 0x00000000080088d8 z_timer_expiration_handler + .text.z_impl_k_timer_start + 0x00000000080089e0 0x68 zephyr/kernel/libkernel.a(timer.c.obj) + 0x00000000080089e0 z_impl_k_timer_start + .text.k_thread_system_pool_assign + 0x0000000008008a48 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + 0x0000000008008a48 k_thread_system_pool_assign + .text.boot_banner + 0x0000000008008a54 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + 0x0000000008008a54 boot_banner + .text.statics_init + 0x0000000008008a64 0x24 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.snprintf + 0x0000000008008a88 0x54 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + 0x0000000008008a88 snprintf + .text.__l_vfprintf + 0x0000000008008adc 0x4d0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + 0x0000000008008adc __l_vfprintf + .text._OffsetAbsSyms + 0x0000000008008fac 0x2 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x0000000008008fac _OffsetAbsSyms + .text.gpio_pin_set_dt + 0x0000000008008fae 0x2e app/libapp.a(pfet_control.c.obj) + .text.chunk_size + 0x0000000008008fdc 0xa zephyr/libzephyr.a(heap.c.obj) + .text.free_list_add + 0x0000000008008fe6 0x4e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_init + 0x0000000008009034 0x74 zephyr/libzephyr.a(heap.c.obj) + 0x0000000008009034 sys_heap_init + .text.cbpprintf_external + 0x00000000080090a8 0x68 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x00000000080090a8 cbpprintf_external + .text.is_ptr 0x0000000008009110 0x4a zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x0000000008009110 is_ptr + .text.arch_printk_char_out + 0x000000000800915a 0x4 zephyr/libzephyr.a(printk.c.obj) + 0x000000000800915a arch_printk_char_out + .text.printk 0x000000000800915e 0x16 zephyr/libzephyr.a(printk.c.obj) + 0x000000000800915e printk + .text.free_space + 0x0000000008009174 0x2c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.get_usage + 0x00000000080091a0 0x22 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.idx_inc 0x00000000080091c2 0x1c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.rd_idx_inc + 0x00000000080091de 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.add_skip_item + 0x00000000080091f6 0x3a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.drop_item_locked + 0x0000000008009230 0xf0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.post_drop_action + 0x0000000008009320 0x38 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.max_utilization_update + 0x0000000008009358 0x1a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_init + 0x0000000008009372 0x42 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x0000000008009372 mpsc_pbuf_init + .text.mpsc_pbuf_alloc + 0x00000000080093b4 0xfc zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080093b4 mpsc_pbuf_alloc + .text.mpsc_pbuf_commit + 0x00000000080094b0 0x38 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080094b0 mpsc_pbuf_commit + .text.mpsc_pbuf_claim + 0x00000000080094e8 0xa2 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080094e8 mpsc_pbuf_claim + .text.mpsc_pbuf_free + 0x000000000800958a 0x72 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x000000000800958a mpsc_pbuf_free + .text.mpsc_pbuf_is_pending + 0x00000000080095fc 0x2e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080095fc mpsc_pbuf_is_pending + .text._ConfigAbsSyms + 0x000000000800962a 0x2 zephyr/libzephyr.a(configs.c.obj) + 0x000000000800962a _ConfigAbsSyms + .text.log_msg_generic_get_wlen + 0x000000000800962c 0x22 zephyr/libzephyr.a(log_core.c.obj) + .text.dummy_timestamp + 0x000000000800964e 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text.atomic_inc + 0x0000000008009652 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.default_lf_get_timestamp + 0x000000000800965c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_vprintk + 0x000000000800966c 0x1a zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800966c z_log_vprintk + .text.z_log_notify_drop + 0x0000000008009686 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_get_tag + 0x0000000008009690 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008009690 z_log_get_tag + .text.log_backend_enable + 0x0000000008009694 0x16 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x0000000008009694 log_backend_enable + .text.z_cbprintf_cpy + 0x00000000080096aa 0x32 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_log_msg_finalize + 0x00000000080096dc 0x32 zephyr/libzephyr.a(log_msg.c.obj) + 0x00000000080096dc z_log_msg_finalize + .text.z_impl_z_log_msg_simple_create_0 + 0x000000000800970e 0xe zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800970e z_impl_z_log_msg_simple_create_0 + .text.z_impl_z_log_msg_simple_create_1 + 0x000000000800971c 0x10 zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800971c z_impl_z_log_msg_simple_create_1 + .text.z_impl_z_log_msg_simple_create_2 + 0x000000000800972c 0x16 zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800972c z_impl_z_log_msg_simple_create_2 + .text.log_output_write + 0x0000000008009742 0x1e zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_flush + 0x0000000008009760 0x18 zephyr/libzephyr.a(log_output.c.obj) + .text.out_func + 0x0000000008009778 0x26 zephyr/libzephyr.a(log_output.c.obj) + .text.cr_out_func + 0x000000000800979e 0x1c zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_msg_process + 0x00000000080097ba 0x62 zephyr/libzephyr.a(log_output.c.obj) + 0x00000000080097ba log_output_msg_process + .text.format_set + 0x000000000800981c 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.log_backend_uart_init + 0x0000000008009828 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.panic 0x0000000008009834 0x32 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.dropped 0x0000000008009866 0xe zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.process 0x0000000008009874 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.z_log_msg_simple_create_1 + 0x0000000008009890 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.get_ep_bm_from_addr + 0x0000000008009898 0x26 zephyr/libzephyr.a(usb_device.c.obj) + .text.arch_early_memset + 0x00000000080098be 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x00000000080098be arch_early_memset + .text.arch_early_memcpy + 0x00000000080098c6 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x00000000080098c6 arch_early_memcpy + .text.z_do_kernel_oops + 0x00000000080098ce 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x00000000080098ce z_do_kernel_oops + .text.z_arm_nmi + 0x00000000080098da 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x00000000080098da z_arm_nmi + .text.z_irq_spurious + 0x00000000080098e6 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x00000000080098e6 z_irq_spurious + .text.z_prep_c + 0x00000000080098f2 0x16 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x00000000080098f2 z_prep_c + .text.arch_coprocessors_disable + 0x0000000008009908 0x6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000008009908 arch_coprocessors_disable + .text.arch_irq_unlock_outlined + 0x000000000800990e 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x000000000800990e arch_irq_unlock_outlined + .text.arch_cpu_idle + 0x000000000800991a 0xe zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000800991a arch_cpu_idle + .text.cbputc 0x0000000008009928 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.picolibc_put + 0x0000000008009934 0xa zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.stm32_gpio_intc_get_pin_irq_line + 0x000000000800993e 0xa zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800993e stm32_gpio_intc_get_pin_irq_line + .text.z_log_msg_simple_create_1.constprop.0 + 0x0000000008009948 0xe zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.z_log_msg_simple_create_0.constprop.0 + 0x0000000008009956 0xc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_set_callback + 0x0000000008009962 0x18 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008009962 usb_dc_ep_set_callback + .text.usb_dc_ep_is_stalled + 0x000000000800997a 0x1e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x000000000800997a usb_dc_ep_is_stalled + .text.usb_dc_ep_read + 0x0000000008009998 0x1e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008009998 usb_dc_ep_read + .text.usb_dc_ep_mps + 0x00000000080099b6 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099b6 usb_dc_ep_mps + .text.HAL_PCD_DataOutStageCallback + 0x00000000080099ca 0x2a zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099ca HAL_PCD_DataOutStageCallback + .text.HAL_PCD_DataInStageCallback + 0x00000000080099f4 0x22 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099f4 HAL_PCD_DataInStageCallback + .text.check_timing_in_range + 0x0000000008009a16 0x5c zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_timing + 0x0000000008009a72 0x24 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008009a72 z_impl_can_set_timing + .text.z_impl_can_set_timing_data + 0x0000000008009a96 0x2e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008009a96 z_impl_can_set_timing_data + .text.can_mcan_read_mram + 0x0000000008009ac4 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_write_mram + 0x0000000008009ad0 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_clear_mram + 0x0000000008009adc 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.z_log_msg_simple_create_0 + 0x0000000008009ae8 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.z_log_msg_simple_create_1.constprop.0 + 0x0000000008009af0 0xe zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.k_mutex_lock.constprop.0.isra.0 + 0x0000000008009afe 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.k_mutex_unlock.isra.0 + 0x0000000008009b06 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_enter_init_mode.constprop.0 + 0x0000000008009b0e 0xa4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_set_timing_data + 0x0000000008009bb2 0x98 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009bb2 can_mcan_set_timing_data + .text.can_mcan_get_capabilities + 0x0000000008009c4a 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009c4a can_mcan_get_capabilities + .text.can_mcan_get_state + 0x0000000008009c52 0x6a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009c52 can_mcan_get_state + .text.can_mcan_get_max_filters + 0x0000000008009cbc 0x10 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009cbc can_mcan_get_max_filters + .text.can_mcan_set_state_change_callback + 0x0000000008009ccc 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009ccc can_mcan_set_state_change_callback + .text.can_mcan_enable_configuration_change + 0x0000000008009cd4 0x3a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009cd4 can_mcan_enable_configuration_change + .text.can_stm32fd_read_mram + 0x0000000008009d0e 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_write_mram + 0x0000000008009d2e 0x1e zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_clear_mram + 0x0000000008009d4c 0x1c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.config_can_0_irq + 0x0000000008009d68 0x24 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.config_regulator_voltage + 0x0000000008009d8c 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008009d8c config_regulator_voltage + .text.gpio_stm32_port_get_raw + 0x0000000008009d8e 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_set_masked_raw + 0x0000000008009d9a 0x12 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_set_bits_raw + 0x0000000008009dac 0xa zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_clear_bits_raw + 0x0000000008009db6 0xa zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_toggle_bits + 0x0000000008009dc0 0xe zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_manage_callback + 0x0000000008009dce 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_configure_raw.isra.0 + 0x0000000008009e26 0xa0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_config + 0x0000000008009ec6 0xee zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_isr + 0x0000000008009fb4 0x32 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_configure + 0x0000000008009fe6 0x2a zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x0000000008009fe6 gpio_stm32_configure + .text.pinctrl_lookup_state + 0x000000000800a010 0x26 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x000000000800a010 pinctrl_lookup_state + .text.reset_stm32_status + 0x000000000800a036 0x20 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_assert + 0x000000000800a056 0x1c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_deassert + 0x000000000800a072 0x1c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_toggle + 0x000000000800a08e 0x16 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.uart_stm32_ll2cfg_databits + 0x000000000800a0a4 0x2c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_err_check + 0x000000000800a0d0 0x5e zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_poll_out + 0x000000000800a12e 0x36 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_poll_in + 0x000000000800a164 0x22 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.HAL_PCD_MspInit + 0x000000000800a186 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a186 HAL_PCD_MspInit + .text.HAL_PCD_Start + 0x000000000800a188 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a188 HAL_PCD_Start + .text.HAL_PCD_Stop + 0x000000000800a1ae 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1ae HAL_PCD_Stop + .text.HAL_PCD_SOFCallback + 0x000000000800a1d4 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1d4 HAL_PCD_SOFCallback + .text.HAL_PCD_SetAddress + 0x000000000800a1d6 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1d6 HAL_PCD_SetAddress + .text.HAL_PCD_EP_Open + 0x000000000800a1f8 0x58 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1f8 HAL_PCD_EP_Open + .text.HAL_PCD_EP_Close + 0x000000000800a250 0x4c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a250 HAL_PCD_EP_Close + .text.HAL_PCD_EP_Receive + 0x000000000800a29c 0x36 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a29c HAL_PCD_EP_Receive + .text.HAL_PCD_EP_GetRxCount + 0x000000000800a2d2 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a2d2 HAL_PCD_EP_GetRxCount + .text.HAL_PCD_EP_Transmit + 0x000000000800a2e2 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a2e2 HAL_PCD_EP_Transmit + .text.HAL_PCD_EP_SetStall + 0x000000000800a312 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a312 HAL_PCD_EP_SetStall + .text.HAL_PCD_EP_ClrStall + 0x000000000800a36e 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a36e HAL_PCD_EP_ClrStall + .text.HAL_PCDEx_PMAConfig + 0x000000000800a3ca 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a3ca HAL_PCDEx_PMAConfig + .text.HAL_PCDEx_ActivateLPM + 0x000000000800a3fa 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a3fa HAL_PCDEx_ActivateLPM + .text.HAL_PCDEx_LPM_Callback + 0x000000000800a420 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a420 HAL_PCDEx_LPM_Callback + .text.USB_DevInit + 0x000000000800a422 0x2a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a422 USB_DevInit + .text.USB_SetDevAddress + 0x000000000800a44c 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a44c USB_SetDevAddress + .text.USB_DevConnect + 0x000000000800a458 0xe modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a458 USB_DevConnect + .text.USB_ReadInterrupts + 0x000000000800a466 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a466 USB_ReadInterrupts + .text.do_device_init + 0x000000000800a46a 0x32 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000800a46a do_device_init + .text.z_impl_device_is_ready + 0x000000000800a49c 0x1a zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000800a49c z_impl_device_is_ready + .text.arch_system_halt + 0x000000000800a4b6 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000800a4b6 arch_system_halt + .text.idle 0x000000000800a4be 0xe zephyr/kernel/libkernel.a(idle.c.obj) + 0x000000000800a4be idle + .text.adjust_owner_prio.isra.0 + 0x000000000800a4cc 0x16 zephyr/kernel/libkernel.a(mutex.c.obj) + .text.z_impl_k_mutex_init + 0x000000000800a4e2 0xe zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000800a4e2 z_impl_k_mutex_init + .text.z_impl_k_sem_init + 0x000000000800a4f0 0x1a zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000800a4f0 z_impl_k_sem_init + .text.flag_test_and_clear + 0x000000000800a50a 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.notify_queue_locked.isra.0 + 0x000000000800a522 0x12 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init + 0x000000000800a534 0x12 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a534 k_work_init + .text.z_work_submit_to_queue + 0x000000000800a546 0x1e zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a546 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x000000000800a564 0x18 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a564 k_work_submit_to_queue + .text.k_is_in_isr + 0x000000000800a57c 0xc zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a57c k_is_in_isr + .text.z_impl_k_thread_name_set + 0x000000000800a588 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a588 z_impl_k_thread_name_set + .text.k_thread_name_get + 0x000000000800a58e 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a58e k_thread_name_get + .text.sys_dlist_remove + 0x000000000800a592 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unpend_thread_no_timeout + 0x000000000800a5a2 0x16 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x000000000800a5b8 0x52 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_ready_thread + 0x000000000800a60a 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a60a z_ready_thread + .text.z_unpend_thread_no_timeout + 0x000000000800a622 0x1e zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a622 z_unpend_thread_no_timeout + .text.z_sched_wake_thread + 0x000000000800a640 0x36 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a640 z_sched_wake_thread + .text.z_thread_timeout + 0x000000000800a676 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a676 z_thread_timeout + .text.z_unpend1_no_timeout + 0x000000000800a682 0x2a zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a682 z_unpend1_no_timeout + .text.z_impl_k_usleep + 0x000000000800a6ac 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a6ac z_impl_k_usleep + .text.z_sched_wake + 0x000000000800a6ce 0x3c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a6ce z_sched_wake + .text.z_abort_timeout + 0x000000000800a70a 0x4c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a70a z_abort_timeout + .text.sys_clock_tick_get_32 + 0x000000000800a756 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a756 sys_clock_tick_get_32 + .text.z_impl_k_uptime_ticks + 0x000000000800a75e 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a75e z_impl_k_uptime_ticks + .text.k_timer_init + 0x000000000800a766 0x18 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000800a766 k_timer_init + .text.z_impl_k_timer_stop + 0x000000000800a77e 0x32 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000800a77e z_impl_k_timer_stop + .text.z_impl_atomic_add + 0x000000000800a7b0 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7b0 z_impl_atomic_add + .text.z_impl_atomic_sub + 0x000000000800a7ca 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7ca z_impl_atomic_sub + .text.z_impl_atomic_set + 0x000000000800a7e4 0x18 zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7e4 z_impl_atomic_set + .text.k_heap_init + 0x000000000800a7fc 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000800a7fc k_heap_init + .text.memcpy 0x000000000800a80c 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + 0x000000000800a80c __aeabi_memcpy + 0x000000000800a80c __aeabi_memcpy4 + 0x000000000800a80c __aeabi_memcpy8 + 0x000000000800a80c memcpy + .text.memset 0x000000000800a81e 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + 0x000000000800a81e memset + .text.strncmp 0x000000000800a82e 0x22 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + 0x000000000800a82e strncmp + .text.strnlen 0x000000000800a850 0x16 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + 0x000000000800a850 strnlen + .text.__ultoa_invert + 0x000000000800a866 0x10e c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .text.__file_str_put + 0x000000000800a974 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + 0x000000000800a974 __file_str_put + *(SORT_BY_ALIGNMENT(.TEXT.*)) + .TEXT.__aeabi_read_tp + 0x000000000800a984 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0x000000000800a984 __aeabi_read_tp + *(SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.glue_7t)) + .glue_7t 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.glue_7)) + .glue_7 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.vfp11_veneer)) + .vfp11_veneer 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.v4_bx)) + .v4_bx 0x000000000800a990 0x0 linker stubs + 0x000000000800a990 . = ALIGN (0x4) + 0x000000000800a990 __text_region_end = . + +.ARM.exidx 0x000000000800a990 0x8 + 0x000000000800a990 __exidx_start = . + *(SORT_BY_ALIGNMENT(.ARM.exidx*) SORT_BY_ALIGNMENT(gnu.linkonce.armexidx.*)) + .ARM.exidx 0x000000000800a990 0x8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + 0x000000000800a998 __exidx_end = . + 0x000000000800a998 __rodata_region_start = . + +initlevel 0x000000000800a998 0x98 + 0x000000000800a998 __init_start = . + 0x000000000800a998 __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_???_*))) + 0x000000000800a998 __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_?_*))) + .z_init_PRE_KERNEL_1_P_1_SUB_00008_ + 0x000000000800a998 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .z_init_PRE_KERNEL_1_P_1_SUB_0_ + 0x000000000800a9a0 0x8 zephyr/libzephyr.a(soc_config.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_??_*))) + .z_init_PRE_KERNEL_1_P_30_SUB_0_ + 0x000000000800a9a8 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_1_P_35_SUB_00049_ + 0x000000000800a9b0 0x8 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00030_ + 0x000000000800a9b8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00031_ + 0x000000000800a9c0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00048_ + 0x000000000800a9c8 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00079_ + 0x000000000800a9d0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00080_ + 0x000000000800a9d8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00081_ + 0x000000000800a9e0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00082_ + 0x000000000800a9e8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_0_ + 0x000000000800a9f0 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00058_ + 0x000000000800a9f8 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_60_SUB_0_ + 0x000000000800aa00 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_???_*))) + 0x000000000800aa08 __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_?_*))) + .z_init_PRE_KERNEL_2_P_0_SUB_0_ + 0x000000000800aa08 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_???_*))) + 0x000000000800aa10 __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_?_*))) + .z_init_POST_KERNEL_P_0_SUB_0_ + 0x000000000800aa10 0x8 zephyr/libzephyr.a(log_core.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_??_*))) + .z_init_POST_KERNEL_P_35_SUB_0_ + 0x000000000800aa18 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x000000000800aa20 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL_P_80_SUB_00043_ + 0x000000000800aa28 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_???_*))) + 0x000000000800aa30 __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_???_*))) + 0x000000000800aa30 __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_???_*))) + 0x000000000800aa30 __init_end = . + +device_area 0x000000000800aa30 0x160 + 0x000000000800aa30 _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + ._device.static.1_1_ + 0x000000000800aa30 0x20 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x000000000800aa30 __device_dts_ord_8 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_35_ + 0x000000000800aa50 0x20 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x000000000800aa50 __device_dts_ord_49 + ._device.static.1_40_ + 0x000000000800aa70 0x20 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x000000000800aa70 __device_dts_ord_48 + ._device.static.1_40_ + 0x000000000800aa90 0xc0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800aa90 __device_dts_ord_80 + 0x000000000800aab0 __device_dts_ord_82 + 0x000000000800aad0 __device_dts_ord_79 + 0x000000000800aaf0 __device_dts_ord_81 + 0x000000000800ab10 __device_dts_ord_31 + 0x000000000800ab30 __device_dts_ord_30 + ._device.static.1_50_ + 0x000000000800ab50 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800ab50 __device_dts_ord_58 + ._device.static.3_80_ + 0x000000000800ab70 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ab70 __device_dts_ord_43 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_???_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_????_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?????_*))) + 0x000000000800ab90 _device_list_end = . + +sw_isr_table 0x000000000800ab90 0xf8 + 0x000000000800ab90 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x000000000800ab90 0xf8 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x000000000800ab90 _sw_isr_table + +initlevel_error + 0x000000000800a998 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_*))) + 0x0000000000000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x000000000800ac88 0x0 + 0x000000000800ac88 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x000000000800ac88 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x000000000800ac88 0x0 + 0x000000000800ac88 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x000000000800ac88 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x000000000800ac88 0x0 + 0x000000000800ac88 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x000000000800ac88 __static_thread_data_list_end = . + +device_deps 0x000000000800ac88 0x0 + 0x000000000800ac88 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x000000000800ac88 __device_deps_end = . + +can_driver_api_area + 0x000000000800ac88 0x5c + 0x000000000800ac88 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + ._can_driver_api.static.can_stm32fd_driver_api_ + 0x000000000800ac88 0x5c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ace4 _can_driver_api_list_end = . + +gpio_driver_api_area + 0x000000000800ace4 0x24 + 0x000000000800ace4 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_stm32_driver_ + 0x000000000800ace4 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800ad08 _gpio_driver_api_list_end = . + +reset_driver_api_area + 0x000000000800ad08 0x10 + 0x000000000800ad08 _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + ._reset_driver_api.static.reset_stm32_driver_api_ + 0x000000000800ad08 0x10 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x000000000800ad18 _reset_driver_api_list_end = . + +shared_irq_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x000000000800ad18 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x000000000800ad18 _crypto_driver_api_list_end = . + +adc_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + 0x000000000800ad18 _adc_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x000000000800ad18 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x000000000800ad18 _bbram_driver_api_list_end = . + +bt_hci_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x000000000800ad18 _bt_hci_driver_api_list_end = . + +cellular_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x000000000800ad18 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x000000000800ad18 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x000000000800ad18 0x1c + 0x000000000800ad18 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.stm32_clock_control_api_ + 0x000000000800ad18 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x000000000800ad34 _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x000000000800ad34 _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x000000000800ad34 _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x000000000800ad34 _counter_driver_api_list_end = . + +crc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _crc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crc_driver_api.static.*))) + 0x000000000800ad34 _crc_driver_api_list_end = . + +dac_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x000000000800ad34 _dac_driver_api_list_end = . + +dai_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x000000000800ad34 _dai_driver_api_list_end = . + +display_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x000000000800ad34 _display_driver_api_list_end = . + +dma_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x000000000800ad34 _dma_driver_api_list_end = . + +edac_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x000000000800ad34 _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x000000000800ad34 _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x000000000800ad34 _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x000000000800ad34 _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x000000000800ad34 _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x000000000800ad34 _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x000000000800ad34 _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x000000000800ad34 _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x000000000800ad34 _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x000000000800ad34 _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x000000000800ad34 _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x000000000800ad34 _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x000000000800ad34 _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x000000000800ad34 _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x000000000800ad34 _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x000000000800ad34 _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x000000000800ad34 _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x000000000800ad34 _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x000000000800ad34 _ipm_driver_api_list_end = . + +led_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x000000000800ad34 _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x000000000800ad34 _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + 0x000000000800ad34 _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x000000000800ad34 _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x000000000800ad34 _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x000000000800ad34 _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x000000000800ad34 _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x000000000800ad34 _mspi_driver_api_list_end = . + +opamp_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _opamp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._opamp_driver_api.static.*))) + 0x000000000800ad34 _opamp_driver_api_list_end = . + +peci_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x000000000800ad34 _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x000000000800ad34 _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x000000000800ad34 _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x000000000800ad34 _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x000000000800ad34 _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x000000000800ad34 _regulator_driver_api_list_end = . + +retained_mem_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x000000000800ad34 _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x000000000800ad34 _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x000000000800ad34 _sdhc_driver_api_list_end = . + +sensor_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + 0x000000000800ad34 _sensor_driver_api_list_end = . + +smbus_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x000000000800ad34 _smbus_driver_api_list_end = . + +spi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + 0x000000000800ad34 _spi_driver_api_list_end = . + +stepper_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x000000000800ad34 _stepper_driver_api_list_end = . + +syscon_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x000000000800ad34 _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x000000000800ad34 _tee_driver_api_list_end = . + +video_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x000000000800ad34 _video_driver_api_list_end = . + +virtio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _virtio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._virtio_driver_api.static.*))) + 0x000000000800ad34 _virtio_driver_api_list_end = . + +w1_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x000000000800ad34 _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x000000000800ad34 _wdt_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x000000000800ad34 _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x000000000800ad34 _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x000000000800ad34 _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x000000000800ad34 _its_driver_api_list_end = . + +vtd_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x000000000800ad34 _vtd_driver_api_list_end = . + +renesas_elc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _renesas_elc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._renesas_elc_driver_api.static.*))) + 0x000000000800ad34 _renesas_elc_driver_api_list_end = . + +tgpio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x000000000800ad34 _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x000000000800ad34 _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x000000000800ad34 _pcie_ep_driver_api_list_end = . + +psi5_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _psi5_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._psi5_driver_api.static.*))) + 0x000000000800ad34 _psi5_driver_api_list_end = . + +sent_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sent_driver_api.static.*))) + 0x000000000800ad34 _sent_driver_api_list_end = . + +svc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x000000000800ad34 _svc_driver_api_list_end = . + +uart_driver_api_area + 0x000000000800ad34 0x1c + 0x000000000800ad34 _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.uart_stm32_driver_api_ + 0x000000000800ad34 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800ad50 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x000000000800ad50 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x000000000800ad50 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x000000000800ad50 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x000000000800ad50 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x000000000800ad50 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x000000000800ad50 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x000000000800ad50 _ethphy_driver_api_list_end = . + +ztest 0x000000000800ad50 0x0 + 0x000000000800ad50 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x000000000800ad50 _ztest_expected_result_entry_list_end = . + 0x000000000800ad50 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x000000000800ad50 _ztest_suite_node_list_end = . + 0x000000000800ad50 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x000000000800ad50 _ztest_unit_test_list_end = . + 0x000000000800ad50 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x000000000800ad50 _ztest_test_rule_list_end = . + +init_array 0x000000000800ad50 0x0 + 0x000000000800ad50 __zephyr_init_array_start = . + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(SORT_BY_ALIGNMENT(.init_array) SORT_BY_ALIGNMENT(.ctors)) + 0x000000000800ad50 __zephyr_init_array_end = . + 0x0000000000000001 ASSERT ((__zephyr_init_array_start == __zephyr_init_array_end), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +bt_l2cap_fixed_chan_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x000000000800ad50 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x000000000800ad50 _bt_gatt_service_static_list_end = . + +log_strings_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x000000000800ad50 _log_strings_list_end = . + +log_stmesp_ptr_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x000000000800ad50 _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x000000000800ad50 _log_stmesp_str_list_end = . + +log_const_area 0x000000000800ad50 0xb0 + 0x000000000800ad50 _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + ._log_const.static.log_const_can_common_ + 0x000000000800ad50 0x8 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x000000000800ad50 log_const_can_common + ._log_const.static.log_const_can_mcan_ + 0x000000000800ad58 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x000000000800ad58 log_const_can_mcan + ._log_const.static.log_const_can_stm32fd_ + 0x000000000800ad60 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ad60 log_const_can_stm32fd + ._log_const.static.log_const_cbprintf_package_ + 0x000000000800ad68 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x000000000800ad68 log_const_cbprintf_package + ._log_const.static.log_const_cdc_handler_ + 0x000000000800ad70 0x8 app/libapp.a(cdc_handler.c.obj) + 0x000000000800ad70 log_const_cdc_handler + ._log_const.static.log_const_exti_stm32_ + 0x000000000800ad78 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x000000000800ad78 log_const_exti_stm32 + ._log_const.static.log_const_getopt_ + 0x000000000800ad80 0x8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + 0x000000000800ad80 log_const_getopt + ._log_const.static.log_const_gs_usb_can_ + 0x000000000800ad88 0x8 app/libapp.a(gs_usb_can.c.obj) + 0x000000000800ad88 log_const_gs_usb_can + ._log_const.static.log_const_log_ + 0x000000000800ad90 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800ad90 log_const_log + ._log_const.static.log_const_log_mgmt_ + 0x000000000800ad98 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x000000000800ad98 log_const_log_mgmt + ._log_const.static.log_const_log_uart_ + 0x000000000800ada0 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ada0 log_const_log_uart + ._log_const.static.log_const_main_ + 0x000000000800ada8 0x8 app/libapp.a(main.c.obj) + 0x000000000800ada8 log_const_main + ._log_const.static.log_const_os_ + 0x000000000800adb0 0x8 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000800adb0 log_const_os + ._log_const.static.log_const_pfet_control_ + 0x000000000800adb8 0x8 app/libapp.a(pfet_control.c.obj) + 0x000000000800adb8 log_const_pfet_control + ._log_const.static.log_const_stm32_ + 0x000000000800adc0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800adc0 log_const_stm32 + ._log_const.static.log_const_stm32_backup_domain_ + 0x000000000800adc8 0x8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + 0x000000000800adc8 log_const_stm32_backup_domain + ._log_const.static.log_const_uart_stm32_ + 0x000000000800add0 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800add0 log_const_uart_stm32 + ._log_const.static.log_const_usb_dc_stm32_ + 0x000000000800add8 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x000000000800add8 log_const_usb_dc_stm32 + ._log_const.static.log_const_usb_descriptor_ + 0x000000000800ade0 0x8 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000000800ade0 log_const_usb_descriptor + ._log_const.static.log_const_usb_device_ + 0x000000000800ade8 0x8 zephyr/libzephyr.a(usb_device.c.obj) + 0x000000000800ade8 log_const_usb_device + ._log_const.static.log_const_usb_gs_usb_ + 0x000000000800adf0 0x8 app/libapp.a(usb_gs_usb_class.c.obj) + 0x000000000800adf0 log_const_usb_gs_usb + ._log_const.static.log_const_usb_transfer_ + 0x000000000800adf8 0x8 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x000000000800adf8 log_const_usb_transfer + 0x000000000800ae00 _log_const_list_end = . + +log_backend_area + 0x000000000800ae00 0x10 + 0x000000000800ae00 _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + ._log_backend.static.log_backend_uart_ + 0x000000000800ae00 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ae10 _log_backend_list_end = . + +log_link_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x000000000800ae10 _log_link_list_end = . + +tracing_backend_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x000000000800ae10 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +intc_table_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _intc_table_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._intc_table.static.*))) + 0x000000000800ae10 _intc_table_list_end = . + +symbol_to_keep 0x000000000800ae10 0x0 + 0x000000000800ae10 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x000000000800ae10 __symbol_to_keep_end = . + +shell_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x000000000800ae10 _shell_list_end = . + +shell_root_cmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x000000000800ae10 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x000000000800ae10 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x000000000800ae10 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x000000000800ae10 _cfb_font_list_end = . + +tdata 0x000000000800ae10 0x0 + *(SORT_BY_ALIGNMENT(.tdata) SORT_BY_ALIGNMENT(.tdata.*) SORT_BY_ALIGNMENT(.gnu.linkonce.td.*)) + +tbss 0x000000000800ae10 0x4 + *(SORT_BY_ALIGNMENT(.tbss) SORT_BY_ALIGNMENT(.tbss.*) SORT_BY_ALIGNMENT(.gnu.linkonce.tb.*) SORT_BY_ALIGNMENT(.tcommon)) + .tbss.z_tls_current + 0x000000000800ae10 0x4 zephyr/libzephyr.a(thread_entry.c.obj) + 0x000000000800ae10 z_tls_current + 0x000000000800ae10 PROVIDE (__tdata_start = LOADADDR (tdata)) + 0x0000000000000001 PROVIDE (__tdata_align = ALIGNOF (tdata)) + 0x0000000000000000 PROVIDE (__tdata_size = (((SIZEOF (tdata) + __tdata_align) - 0x1) & ~ ((__tdata_align - 0x1)))) + [!provide] PROVIDE (__tdata_end = (__tdata_start + __tdata_size)) + 0x0000000000000004 PROVIDE (__tbss_align = ALIGNOF (tbss)) + [!provide] PROVIDE (__tbss_start = ADDR (tbss)) + 0x0000000000000004 PROVIDE (__tbss_size = (((SIZEOF (tbss) + __tbss_align) - 0x1) & ~ ((__tbss_align - 0x1)))) + [!provide] PROVIDE (__tbss_end = (__tbss_start + __tbss_size)) + [!provide] PROVIDE (__tls_start = __tdata_start) + [!provide] PROVIDE (__tls_end = __tbss_end) + [!provide] PROVIDE (__tls_size = (__tbss_end - __tdata_start)) + +rodata 0x000000000800ae10 0x194c + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x000000000800ae10 0xa app/libapp.a(gs_usb_can.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x000000000800ae1a 0x2 + .rodata.pfet2 0x000000000800ae1c 0x8 app/libapp.a(pfet_control.c.obj) + .rodata.pfet1 0x000000000800ae24 0x8 app/libapp.a(pfet_control.c.obj) + .rodata.mpsc_config + 0x000000000800ae2c 0x14 zephyr/libzephyr.a(log_core.c.obj) + .rodata.format_table + 0x000000000800ae40 0x10 zephyr/libzephyr.a(log_core.c.obj) + .rodata.colors + 0x000000000800ae50 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.severity + 0x000000000800ae64 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.lbu_cb_ctx + 0x000000000800ae78 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.lbu_output + 0x000000000800ae80 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.log_backend_uart_api + 0x000000000800ae90 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ae90 log_backend_uart_api + .rodata.__pinctrl_dev_config__device_dts_ord_70 + 0x000000000800aeac 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_70 + 0x000000000800aeb4 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_70 + 0x000000000800aebc 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.pclken + 0x000000000800aecc 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.can_mcan_cfg_0 + 0x000000000800aedc 0x48 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_cfg_0 + 0x000000000800af24 0x1c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_pclken_0 + 0x000000000800af40 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_cbs_0 + 0x000000000800af50 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_43 + 0x000000000800af60 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_states__device_dts_ord_43 + 0x000000000800af68 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_43 + 0x000000000800af70 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_ops + 0x000000000800af80 0x14 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.gpio_stm32_cfg_f + 0x000000000800af94 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_e + 0x000000000800afa8 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_d + 0x000000000800afbc 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_c + 0x000000000800afd0 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_b + 0x000000000800afe4 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_a + 0x000000000800aff8 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_ports + 0x000000000800b00c 0x68 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .rodata.reset_stm32_config + 0x000000000800b074 0x4 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .rodata.uart_stm32_cfg_0 + 0x000000000800b078 0x24 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.pclken_0 + 0x000000000800b09c 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_58 + 0x000000000800b0a4 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_58 + 0x000000000800b0ac 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_58 + 0x000000000800b0b4 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.AHBPrescTable + 0x000000000800b0c4 0x40 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x000000000800b0c4 AHBPrescTable + .rodata.CSWTCH.489 + 0x000000000800b104 0x14 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.levels.0 + 0x000000000800b118 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.cfg.0 0x000000000800b130 0xc zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.CSWTCH.807 + 0x000000000800b13c 0x6 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.main.str1.1 + 0x000000000800b142 0x124 app/libapp.a(main.c.obj) + .rodata.str1.1 + 0x000000000800b266 0x124 app/libapp.a(main.c.obj) + 0x5 (size before relaxing) + .rodata.cdc_handler_init.str1.1 + 0x000000000800b266 0x31 app/libapp.a(cdc_handler.c.obj) + .rodata.cdc_handler_process.str1.1 + 0x000000000800b297 0x8b app/libapp.a(cdc_handler.c.obj) + 0x92 (size before relaxing) + .rodata.str1.1 + 0x000000000800b322 0xc app/libapp.a(cdc_handler.c.obj) + .rodata.pfet_control_init.str1.1 + 0x000000000800b32e 0x79 app/libapp.a(pfet_control.c.obj) + .rodata.pfet_set_state.str1.1 + 0x000000000800b3a7 0x12 app/libapp.a(pfet_control.c.obj) + 0x19 (size before relaxing) + .rodata.str1.1 + 0x000000000800b3b9 0xd app/libapp.a(pfet_control.c.obj) + .rodata.can_rx_callback.str1.1 + 0x000000000800b3c6 0x19 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_can_init.str1.1 + 0x000000000800b3df 0x73 app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.3 + 0x000000000800b452 0x10 app/libapp.a(gs_usb_can.c.obj) + .rodata.str1.1 + 0x000000000800b462 0xb app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_send_frame_to_host.str1.1 + 0x000000000800b46d 0x20 app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.usb_gs_usb_init.str1.1 + 0x000000000800b48d 0x63 app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.__func__.0 + 0x000000000800b4f0 0x1a app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.str1.1 + 0x000000000800b50a 0xb app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.cbprintf_package_convert.str1.1 + 0x000000000800b515 0xa3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x000000000800b5b8 0x11 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x000000000800b5c9 0x14 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .rodata.enable_logger.str1.1 + 0x000000000800b5dd 0x8 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x000000000800b5e5 0x4 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x000000000800b5e9 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.z_impl_z_log_msg_static_create.str1.1 + 0x000000000800b5f2 0x3f zephyr/libzephyr.a(log_msg.c.obj) + .rodata.z_log_msg_runtime_vcreate.str1.1 + 0x000000000800b631 0x38 zephyr/libzephyr.a(log_msg.c.obj) + .rodata.newline_print.str1.1 + 0x000000000800b669 0x38 zephyr/libzephyr.a(log_output.c.obj) + 0x5 (size before relaxing) + .rodata.log_output_process.str1.1 + 0x000000000800b669 0x4c zephyr/libzephyr.a(log_output.c.obj) + 0x51 (size before relaxing) + .rodata.log_output_dropped_process.str1.1 + 0x000000000800b6b5 0x4c zephyr/libzephyr.a(log_output.c.obj) + 0x3 (size before relaxing) + .rodata.postfix.0 + 0x000000000800b6b5 0x1c zephyr/libzephyr.a(log_output.c.obj) + .rodata.prefix.1 + 0x000000000800b6d1 0xc zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x000000000800b6dd 0x20 zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x000000000800b6fd 0x1a zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.usb_halt_endpoint_req.str1.1 + 0x000000000800b717 0x28 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.get_ep_bm_from_addr.part.0.str1.1 + 0x000000000800b73f 0x1b zephyr/libzephyr.a(usb_device.c.obj) + .rodata.disable_endpoint.str1.1 + 0x000000000800b75a 0x43 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.set_endpoint.str1.1 + 0x000000000800b79d 0x88 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_write.str1.1 + 0x000000000800b825 0x27 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_handle_control_transfer.str1.1 + 0x000000000800b84c 0x19 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_enable.str1.1 + 0x000000000800b865 0x77 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.str1.1 + 0x000000000800b8dc 0xb zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_update_sn_string_descriptor.str1.1 + 0x000000000800b8e7 0x11 zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.usb_get_device_descriptor.str1.1 + 0x000000000800b8f8 0x105 zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.str1.1 + 0x000000000800b9fd 0xf zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.usb_transfer_work.str1.1 + 0x000000000800ba0c 0x1d zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.str1.1 + 0x000000000800ba29 0xd zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.z_arm_fatal_error.str1.1 + 0x000000000800ba36 0xae zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .rodata.z_arm_fault.str1.1 + 0x000000000800bae4 0x9f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .rodata.str1.1 + 0x000000000800bb83 0x7 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .rodata.line_range_2.0 + 0x000000000800bb8a 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.line_range_1.1 + 0x000000000800bb8c 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.line_range_0.2 + 0x000000000800bb8e 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.stm32_exti_init.str1.1 + 0x000000000800bb90 0x1f zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.stm32_exti_disable_falling_trig.part.0.str1.1 + 0x000000000800bbaf 0x17 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.str1.1 + 0x000000000800bbc6 0x29 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.usb_dc_ep_read_continue.part.0.str1.1 + 0x000000000800bbef 0x19 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_get_read_count.part.0.str1.1 + 0x000000000800bc08 0x12 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_attach.str1.1 + 0x000000000800bc1a 0xf7 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_set_address.str1.1 + 0x000000000800bd11 0x26 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_start_read.str1.1 + 0x000000000800bd37 0x26 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_check_cap.str1.1 + 0x000000000800bd5d 0x43 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_set_stall.str1.1 + 0x000000000800bda0 0x27 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_clear_stall.str1.1 + 0x000000000800bdc7 0x27 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_enable.str1.1 + 0x000000000800bdee 0x23 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_disable.str1.1 + 0x000000000800be11 0x24 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_write.str1.1 + 0x000000000800be35 0x45 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_read_wait.str1.1 + 0x000000000800be7a 0x45 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.str1.1 + 0x000000000800bebf 0xd zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.z_impl_can_send.str1.1 + 0x000000000800becc 0x3f zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_add_rx_filter.str1.1 + 0x000000000800bf0b 0x42 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.str1.1 + 0x000000000800bf4d 0xb zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_mcan_read_reg.str1.1 + 0x000000000800bf58 0x23 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_write_reg.str1.1 + 0x000000000800bf7b 0x24 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_get_message.str1.1 + 0x000000000800bf9f 0x5d zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_start.str1.1 + 0x000000000800bffc 0x4d zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_set_mode.str1.1 + 0x000000000800c049 0x19 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_line_1_isr.str1.1 + 0x000000000800c062 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_line_0_isr.str1.1 + 0x000000000800c08e 0x71 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_send.str1.1 + 0x000000000800c0ff 0x114 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_add_rx_filter_std.str1.1 + 0x000000000800c213 0x4c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_add_rx_filter.str1.1 + 0x000000000800c25f 0x44 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_remove_rx_filter.str1.1 + 0x000000000800c2a3 0x73 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_stop.str1.1 + 0x000000000800c316 0x45 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_configure_mram.str1.1 + 0x000000000800c35b 0x1a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_init.str1.1 + 0x000000000800c375 0xaf zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.dlc_table.0 + 0x000000000800c424 0x10 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.str1.1 + 0x000000000800c434 0x9 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_stm32fd_init.str1.1 + 0x000000000800c43d 0x69 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_get_core_clock.str1.1 + 0x000000000800c4a6 0x58 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.str1.1 + 0x000000000800c4fe 0x19 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.str1.1 + 0x000000000800c517 0xd zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .rodata.str1.1 + 0x000000000800c524 0x54 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x5a (size before relaxing) + .rodata.str1.1 + 0x000000000800c578 0x11 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .rodata.uart_stm32_set_baudrate.str1.1 + 0x000000000800c589 0x45 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.uart_stm32_init.str1.1 + 0x000000000800c5ce 0x5d zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x7c (size before relaxing) + .rodata.str1.1 + 0x000000000800c62b 0x1b zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.k_sys_fatal_error_handler.str1.1 + 0x000000000800c646 0xf zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_fatal_error.str1.1 + 0x000000000800c655 0x77 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.str1.1 + 0x000000000800c6cc 0x4a zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_cstart.str1.1 + 0x000000000800c716 0x5 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x000000000800c716 0x3 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x000000000800c719 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.boot_banner.str1.1 + 0x000000000800c722 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x000000000800c74a 0xf c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + 0x000000000800c75c . = ALIGN (0x4) + *fill* 0x000000000800c759 0x3 + [!provide] PROVIDE (__eh_frame_start = 0x0) + [!provide] PROVIDE (__eh_frame_end = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_start = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_end = 0x0) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + 0x000000000800c75c __rodata_region_end = . + 0x000000000800c75c . = ALIGN (_region_min_align) + 0x000000000800c75c __rom_region_end = ((__rom_region_start + .) - ADDR (rom_start)) + 0x000000000000c75c __rom_region_size = (__rom_region_end - __rom_region_start) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.got.plt)) + *(SORT_BY_ALIGNMENT(.igot.plt)) + *(SORT_BY_ALIGNMENT(.got)) + *(SORT_BY_ALIGNMENT(.igot)) + 0x0000000020000000 . = 0x20000000 + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 _image_ram_start = . + +.ramfunc 0x0000000020000000 0x0 load address 0x000000000800c75c + 0x0000000020000000 __ramfunc_region_start = . + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 __ramfunc_start = . + *(SORT_BY_ALIGNMENT(.ramfunc)) + *(SORT_BY_ALIGNMENT(.ramfunc.*)) + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 __ramfunc_end = . + 0x0000000000000000 __ramfunc_size = (__ramfunc_end - __ramfunc_start) + 0x000000000800c75c __ramfunc_load_start = LOADADDR (.ramfunc) + +datas 0x0000000020000000 0x50 load address 0x000000000800c75c + 0x0000000020000000 __data_region_start = . + 0x0000000020000000 __data_start = . + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data._char_out + 0x0000000020000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.timestamp_func + 0x0000000020000004 0x4 zephyr/libzephyr.a(log_core.c.obj) + .data.backend_cb_log_backend_uart + 0x0000000020000008 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data.__stdout + 0x0000000020000010 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.uart_stm32_data_0 + 0x0000000020000020 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data.uart_cfg_0 + 0x0000000020000028 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data.SystemCoreClock + 0x0000000020000030 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x0000000020000030 SystemCoreClock + .data.slice_ticks + 0x0000000020000034 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data.timeout_list + 0x0000000020000038 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.exti_irq_table + 0x0000000020000040 0x10 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + *(SORT_BY_ALIGNMENT(.kernel.*)) + 0x0000000020000050 __data_end = . + 0x0000000000000050 __data_size = (__data_end - __data_start) + 0x000000000800c75c __data_load_start = LOADADDR (datas) + 0x000000000800c75c __data_region_load_start = LOADADDR (datas) + +device_states 0x0000000020000050 0x18 load address 0x000000000800c7ac + 0x0000000020000050 . = ALIGN (0x4) + 0x0000000020000050 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x0000000020000050 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .z_devstate 0x0000000020000052 0x2 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .z_devstate 0x0000000020000054 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .z_devstate 0x0000000020000056 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_devstate 0x0000000020000062 0x2 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .z_devstate 0x0000000020000064 0x2 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x0000000020000066 __device_states_end = . + 0x0000000020000068 . = ALIGN (0x4) + *fill* 0x0000000020000066 0x2 + +log_mpsc_pbuf_area + 0x0000000020000068 0x38 load address 0x000000000800c7c4 + 0x0000000020000068 _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + ._log_mpsc_pbuf.static.log_buffer_ + 0x0000000020000068 0x38 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000a0 _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x00000000200000a0 0x4 load address 0x000000000800c7fc + 0x00000000200000a0 _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + ._log_msg_ptr.static.log_msg_ptr_ + 0x00000000200000a0 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000a4 _log_msg_ptr_list_end = . + +log_dynamic_area + 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x00000000200000a4 _log_dynamic_list_end = . + +k_timer_area 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + 0x00000000200000a4 _k_timer_list_end = . + +k_mem_slab_area + 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + 0x00000000200000a4 _k_mem_slab_list_end = . + +k_heap_area 0x00000000200000a4 0x14 load address 0x000000000800c800 + 0x00000000200000a4 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + ._k_heap.static._system_heap_ + 0x00000000200000a4 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x00000000200000a4 _system_heap + 0x00000000200000b8 _k_heap_list_end = . + +k_mutex_area 0x00000000200000b8 0x14 load address 0x000000000800c814 + 0x00000000200000b8 _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.usb_enable_lock_ + 0x00000000200000b8 0x14 zephyr/libzephyr.a(usb_device.c.obj) + 0x00000000200000b8 usb_enable_lock + 0x00000000200000cc _k_mutex_list_end = . + +k_stack_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x00000000200000cc _k_stack_list_end = . + +k_msgq_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x00000000200000cc _k_msgq_list_end = . + +k_mbox_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x00000000200000cc _k_mbox_list_end = . + +k_pipe_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x00000000200000cc _k_pipe_list_end = . + +k_sem_area 0x00000000200000cc 0x10 load address 0x000000000800c828 + 0x00000000200000cc _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.log_process_thread_sem_ + 0x00000000200000cc 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000cc log_process_thread_sem + 0x00000000200000dc _k_sem_list_end = . + +k_event_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x00000000200000dc _k_event_list_end = . + +k_queue_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x00000000200000dc _k_queue_list_end = . + +k_fifo_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + 0x00000000200000dc _k_fifo_list_end = . + +k_lifo_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x00000000200000dc _k_lifo_list_end = . + +k_condvar_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x00000000200000dc _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x00000000200000dc _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x00000000200000dc _net_buf_pool_list_end = . + +usb_descriptor 0x00000000200000dc 0x6f load address 0x000000000800c838 + 0x00000000200000dc __usb_descriptor_start = . + *(SORT_BY_ALIGNMENT(.usb.descriptor)) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.usb.descriptor*))) + .usb.descriptor_primary.0 + 0x00000000200000dc 0x1b zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.4 + 0x00000000200000f7 0x52 zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.6 + 0x0000000020000149 0x2 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000002000014b __usb_descriptor_end = . + +usb_cfg_data_area + 0x000000002000014b 0x0 load address 0x000000000800c8a7 + 0x000000002000014b _usb_cfg_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usb_cfg_data.static.*))) + 0x000000002000014b _usb_cfg_data_list_end = . + 0x000000002000014b __data_region_end = . + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x0000000000000000 0x20 + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x0000000000000000 0x20 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x21 (size before relaxing) + .comment 0x0000000000000020 0x21 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .comment 0x0000000000000020 0x21 app/libapp.a(main.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(cdc_handler.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(pfet_control.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(gs_usb_can.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(usb_gs_usb_class.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(last_section_id.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(soc_config.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(soc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_core.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_mgmt.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_msg.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_output.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_backend_uart.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_descriptor.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_transfer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libarch__common.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libarch__common.a(xip.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(banner.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x0000000000000000 0x1e30 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_aranges + 0x0000000000000020 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_aranges + 0x0000000000000040 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_aranges + 0x0000000000000060 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_aranges + 0x0000000000000088 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_aranges + 0x00000000000000a8 0x18 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_aranges + 0x00000000000000c0 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_aranges + 0x00000000000000e0 0x20 app/libapp.a(main.c.obj) + .debug_aranges + 0x0000000000000100 0x28 app/libapp.a(cdc_handler.c.obj) + .debug_aranges + 0x0000000000000128 0x40 app/libapp.a(pfet_control.c.obj) + .debug_aranges + 0x0000000000000168 0x40 app/libapp.a(gs_usb_can.c.obj) + .debug_aranges + 0x00000000000001a8 0x28 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_aranges + 0x00000000000001d0 0xa0 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x0000000000000270 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x00000000000002b0 0x48 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x00000000000002f8 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x0000000000000318 0xb0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_aranges + 0x00000000000003c8 0x18 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_aranges + 0x00000000000003e0 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x0000000000000400 0x20 zephyr/libzephyr.a(soc_config.c.obj) + .debug_aranges + 0x0000000000000420 0x28 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_aranges + 0x0000000000000448 0x20 zephyr/libzephyr.a(soc.c.obj) + .debug_aranges + 0x0000000000000468 0x178 zephyr/libzephyr.a(log_core.c.obj) + .debug_aranges + 0x00000000000005e0 0xb8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_aranges + 0x0000000000000698 0x60 zephyr/libzephyr.a(log_msg.c.obj) + .debug_aranges + 0x00000000000006f8 0x70 zephyr/libzephyr.a(log_output.c.obj) + .debug_aranges + 0x0000000000000768 0x48 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_aranges + 0x00000000000007b0 0xf8 zephyr/libzephyr.a(usb_device.c.obj) + .debug_aranges + 0x00000000000008a8 0x48 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_aranges + 0x00000000000008f0 0x68 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_aranges + 0x0000000000000958 0x30 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_aranges + 0x0000000000000988 0x20 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_aranges + 0x00000000000009a8 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_aranges + 0x00000000000009d8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_aranges + 0x00000000000009f8 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_aranges + 0x0000000000000a18 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_aranges + 0x0000000000000a38 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_aranges + 0x0000000000000a60 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_aranges + 0x0000000000000a80 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_aranges + 0x0000000000000ac0 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_aranges + 0x0000000000000ae8 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_aranges + 0x0000000000000b28 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_aranges + 0x0000000000000b58 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_aranges + 0x0000000000000b78 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_aranges + 0x0000000000000b98 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x0000000000000bc0 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x0000000000000bf8 0x60 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x0000000000000c58 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_aranges + 0x0000000000000c80 0x68 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_aranges + 0x0000000000000ce8 0x90 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_aranges + 0x0000000000000d78 0x148 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_aranges + 0x0000000000000ec0 0x88 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_aranges + 0x0000000000000f48 0x108 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_aranges + 0x0000000000001050 0x60 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_aranges + 0x00000000000010b0 0x60 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_aranges + 0x0000000000001110 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_aranges + 0x0000000000001140 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x0000000000001170 0x78 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_aranges + 0x00000000000011e8 0x38 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_aranges + 0x0000000000001220 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x0000000000001240 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_aranges + 0x0000000000001260 0x38 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_aranges + 0x0000000000001298 0x60 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_aranges + 0x00000000000012f8 0x60 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_aranges + 0x0000000000001358 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_aranges + 0x0000000000001380 0x98 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_aranges + 0x0000000000001418 0x130 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_aranges + 0x0000000000001548 0x58 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_aranges + 0x00000000000015a0 0x118 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_aranges + 0x00000000000016b8 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_aranges + 0x0000000000001708 0x50 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x0000000000001758 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x0000000000001790 0x40 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00000000000017d0 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x00000000000017f8 0x38 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x0000000000001830 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x0000000000001868 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_aranges + 0x0000000000001888 0x120 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x00000000000019a8 0x90 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x0000000000001a38 0x178 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x0000000000001bb0 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x0000000000001bf0 0x98 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x0000000000001c88 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x0000000000001cd0 0x78 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_aranges + 0x0000000000001d48 0x68 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x0000000000001db0 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_aranges + 0x0000000000001dd0 0x60 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x0000000000000000 0x10b4d5 + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x0000000000000000 0x1e9 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_info 0x00000000000001e9 0x122 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_info 0x000000000000030b 0x48b4 app/libapp.a(main.c.obj) + .debug_info 0x0000000000004bbf 0x18ab app/libapp.a(cdc_handler.c.obj) + .debug_info 0x000000000000646a 0x3e29 app/libapp.a(pfet_control.c.obj) + .debug_info 0x000000000000a293 0x8689 app/libapp.a(gs_usb_can.c.obj) + .debug_info 0x000000000001291c 0x24c1 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_info 0x0000000000014ddd 0x335e zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x000000000001813b 0x2312 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x000000000001a44d 0x4ba zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x000000000001a907 0x72e zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x000000000001b035 0x24f1 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_info 0x000000000001d526 0x95 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_info 0x000000000001d5bb 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x000000000001d5f3 0x50a zephyr/libzephyr.a(soc_config.c.obj) + .debug_info 0x000000000001dafd 0x1178 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_info 0x000000000001ec75 0x5ba zephyr/libzephyr.a(soc.c.obj) + .debug_info 0x000000000001f22f 0x46bd zephyr/libzephyr.a(log_core.c.obj) + .debug_info 0x00000000000238ec 0x2296 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_info 0x0000000000025b82 0x2810 zephyr/libzephyr.a(log_msg.c.obj) + .debug_info 0x0000000000028392 0x2166 zephyr/libzephyr.a(log_output.c.obj) + .debug_info 0x000000000002a4f8 0x1ace zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_info 0x000000000002bfc6 0x20e9e zephyr/libzephyr.a(usb_device.c.obj) + .debug_info 0x000000000004ce64 0x107d5 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_info 0x000000000005d639 0x73d9 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_info 0x0000000000064a12 0x201 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_info 0x0000000000064c13 0x173 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_info 0x0000000000064d86 0x3d87 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_info 0x0000000000068b0d 0xfc zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_info 0x0000000000068c09 0x23 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_info 0x0000000000068c2c 0x712 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_info 0x000000000006933e 0x67c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_info 0x00000000000699ba 0x313c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_info 0x000000000006caf6 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_info 0x000000000006cb19 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_info 0x000000000006cb3c 0x721 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_info 0x000000000006d25d 0x22 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_info 0x000000000006d27f 0x75f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_info 0x000000000006d9de 0x2fb zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_info 0x000000000006dcd9 0x9fc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_info 0x000000000006e6d5 0x2d8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_info 0x000000000006e9ad 0x410 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_info 0x000000000006edbd 0x1f1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_info 0x000000000006efae 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_info 0x000000000006efd1 0x342 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x000000000006f313 0x415 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x000000000006f728 0xdf6 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x000000000007051e 0x187c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_info 0x0000000000071d9a 0x1168 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_info 0x0000000000072f02 0xae97 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_info 0x000000000007dd99 0x2466c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_info 0x00000000000a2405 0x5ac7 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_info 0x00000000000a7ecc 0x21432 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_info 0x00000000000c92fe 0x5699 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_info 0x00000000000ce997 0x14c6 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_info 0x00000000000cfe5d 0x464 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_info 0x00000000000d02c1 0x8ac zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x00000000000d0b6d 0x2aad zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_info 0x00000000000d361a 0x65a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_info 0x00000000000d3c74 0x1b2 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x00000000000d3e26 0x5ae zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_info 0x00000000000d43d4 0x69a zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_info 0x00000000000d4a6e 0x7431 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_info 0x00000000000dbe9f 0xfd5 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_info 0x00000000000dce74 0x37d modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_info 0x00000000000dd1f1 0xeae modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_info 0x00000000000de09f 0x1c32 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_info 0x00000000000dfcd1 0x947 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_info 0x00000000000e0618 0x1f14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_info 0x00000000000e252c 0xd56 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_info 0x00000000000e3282 0x49c zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x00000000000e371e 0x325c zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x00000000000e697a 0x18d1 zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x00000000000e824b 0x2d4 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x00000000000e851f 0x7f39 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x00000000000f0458 0x135a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x00000000000f17b2 0x90d zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_info 0x00000000000f20bf 0x5c04 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x00000000000f7cc3 0x2a82 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x00000000000fa745 0x9951 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0000000000104096 0xe98 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x0000000000104f2e 0x19ba zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x00000000001068e8 0x165e zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x0000000000107f46 0x1147 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_info 0x000000000010908d 0x10c2 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x000000000010a14f 0x10b zephyr/kernel/libkernel.a(banner.c.obj) + .debug_info 0x000000000010a25a 0x127b zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_abbrev 0x0000000000000000 0x13414 + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x0000000000000000 0x13f zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_abbrev 0x000000000000013f 0x9b zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_abbrev 0x00000000000001da 0x457 app/libapp.a(main.c.obj) + .debug_abbrev 0x0000000000000631 0x42a app/libapp.a(cdc_handler.c.obj) + .debug_abbrev 0x0000000000000a5b 0x4c9 app/libapp.a(pfet_control.c.obj) + .debug_abbrev 0x0000000000000f24 0x593 app/libapp.a(gs_usb_can.c.obj) + .debug_abbrev 0x00000000000014b7 0x32f app/libapp.a(usb_gs_usb_class.c.obj) + .debug_abbrev 0x00000000000017e6 0x454 zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000000000001c3a 0x572 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x00000000000021ac 0x295 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x0000000000002441 0x2d4 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x0000000000002715 0x5f8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_abbrev 0x0000000000002d0d 0x46 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_abbrev 0x0000000000002d53 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x0000000000002d81 0x221 zephyr/libzephyr.a(soc_config.c.obj) + .debug_abbrev 0x0000000000002fa2 0x419 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_abbrev 0x00000000000033bb 0x1e7 zephyr/libzephyr.a(soc.c.obj) + .debug_abbrev 0x00000000000035a2 0x910 zephyr/libzephyr.a(log_core.c.obj) + .debug_abbrev 0x0000000000003eb2 0x63c zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_abbrev 0x00000000000044ee 0x5c7 zephyr/libzephyr.a(log_msg.c.obj) + .debug_abbrev 0x0000000000004ab5 0x5c6 zephyr/libzephyr.a(log_output.c.obj) + .debug_abbrev 0x000000000000507b 0x461 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_abbrev 0x00000000000054dc 0x753 zephyr/libzephyr.a(usb_device.c.obj) + .debug_abbrev 0x0000000000005c2f 0x5bd zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_abbrev 0x00000000000061ec 0x694 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_abbrev 0x0000000000006880 0xe5 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_abbrev 0x0000000000006965 0xe4 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_abbrev 0x0000000000006a49 0x3dc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_abbrev 0x0000000000006e25 0x9b zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_abbrev 0x0000000000006ec0 0x14 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_abbrev 0x0000000000006ed4 0x2a6 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_abbrev 0x000000000000717a 0x190 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_abbrev 0x000000000000730a 0x4ce zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_abbrev 0x00000000000077d8 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_abbrev 0x00000000000077ec 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_abbrev 0x0000000000007800 0x235 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_abbrev 0x0000000000007a35 0x12 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_abbrev 0x0000000000007a47 0x280 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_abbrev 0x0000000000007cc7 0x186 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_abbrev 0x0000000000007e4d 0x356 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_abbrev 0x00000000000081a3 0x16d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_abbrev 0x0000000000008310 0x170 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_abbrev 0x0000000000008480 0x154 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_abbrev 0x00000000000085d4 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_abbrev 0x00000000000085e8 0x1b0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x0000000000008798 0x219 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x00000000000089b1 0x42d zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x0000000000008dde 0x287 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_abbrev 0x0000000000009065 0x4e1 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_abbrev 0x0000000000009546 0x5da zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_abbrev 0x0000000000009b20 0x691 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_abbrev 0x000000000000a1b1 0x641 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_abbrev 0x000000000000a7f2 0x7d4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_abbrev 0x000000000000afc6 0x5d8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_abbrev 0x000000000000b59e 0x519 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_abbrev 0x000000000000bab7 0x1b5 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_abbrev 0x000000000000bc6c 0x397 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x000000000000c003 0x54b zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_abbrev 0x000000000000c54e 0x1df zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_abbrev 0x000000000000c72d 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x000000000000c7fd 0x2a9 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_abbrev 0x000000000000caa6 0x294 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_abbrev 0x000000000000cd3a 0x66f zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_abbrev 0x000000000000d3a9 0x4d4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_abbrev 0x000000000000d87d 0x142 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_abbrev 0x000000000000d9bf 0x357 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_abbrev 0x000000000000dd16 0x401 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_abbrev 0x000000000000e117 0x2b3 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_abbrev 0x000000000000e3ca 0x378 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_abbrev 0x000000000000e742 0x31c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_abbrev 0x000000000000ea5e 0x22c zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x000000000000ec8a 0x4c7 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x000000000000f151 0x6c7 zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x000000000000f818 0x1c6 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x000000000000f9de 0x4cf zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x000000000000fead 0x450 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x00000000000102fd 0x255 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_abbrev 0x0000000000010552 0x6b2 zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x0000000000010c04 0x5c3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x00000000000111c7 0x701 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x00000000000118c8 0x43d zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0000000000011d05 0x51d zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0000000000012222 0x4ed zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x000000000001270f 0x2dc zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_abbrev 0x00000000000129eb 0x49f zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0000000000012e8a 0xbe zephyr/kernel/libkernel.a(banner.c.obj) + .debug_abbrev 0x0000000000012f48 0x4cc zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_line 0x0000000000000000 0x3c170 + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x0000000000000000 0x1f6 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_line 0x00000000000001f6 0x25e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_line 0x0000000000000454 0xb2c app/libapp.a(main.c.obj) + .debug_line 0x0000000000000f80 0x7a3 app/libapp.a(cdc_handler.c.obj) + .debug_line 0x0000000000001723 0x1106 app/libapp.a(pfet_control.c.obj) + .debug_line 0x0000000000002829 0xff9 app/libapp.a(gs_usb_can.c.obj) + .debug_line 0x0000000000003822 0x721 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_line 0x0000000000003f43 0x130b zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x000000000000524e 0x17b9 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000000000006a07 0x421 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000000000006e28 0x48d zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x00000000000072b5 0x1b07 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_line 0x0000000000008dbc 0x114 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_line 0x0000000000008ed0 0x24e zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x000000000000911e 0x309 zephyr/libzephyr.a(soc_config.c.obj) + .debug_line 0x0000000000009427 0x7f2 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_line 0x0000000000009c19 0x32a zephyr/libzephyr.a(soc.c.obj) + .debug_line 0x0000000000009f43 0x198f zephyr/libzephyr.a(log_core.c.obj) + .debug_line 0x000000000000b8d2 0xd38 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_line 0x000000000000c60a 0xed2 zephyr/libzephyr.a(log_msg.c.obj) + .debug_line 0x000000000000d4dc 0xcfe zephyr/libzephyr.a(log_output.c.obj) + .debug_line 0x000000000000e1da 0x744 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_line 0x000000000000e91e 0x20d0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_line 0x00000000000109ee 0xcfb zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_line 0x00000000000116e9 0x104f zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_line 0x0000000000012738 0x1d3 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_line 0x000000000001290b 0x2ab zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_line 0x0000000000012bb6 0x7bd zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_line 0x0000000000013373 0x1e3 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_line 0x0000000000013556 0x73 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_line 0x00000000000135c9 0x4a9 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_line 0x0000000000013a72 0x3ca zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_line 0x0000000000013e3c 0x88a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_line 0x00000000000146c6 0x80 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_line 0x0000000000014746 0x8e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_line 0x00000000000147d4 0x4fd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_line 0x0000000000014cd1 0xf1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_line 0x0000000000014dc2 0x48c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_line 0x000000000001524e 0x3b3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_line 0x0000000000015601 0x664 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_line 0x0000000000015c65 0x32d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_line 0x0000000000015f92 0x2ff zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_line 0x0000000000016291 0x2e8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_line 0x0000000000016579 0x81 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_line 0x00000000000165fa 0x2e1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x00000000000168db 0x378 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0000000000016c53 0x7dc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x000000000001742f 0x5b7 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_line 0x00000000000179e6 0x8ca zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_line 0x00000000000182b0 0x1162 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_line 0x0000000000019412 0x225b zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_line 0x000000000001b66d 0x1f58 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_line 0x000000000001d5c5 0x3185 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_line 0x000000000002074a 0xf63 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_line 0x00000000000216ad 0xc7f zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_line 0x000000000002232c 0x330 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_line 0x000000000002265c 0x4eb zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x0000000000022b47 0x1030 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_line 0x0000000000023b77 0x4fa zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_line 0x0000000000024071 0x1f6 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0000000000024267 0x496 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_line 0x00000000000246fd 0x3fb zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_line 0x0000000000024af8 0x1f68 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_line 0x0000000000026a60 0xbc7 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_line 0x0000000000027627 0x2a9 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_line 0x00000000000278d0 0xfad modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_line 0x000000000002887d 0x1487 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_line 0x0000000000029d04 0x51a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_line 0x000000000002a21e 0x1e95 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_line 0x000000000002c0b3 0x8e2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_line 0x000000000002c995 0x521 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x000000000002ceb6 0xbb1 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x000000000002da67 0xbe6 zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x000000000002e64d 0x3f7 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x000000000002ea44 0xc65 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x000000000002f6a9 0xb65 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x000000000003020e 0x3de zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_line 0x00000000000305ec 0x2b6c zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0000000000033158 0xc04 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0000000000033d5c 0x3d4c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x0000000000037aa8 0x7c2 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x000000000003826a 0x114f zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x00000000000393b9 0xd80 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000000000003a139 0xc33 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_line 0x000000000003ad6c 0x870 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x000000000003b5dc 0x1da zephyr/kernel/libkernel.a(banner.c.obj) + .debug_line 0x000000000003b7b6 0x9ba zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_frame 0x0000000000000000 0x4b6c + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_frame 0x0000000000000020 0x2c app/libapp.a(main.c.obj) + .debug_frame 0x000000000000004c 0x4c app/libapp.a(cdc_handler.c.obj) + .debug_frame 0x0000000000000098 0x98 app/libapp.a(pfet_control.c.obj) + .debug_frame 0x0000000000000130 0xac app/libapp.a(gs_usb_can.c.obj) + .debug_frame 0x00000000000001dc 0x48 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_frame 0x0000000000000224 0x204 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x0000000000000428 0xb0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x00000000000004d8 0x94 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x000000000000056c 0x34 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x00000000000005a0 0x228 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_frame 0x00000000000007c8 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x00000000000007e8 0x24 zephyr/libzephyr.a(soc_config.c.obj) + .debug_frame 0x000000000000080c 0x40 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_frame 0x000000000000084c 0x24 zephyr/libzephyr.a(soc.c.obj) + .debug_frame 0x0000000000000870 0x448 zephyr/libzephyr.a(log_core.c.obj) + .debug_frame 0x0000000000000cb8 0x1a4 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_frame 0x0000000000000e5c 0x114 zephyr/libzephyr.a(log_msg.c.obj) + .debug_frame 0x0000000000000f70 0x148 zephyr/libzephyr.a(log_output.c.obj) + .debug_frame 0x00000000000010b8 0xa4 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_frame 0x000000000000115c 0x310 zephyr/libzephyr.a(usb_device.c.obj) + .debug_frame 0x000000000000146c 0xa4 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_frame 0x0000000000001510 0x128 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_frame 0x0000000000001638 0x58 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_frame 0x0000000000001690 0x28 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_frame 0x00000000000016b8 0x68 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_frame 0x0000000000001720 0x28 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_frame 0x0000000000001748 0x34 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_frame 0x000000000000177c 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_frame 0x000000000000179c 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_frame 0x00000000000017e0 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_frame 0x0000000000001808 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_frame 0x000000000000187c 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_frame 0x00000000000018b4 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_frame 0x0000000000001928 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_frame 0x0000000000001968 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_frame 0x0000000000001998 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_frame 0x00000000000019c0 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x0000000000001a08 0x60 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x0000000000001a68 0xfc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x0000000000001b64 0x4c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_frame 0x0000000000001bb0 0xf4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_frame 0x0000000000001ca4 0x184 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_frame 0x0000000000001e28 0x3f4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_frame 0x000000000000221c 0x1b4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_frame 0x00000000000023d0 0x37c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_frame 0x000000000000274c 0xe0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_frame 0x000000000000282c 0xe0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_frame 0x000000000000290c 0x44 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_frame 0x0000000000002950 0x54 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x00000000000029a4 0x138 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_frame 0x0000000000002adc 0x68 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_frame 0x0000000000002b44 0x2c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x0000000000002b70 0x34 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_frame 0x0000000000002ba4 0x5c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_frame 0x0000000000002c00 0x10c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_frame 0x0000000000002d0c 0xec zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_frame 0x0000000000002df8 0x38 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_frame 0x0000000000002e30 0x178 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_frame 0x0000000000002fa8 0x31c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_frame 0x00000000000032c4 0xb4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_frame 0x0000000000003378 0x2d4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_frame 0x000000000000364c 0xc0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_frame 0x000000000000370c 0xa4 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x00000000000037b0 0x74 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x0000000000003824 0xb4 zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00000000000038d8 0x38 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x0000000000003910 0x78 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x0000000000003988 0x78 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x0000000000003a00 0x2c zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x0000000000003a2c 0x3a8 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x0000000000003dd4 0x14c zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x0000000000003f20 0x480 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x00000000000043a0 0x80 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x0000000000004420 0x1b8 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00000000000045d8 0xa8 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x0000000000004680 0xe8 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_frame 0x0000000000004768 0x104 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x000000000000486c 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_frame 0x0000000000004894 0x110 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x00000000000049a4 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .debug_frame 0x00000000000049c4 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .debug_frame 0x00000000000049ec 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .debug_frame 0x0000000000004a0c 0x2c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .debug_frame 0x0000000000004a38 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .debug_frame 0x0000000000004a58 0x34 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x0000000000004a8c 0x50 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x0000000000004adc 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .debug_frame 0x0000000000004afc 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .debug_frame 0x0000000000004b1c 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .debug_frame 0x0000000000004b3c 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + +.debug_str 0x0000000000000000 0xda5f + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x0000000000000000 0x3af zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x3fa (size before relaxing) + .debug_str 0x00000000000003af 0x2f1 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x3ff (size before relaxing) + .debug_str 0x00000000000006a0 0x905 app/libapp.a(main.c.obj) + 0xed8 (size before relaxing) + .debug_str 0x0000000000000fa5 0x157 app/libapp.a(cdc_handler.c.obj) + 0xbcc (size before relaxing) + .debug_str 0x00000000000010fc 0x10b app/libapp.a(pfet_control.c.obj) + 0xec2 (size before relaxing) + .debug_str 0x0000000000001207 0x454 app/libapp.a(gs_usb_can.c.obj) + 0xfb7 (size before relaxing) + .debug_str 0x000000000000165b 0x164 app/libapp.a(usb_gs_usb_class.c.obj) + 0xb2c (size before relaxing) + .debug_str 0x00000000000017bf 0x452 zephyr/libzephyr.a(heap.c.obj) + 0x808 (size before relaxing) + .debug_str 0x0000000000001c11 0x341 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0xd27 (size before relaxing) + .debug_str 0x0000000000001f52 0xe3 zephyr/libzephyr.a(printk.c.obj) + 0x60e (size before relaxing) + .debug_str 0x0000000000002035 0x1e2 zephyr/libzephyr.a(thread_entry.c.obj) + 0x7c6 (size before relaxing) + .debug_str 0x0000000000002217 0x3f2 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x841 (size before relaxing) + .debug_str 0x0000000000002609 0x49 zephyr/libzephyr.a(last_section_id.c.obj) + 0x2db (size before relaxing) + .debug_str 0x0000000000002652 0x7d zephyr/libzephyr.a(configs.c.obj) + 0x26b (size before relaxing) + .debug_str 0x00000000000026cf 0x1a8 zephyr/libzephyr.a(soc_config.c.obj) + 0x579 (size before relaxing) + .debug_str 0x0000000000002877 0x1b1 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + 0xbe5 (size before relaxing) + .debug_str 0x0000000000002a28 0x1af zephyr/libzephyr.a(soc.c.obj) + 0x55c (size before relaxing) + .debug_str 0x0000000000002bd7 0xaeb zephyr/libzephyr.a(log_core.c.obj) + 0x1cd4 (size before relaxing) + .debug_str 0x00000000000036c2 0x568 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x100d (size before relaxing) + .debug_str 0x0000000000003c2a 0x10d zephyr/libzephyr.a(log_msg.c.obj) + 0xcbf (size before relaxing) + .debug_str 0x0000000000003d37 0x30e zephyr/libzephyr.a(log_output.c.obj) + 0xcfc (size before relaxing) + .debug_str 0x0000000000004045 0x1d5 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0xeb2 (size before relaxing) + .debug_str 0x000000000000421a 0xbca zephyr/libzephyr.a(usb_device.c.obj) + 0x1a46 (size before relaxing) + .debug_str 0x0000000000004de4 0x3b0 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x1493 (size before relaxing) + .debug_str 0x0000000000005194 0x1a7 zephyr/libzephyr.a(usb_transfer.c.obj) + 0xfcc (size before relaxing) + .debug_str 0x000000000000533b 0x80 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x329 (size before relaxing) + .debug_str 0x00000000000053bb 0xbf zephyr/arch/common/libarch__common.a(xip.c.obj) + 0x386 (size before relaxing) + .debug_str 0x000000000000547a 0x11b zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0xaa9 (size before relaxing) + .debug_str 0x0000000000005595 0x62 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x310 (size before relaxing) + .debug_str 0x00000000000055f7 0x4e zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x9c (size before relaxing) + .debug_str 0x0000000000005645 0xa8 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x7bc (size before relaxing) + .debug_str 0x00000000000056ed 0xa9 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x5ae (size before relaxing) + .debug_str 0x0000000000005796 0x16b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc75 (size before relaxing) + .debug_str 0x0000000000005901 0x46 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0xa0 (size before relaxing) + .debug_str 0x0000000000005947 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x9e (size before relaxing) + .debug_str 0x000000000000598b 0x69 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x5f8 (size before relaxing) + .debug_str 0x00000000000059f4 0x4a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0xa4 (size before relaxing) + .debug_str 0x0000000000005a3e 0x34b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x744 (size before relaxing) + .debug_str 0x0000000000005d89 0xc6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x42d (size before relaxing) + .debug_str 0x0000000000005e4f 0xde zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x6f0 (size before relaxing) + .debug_str 0x0000000000005f2d 0x7e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x3ab (size before relaxing) + .debug_str 0x0000000000005fab 0x47 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x608 (size before relaxing) + .debug_str 0x0000000000005ff2 0x55 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x37c (size before relaxing) + .debug_str 0x0000000000006047 0x4e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0xa8 (size before relaxing) + .debug_str 0x0000000000006095 0x5a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x3a0 (size before relaxing) + .debug_str 0x00000000000060ef 0xb7 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x5de (size before relaxing) + .debug_str 0x00000000000061a6 0x2ea zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x841 (size before relaxing) + .debug_str 0x0000000000006490 0xe4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + 0x997 (size before relaxing) + .debug_str 0x0000000000006574 0x567 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0xe28 (size before relaxing) + .debug_str 0x0000000000006adb 0x6a7 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x1309 (size before relaxing) + .debug_str 0x0000000000007182 0x975 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x1d43 (size before relaxing) + .debug_str 0x0000000000007af7 0x479 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x1314 (size before relaxing) + .debug_str 0x0000000000007f70 0x747 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x1820 (size before relaxing) + .debug_str 0x00000000000086b7 0x40c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x1ab7 (size before relaxing) + .debug_str 0x0000000000008ac3 0x481 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0xd03 (size before relaxing) + .debug_str 0x0000000000008f44 0xe8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x4d5 (size before relaxing) + .debug_str 0x000000000000902c 0x10e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x680 (size before relaxing) + .debug_str 0x000000000000913a 0x733 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x158d (size before relaxing) + .debug_str 0x000000000000986d 0x1d1 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + 0x617 (size before relaxing) + .debug_str 0x0000000000009a3e 0x3e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x37e (size before relaxing) + .debug_str 0x0000000000009a7c 0x90 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + 0x704 (size before relaxing) + .debug_str 0x0000000000009b0c 0x186 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x5bf (size before relaxing) + .debug_str 0x0000000000009c92 0xc69 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x1c06 (size before relaxing) + .debug_str 0x000000000000a8fb 0x171 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x999 (size before relaxing) + .debug_str 0x000000000000aa6c 0xac modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x439 (size before relaxing) + .debug_str 0x000000000000ab18 0x3a7 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + 0x940 (size before relaxing) + .debug_str 0x000000000000aebf 0x3bc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0xcab (size before relaxing) + .debug_str 0x000000000000b27b 0x1a8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x8ca (size before relaxing) + .debug_str 0x000000000000b423 0x3b5 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0xaa1 (size before relaxing) + .debug_str 0x000000000000b7d8 0x276 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + 0x848 (size before relaxing) + .debug_str 0x000000000000ba4e 0x10a zephyr/kernel/libkernel.a(device.c.obj) + 0x45f (size before relaxing) + .debug_str 0x000000000000bb58 0xbd zephyr/kernel/libkernel.a(fatal.c.obj) + 0xd95 (size before relaxing) + .debug_str 0x000000000000bc15 0x488 zephyr/kernel/libkernel.a(init.c.obj) + 0x11d2 (size before relaxing) + .debug_str 0x000000000000c09d 0x57 zephyr/kernel/libkernel.a(idle.c.obj) + 0x3f6 (size before relaxing) + .debug_str 0x000000000000c0f4 0x25e zephyr/kernel/libkernel.a(mutex.c.obj) + 0xcfe (size before relaxing) + .debug_str 0x000000000000c352 0x58 zephyr/kernel/libkernel.a(sem.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x000000000000c3aa 0xa6 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x8a9 (size before relaxing) + .debug_str 0x000000000000c450 0x720 zephyr/kernel/libkernel.a(work.c.obj) + 0x11cc (size before relaxing) + .debug_str 0x000000000000cb70 0x232 zephyr/kernel/libkernel.a(thread.c.obj) + 0xdcf (size before relaxing) + .debug_str 0x000000000000cda2 0x6e4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x15dc (size before relaxing) + .debug_str 0x000000000000d486 0xc3 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xa2e (size before relaxing) + .debug_str 0x000000000000d549 0x14c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x973 (size before relaxing) + .debug_str 0x000000000000d695 0x9c zephyr/kernel/libkernel.a(timer.c.obj) + 0xa9c (size before relaxing) + .debug_str 0x000000000000d731 0xd8 zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x57a (size before relaxing) + .debug_str 0x000000000000d809 0x126 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x9d5 (size before relaxing) + .debug_str 0x000000000000d92f 0x35 zephyr/kernel/libkernel.a(banner.c.obj) + 0x2f6 (size before relaxing) + .debug_str 0x000000000000d964 0xfb zephyr/kernel/libkernel.a(kheap.c.obj) + 0x964 (size before relaxing) + +.debug_loc 0x0000000000000000 0x395c1 + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x0000000000000000 0x650 app/libapp.a(main.c.obj) + .debug_loc 0x0000000000000650 0x19a app/libapp.a(cdc_handler.c.obj) + .debug_loc 0x00000000000007ea 0xd62 app/libapp.a(pfet_control.c.obj) + .debug_loc 0x000000000000154c 0xf57 app/libapp.a(gs_usb_can.c.obj) + .debug_loc 0x00000000000024a3 0x3a2 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_loc 0x0000000000002845 0x3c18 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x000000000000645d 0x27c3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x0000000000008c20 0x130 zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x0000000000008d50 0x9e zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x0000000000008dee 0x186d zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_loc 0x000000000000a65b 0x30 zephyr/libzephyr.a(soc_config.c.obj) + .debug_loc 0x000000000000a68b 0x1c8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_loc 0x000000000000a853 0x64 zephyr/libzephyr.a(soc.c.obj) + .debug_loc 0x000000000000a8b7 0x13b3 zephyr/libzephyr.a(log_core.c.obj) + .debug_loc 0x000000000000bc6a 0xcff zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_loc 0x000000000000c969 0x124d zephyr/libzephyr.a(log_msg.c.obj) + .debug_loc 0x000000000000dbb6 0x15d4 zephyr/libzephyr.a(log_output.c.obj) + .debug_loc 0x000000000000f18a 0x4b5 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_loc 0x000000000000f63f 0x2474 zephyr/libzephyr.a(usb_device.c.obj) + .debug_loc 0x0000000000011ab3 0x1027 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_loc 0x0000000000012ada 0xc7c zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_loc 0x0000000000013756 0xde zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_loc 0x0000000000013834 0xb55 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_loc 0x0000000000014389 0xd6 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_loc 0x000000000001445f 0xacd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_loc 0x0000000000014f2c 0x3a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_loc 0x0000000000014f66 0x1d1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_loc 0x0000000000015137 0x15d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_loc 0x0000000000015294 0x15 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_loc 0x00000000000152a9 0x6a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_loc 0x0000000000015313 0x3f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_loc 0x0000000000015352 0x128 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x000000000001547a 0xe6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x0000000000015560 0x61e zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x0000000000015b7e 0x19c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_loc 0x0000000000015d1a 0x6d9 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_loc 0x00000000000163f3 0x1638 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_loc 0x0000000000017a2b 0x20a4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_loc 0x0000000000019acf 0x24f4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_loc 0x000000000001bfc3 0x3e77 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_loc 0x000000000001fe3a 0x1440 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_loc 0x000000000002127a 0xb28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_loc 0x0000000000021da2 0x8a zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_loc 0x0000000000021e2c 0x85 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x0000000000021eb1 0x19a3 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_loc 0x0000000000023854 0xc1 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_loc 0x0000000000023915 0x42 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0000000000023957 0x29f zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_loc 0x0000000000023bf6 0x3f7 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_loc 0x0000000000023fed 0x275d zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_loc 0x000000000002674a 0x5d8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_loc 0x0000000000026d22 0xe0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_loc 0x0000000000026e02 0x73b modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_loc 0x000000000002753d 0x136c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_loc 0x00000000000288a9 0x273 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_loc 0x0000000000028b1c 0x23ad modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_loc 0x000000000002aec9 0x7a8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_loc 0x000000000002b671 0x24e zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x000000000002b8bf 0x979 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x000000000002c238 0x447 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x000000000002c67f 0x6f zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x000000000002c6ee 0x728 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x000000000002ce16 0x6d5 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x000000000002d4eb 0x3f67 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x0000000000031452 0x8f0 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x0000000000031d42 0x42a4 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0000000000035fe6 0x2fb zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x00000000000362e1 0x1067 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0000000000037348 0x843 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0000000000037b8b 0x7ac zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_loc 0x0000000000038337 0x924 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0000000000038c5b 0x966 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x0000000000000000 0xa130 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_ranges 0x0000000000000020 0x10 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_ranges 0x0000000000000030 0x100 app/libapp.a(main.c.obj) + .debug_ranges 0x0000000000000130 0xd0 app/libapp.a(cdc_handler.c.obj) + .debug_ranges 0x0000000000000200 0x338 app/libapp.a(pfet_control.c.obj) + .debug_ranges 0x0000000000000538 0x710 app/libapp.a(gs_usb_can.c.obj) + .debug_ranges 0x0000000000000c48 0x150 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_ranges 0x0000000000000d98 0x5c8 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x0000000000001360 0x398 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x00000000000016f8 0x38 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x0000000000001730 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x0000000000001758 0x418 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_ranges 0x0000000000001b70 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x0000000000001b80 0x60 zephyr/libzephyr.a(soc_config.c.obj) + .debug_ranges 0x0000000000001be0 0xa8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_ranges 0x0000000000001c88 0x80 zephyr/libzephyr.a(soc.c.obj) + .debug_ranges 0x0000000000001d08 0x528 zephyr/libzephyr.a(log_core.c.obj) + .debug_ranges 0x0000000000002230 0x4b8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_ranges 0x00000000000026e8 0x318 zephyr/libzephyr.a(log_msg.c.obj) + .debug_ranges 0x0000000000002a00 0x250 zephyr/libzephyr.a(log_output.c.obj) + .debug_ranges 0x0000000000002c50 0xc0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_ranges 0x0000000000002d10 0x610 zephyr/libzephyr.a(usb_device.c.obj) + .debug_ranges 0x0000000000003320 0x1b0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_ranges 0x00000000000034d0 0x1f8 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_ranges 0x00000000000036c8 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_ranges 0x00000000000036e8 0x10 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_ranges 0x00000000000036f8 0x1a8 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_ranges 0x00000000000038a0 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_ranges 0x00000000000038b0 0x50 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_ranges 0x0000000000003900 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_ranges 0x0000000000003910 0x170 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_ranges 0x0000000000003a80 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_ranges 0x0000000000003a90 0x58 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_ranges 0x0000000000003ae8 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_ranges 0x0000000000003b00 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_ranges 0x0000000000003b30 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_ranges 0x0000000000003b50 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_ranges 0x0000000000003b88 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_ranges 0x0000000000003bb0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x0000000000003bc8 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x0000000000003c10 0xf0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x0000000000003d00 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_ranges 0x0000000000003d18 0x210 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_ranges 0x0000000000003f28 0x290 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_ranges 0x00000000000041b8 0x5e8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_ranges 0x00000000000047a0 0x6d0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_ranges 0x0000000000004e70 0x5b8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_ranges 0x0000000000005428 0x280 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_ranges 0x00000000000056a8 0x288 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_ranges 0x0000000000005930 0x90 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_ranges 0x00000000000059c0 0x68 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x0000000000005a28 0x2d0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_ranges 0x0000000000005cf8 0x80 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_ranges 0x0000000000005d78 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x0000000000005d88 0x58 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_ranges 0x0000000000005de0 0x78 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_ranges 0x0000000000005e58 0x9c8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_ranges 0x0000000000006820 0xf8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_ranges 0x0000000000006918 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_ranges 0x0000000000006930 0xd0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_ranges 0x0000000000006a00 0x218 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_ranges 0x0000000000006c18 0x48 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_ranges 0x0000000000006c60 0x548 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_ranges 0x00000000000071a8 0x1d0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_ranges 0x0000000000007378 0x98 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x0000000000007410 0x3c0 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x00000000000077d0 0x198 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x0000000000007968 0x18 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x0000000000007980 0x1b8 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x0000000000007b38 0x230 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x0000000000007d68 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_ranges 0x0000000000007d78 0x998 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x0000000000008710 0x1c8 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x00000000000088d8 0xe88 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x0000000000009760 0xa8 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x0000000000009808 0x388 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x0000000000009b90 0x168 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x0000000000009cf8 0x248 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_ranges 0x0000000000009f40 0x90 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x0000000000009fd0 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_ranges 0x0000000000009fe0 0x150 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.note.GNU-stack)) + +.ARM.attributes + 0x0000000000000000 0x30 + *(SORT_BY_ALIGNMENT(.ARM.attributes)) + .ARM.attributes + 0x0000000000000000 0x2e zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .ARM.attributes + 0x000000000000002e 0x2e zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .ARM.attributes + 0x000000000000005c 0x2e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .ARM.attributes + 0x000000000000008a 0x2e app/libapp.a(main.c.obj) + .ARM.attributes + 0x00000000000000b8 0x2e app/libapp.a(cdc_handler.c.obj) + .ARM.attributes + 0x00000000000000e6 0x2e app/libapp.a(pfet_control.c.obj) + .ARM.attributes + 0x0000000000000114 0x2e app/libapp.a(gs_usb_can.c.obj) + .ARM.attributes + 0x0000000000000142 0x2e app/libapp.a(usb_gs_usb_class.c.obj) + .ARM.attributes + 0x0000000000000170 0x2e zephyr/libzephyr.a(validate_libc.c.obj) + .ARM.attributes + 0x000000000000019e 0x2e zephyr/libzephyr.a(heap.c.obj) + .ARM.attributes + 0x00000000000001cc 0x2e zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .ARM.attributes + 0x00000000000001fa 0x2e zephyr/libzephyr.a(clock.c.obj) + .ARM.attributes + 0x0000000000000228 0x2e zephyr/libzephyr.a(printk.c.obj) + .ARM.attributes + 0x0000000000000256 0x2e zephyr/libzephyr.a(sem.c.obj) + .ARM.attributes + 0x0000000000000284 0x2e zephyr/libzephyr.a(thread_entry.c.obj) + .ARM.attributes + 0x00000000000002b2 0x2e zephyr/libzephyr.a(cbprintf_complete.c.obj) + .ARM.attributes + 0x00000000000002e0 0x2e zephyr/libzephyr.a(assert.c.obj) + .ARM.attributes + 0x000000000000030e 0x2e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .ARM.attributes + 0x000000000000033c 0x2e zephyr/libzephyr.a(dec.c.obj) + .ARM.attributes + 0x000000000000036a 0x2e zephyr/libzephyr.a(hex.c.obj) + .ARM.attributes + 0x0000000000000398 0x2e zephyr/libzephyr.a(rb.c.obj) + .ARM.attributes + 0x00000000000003c6 0x2e zephyr/libzephyr.a(timeutil.c.obj) + .ARM.attributes + 0x00000000000003f4 0x2e zephyr/libzephyr.a(bitarray.c.obj) + .ARM.attributes + 0x0000000000000422 0x2e zephyr/libzephyr.a(bitmask.c.obj) + .ARM.attributes + 0x0000000000000450 0x2e zephyr/libzephyr.a(ring_buffer.c.obj) + .ARM.attributes + 0x000000000000047e 0x2e zephyr/libzephyr.a(last_section_id.c.obj) + .ARM.attributes + 0x00000000000004ac 0x2e zephyr/libzephyr.a(configs.c.obj) + .ARM.attributes + 0x00000000000004da 0x2e zephyr/libzephyr.a(stm32cube_hal.c.obj) + .ARM.attributes + 0x0000000000000508 0x2e zephyr/libzephyr.a(soc_config.c.obj) + .ARM.attributes + 0x0000000000000536 0x2e zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .ARM.attributes + 0x0000000000000564 0x2e zephyr/libzephyr.a(soc.c.obj) + .ARM.attributes + 0x0000000000000592 0x2e zephyr/libzephyr.a(log_core.c.obj) + .ARM.attributes + 0x00000000000005c0 0x2e zephyr/libzephyr.a(log_mgmt.c.obj) + .ARM.attributes + 0x00000000000005ee 0x2e zephyr/libzephyr.a(log_cache.c.obj) + .ARM.attributes + 0x000000000000061c 0x2e zephyr/libzephyr.a(log_msg.c.obj) + .ARM.attributes + 0x000000000000064a 0x2e zephyr/libzephyr.a(log_output.c.obj) + .ARM.attributes + 0x0000000000000678 0x2e zephyr/libzephyr.a(log_backend_uart.c.obj) + .ARM.attributes + 0x00000000000006a6 0x2e zephyr/libzephyr.a(tracing_none.c.obj) + .ARM.attributes + 0x00000000000006d4 0x2e zephyr/libzephyr.a(usb_device.c.obj) + .ARM.attributes + 0x0000000000000702 0x2e zephyr/libzephyr.a(usb_descriptor.c.obj) + .ARM.attributes + 0x0000000000000730 0x2e zephyr/libzephyr.a(usb_transfer.c.obj) + .ARM.attributes + 0x000000000000075e 0x2e zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .ARM.attributes + 0x000000000000078c 0x2e zephyr/arch/common/libarch__common.a(init.c.obj) + .ARM.attributes + 0x00000000000007ba 0x2e zephyr/arch/common/libarch__common.a(xip.c.obj) + .ARM.attributes + 0x00000000000007e8 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .ARM.attributes + 0x0000000000000816 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .ARM.attributes + 0x0000000000000844 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .ARM.attributes + 0x0000000000000860 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .ARM.attributes + 0x000000000000088e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .ARM.attributes + 0x00000000000008bc 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .ARM.attributes + 0x00000000000008ea 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .ARM.attributes + 0x0000000000000906 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .ARM.attributes + 0x0000000000000934 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .ARM.attributes + 0x0000000000000950 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .ARM.attributes + 0x000000000000097e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .ARM.attributes + 0x00000000000009ac 0x1e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .ARM.attributes + 0x00000000000009ca 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .ARM.attributes + 0x00000000000009e6 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .ARM.attributes + 0x0000000000000a14 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .ARM.attributes + 0x0000000000000a42 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .ARM.attributes + 0x0000000000000a70 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .ARM.attributes + 0x0000000000000a9e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .ARM.attributes + 0x0000000000000acc 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .ARM.attributes + 0x0000000000000afa 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .ARM.attributes + 0x0000000000000b16 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .ARM.attributes + 0x0000000000000b44 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .ARM.attributes + 0x0000000000000b72 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .ARM.attributes + 0x0000000000000ba0 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .ARM.attributes + 0x0000000000000bce 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .ARM.attributes + 0x0000000000000bfc 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .ARM.attributes + 0x0000000000000c2a 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .ARM.attributes + 0x0000000000000c58 0x2e zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .ARM.attributes + 0x0000000000000c86 0x2e zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .ARM.attributes + 0x0000000000000cb4 0x2e zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .ARM.attributes + 0x0000000000000ce2 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .ARM.attributes + 0x0000000000000d10 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .ARM.attributes + 0x0000000000000d3e 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .ARM.attributes + 0x0000000000000d6c 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .ARM.attributes + 0x0000000000000d9a 0x2e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .ARM.attributes + 0x0000000000000dc8 0x2e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .ARM.attributes + 0x0000000000000df6 0x2e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .ARM.attributes + 0x0000000000000e24 0x2e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .ARM.attributes + 0x0000000000000e52 0x2e zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .ARM.attributes + 0x0000000000000e80 0x2e zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .ARM.attributes + 0x0000000000000eae 0x2e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .ARM.attributes + 0x0000000000000edc 0x2e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .ARM.attributes + 0x0000000000000f0a 0x2e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .ARM.attributes + 0x0000000000000f38 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .ARM.attributes + 0x0000000000000f66 0x2e zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .ARM.attributes + 0x0000000000000f94 0x2e zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .ARM.attributes + 0x0000000000000fc2 0x2e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .ARM.attributes + 0x0000000000000ff0 0x2e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .ARM.attributes + 0x000000000000101e 0x2e zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .ARM.attributes + 0x000000000000104c 0x2e zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .ARM.attributes + 0x000000000000107a 0x2e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .ARM.attributes + 0x00000000000010a8 0x2e zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .ARM.attributes + 0x00000000000010d6 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .ARM.attributes + 0x0000000000001104 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .ARM.attributes + 0x0000000000001132 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .ARM.attributes + 0x0000000000001160 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .ARM.attributes + 0x000000000000118e 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .ARM.attributes + 0x00000000000011bc 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .ARM.attributes + 0x00000000000011ea 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .ARM.attributes + 0x0000000000001218 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .ARM.attributes + 0x0000000000001246 0x2e zephyr/kernel/libkernel.a(device.c.obj) + .ARM.attributes + 0x0000000000001274 0x2e zephyr/kernel/libkernel.a(fatal.c.obj) + .ARM.attributes + 0x00000000000012a2 0x2e zephyr/kernel/libkernel.a(init.c.obj) + .ARM.attributes + 0x00000000000012d0 0x2e zephyr/kernel/libkernel.a(idle.c.obj) + .ARM.attributes + 0x00000000000012fe 0x2e zephyr/kernel/libkernel.a(msg_q.c.obj) + .ARM.attributes + 0x000000000000132c 0x2e zephyr/kernel/libkernel.a(mutex.c.obj) + .ARM.attributes + 0x000000000000135a 0x2e zephyr/kernel/libkernel.a(sem.c.obj) + .ARM.attributes + 0x0000000000001388 0x2e zephyr/kernel/libkernel.a(system_work_q.c.obj) + .ARM.attributes + 0x00000000000013b6 0x2e zephyr/kernel/libkernel.a(work.c.obj) + .ARM.attributes + 0x00000000000013e4 0x2e zephyr/kernel/libkernel.a(thread.c.obj) + .ARM.attributes + 0x0000000000001412 0x2e zephyr/kernel/libkernel.a(sched.c.obj) + .ARM.attributes + 0x0000000000001440 0x2e zephyr/kernel/libkernel.a(timeslicing.c.obj) + .ARM.attributes + 0x000000000000146e 0x2e zephyr/kernel/libkernel.a(timeout.c.obj) + .ARM.attributes + 0x000000000000149c 0x2e zephyr/kernel/libkernel.a(timer.c.obj) + .ARM.attributes + 0x00000000000014ca 0x2e zephyr/kernel/libkernel.a(atomic_c.c.obj) + .ARM.attributes + 0x00000000000014f8 0x2e zephyr/kernel/libkernel.a(mempool.c.obj) + .ARM.attributes + 0x0000000000001526 0x2e zephyr/kernel/libkernel.a(banner.c.obj) + .ARM.attributes + 0x0000000000001554 0x2e zephyr/kernel/libkernel.a(kheap.c.obj) + .ARM.attributes + 0x0000000000001582 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .ARM.attributes + 0x000000000000159e 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .ARM.attributes + 0x00000000000015ba 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .ARM.attributes + 0x00000000000015ea 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .ARM.attributes + 0x000000000000161a 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .ARM.attributes + 0x0000000000001636 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .ARM.attributes + 0x0000000000001666 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .ARM.attributes + 0x0000000000001696 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .ARM.attributes + 0x00000000000016c6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .ARM.attributes + 0x00000000000016f6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .ARM.attributes + 0x0000000000001726 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .ARM.attributes + 0x0000000000001756 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .ARM.attributes + 0x0000000000001786 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .ARM.attributes + 0x00000000000017b6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .ARM.attributes + 0x00000000000017e6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .ARM.attributes + 0x0000000000001816 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .ARM.attributes + 0x0000000000001846 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .ARM.attributes + 0x0000000000001876 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .ARM.attributes + 0x00000000000018a6 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .ARM.attributes + 0x00000000000018c4 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .ARM.attributes + 0x00000000000018e2 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .ARM.attributes + 0x0000000000001900 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .ARM.attributes + 0x000000000000191e 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .ARM.attributes + 0x000000000000193c 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x000000000000195a 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000000000001978 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .ARM.attributes + 0x0000000000001996 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .ARM.attributes + 0x00000000000019b4 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .ARM.attributes + 0x00000000000019d2 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x00000000000019f0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .ARM.attributes + 0x0000000000001a1c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .ARM.attributes + 0x0000000000001a48 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .ARM.attributes + 0x0000000000001a74 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x0000000000001aa0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x0000000000001acc 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .ARM.attributes + 0x0000000000001af8 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .ARM.attributes + 0x0000000000001b24 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000000000001b50 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .ARM.attributes + 0x0000000000001b7c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .ARM.attributes + 0x0000000000001ba8 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .ARM.attributes + 0x0000000000001bd4 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .ARM.attributes + 0x0000000000001c00 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .ARM.attributes + 0x0000000000001c2c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .ARM.attributes + 0x0000000000001c58 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .ARM.attributes + 0x0000000000001c84 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .ARM.attributes + 0x0000000000001cb0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .ARM.attributes + 0x0000000000001cdc 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .ARM.attributes + 0x0000000000001d08 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .ARM.attributes + 0x0000000000001d34 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .ARM.attributes + 0x0000000000001d60 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .ARM.attributes + 0x0000000000001d7e 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .ARM.attributes + 0x0000000000001d9c 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .ARM.attributes + 0x0000000000001dba 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000001dd8 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .ARM.attributes + 0x0000000000001df6 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .ARM.attributes + 0x0000000000001e22 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.attributes + 0x0000000000001e4e 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .ARM.attributes + 0x0000000000001e7a 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .ARM.attributes + 0x0000000000001ea6 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .ARM.attributes + 0x0000000000001ed2 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + *(SORT_BY_ALIGNMENT(.gnu.attributes)) + +SRAM0 0x0000000020000000 0x0 + 0x0000000020000000 __SRAM0_start = . + *(SORT_BY_ALIGNMENT(SRAM0)) + *(SORT_BY_ALIGNMENT(SRAM0.*)) + 0x0000000020000000 __SRAM0_end = . + 0x0000000000000000 __SRAM0_size = (__SRAM0_end - __SRAM0_start) + 0x0000000020000000 __SRAM0_load_start = LOADADDR (SRAM0) + +.last_section 0x000000000800c8a8 0x4 + *(SORT_BY_ALIGNMENT(.last_section)) + .last_section 0x000000000800c8a8 0x4 zephyr/libzephyr.a(last_section_id.c.obj) + 0x000000000000c8ac _flash_used = ((LOADADDR (.last_section) + SIZEOF (.last_section)) - __rom_region_start) + +bss 0x0000000020000150 0x131e + 0x0000000020000150 . = ALIGN (0x4) + 0x0000000020000150 __bss_start = . + 0x0000000020000150 __kernel_ram_start = . + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.logging_thread + 0x0000000020000150 0x70 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000020000150 logging_thread + .bss.buf32 0x00000000200001c0 0x400 zephyr/libzephyr.a(log_core.c.obj) + .bss.last_failure_report + 0x00000000200005c0 0x8 zephyr/libzephyr.a(log_core.c.obj) + .bss.log_process_thread_timer + 0x00000000200005c8 0x38 zephyr/libzephyr.a(log_core.c.obj) + .bss.announced_cycles + 0x0000000020000600 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.cycle_count + 0x0000000020000608 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.z_idle_threads + 0x0000000020000610 0x70 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000610 z_idle_threads + .bss.z_main_thread + 0x0000000020000680 0x70 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000680 z_main_thread + .bss.k_sys_work_q + 0x00000000200006f0 0x90 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x00000000200006f0 k_sys_work_q + .bss._thread_dummy + 0x0000000020000780 0x70 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020000780 _thread_dummy + .bss.slice_timeouts + 0x00000000200007f0 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x0000000020000808 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.rx_pos 0x0000000020000810 0x4 app/libapp.a(cdc_handler.c.obj) + .bss.curr_log_buffer + 0x0000000020000814 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.proc_tid 0x0000000020000818 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.dropped_cnt + 0x000000002000081c 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.buffered_cnt + 0x0000000020000820 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.initialized + 0x0000000020000824 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.timestamp_div + 0x0000000020000828 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.freq 0x000000002000082c 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.lbu_data 0x0000000020000830 0x18 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.lbu_output_control_block + 0x0000000020000848 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.usb_dev 0x0000000020000854 0xcc zephyr/libzephyr.a(usb_device.c.obj) + .bss.ut_data 0x0000000020000920 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss.z_arm_tls_ptr + 0x0000000020000a20 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000020000a20 z_arm_tls_ptr + .bss._stdout_hook + 0x0000000020000a24 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x0000000020000a28 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.intc_gpio_data + 0x0000000020000a34 0x80 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .bss.usb_dc_stm32_state + 0x0000000020000ab4 0x728 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .bss.can_mcan_data_0 + 0x00000000200011dc 0x4c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_ext_cbs + 0x0000000020001228 0x40 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_std_cbs + 0x0000000020001268 0xe0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_tx_cbs + 0x0000000020001348 0x18 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.gpio_stm32_data_f + 0x0000000020001360 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_e + 0x0000000020001374 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_d + 0x0000000020001388 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_c + 0x000000002000139c 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_b + 0x00000000200013b0 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_a + 0x00000000200013c4 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.overflow_cyc + 0x00000000200013d8 0x4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.last_load + 0x00000000200013dc 0x4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss._kernel 0x00000000200013e0 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000200013e0 _kernel + .bss.pending_cancels + 0x0000000020001400 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss.pending_current + 0x0000000020001408 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x0000000020001408 pending_current + .bss.slice_max_prio + 0x000000002000140c 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x0000000020001410 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.rx_buf 0x0000000020001414 0x40 app/libapp.a(cdc_handler.c.obj) + .bss.pfet2_state + 0x0000000020001454 0x1 app/libapp.a(pfet_control.c.obj) + .bss.pfet1_state + 0x0000000020001455 0x1 app/libapp.a(pfet_control.c.obj) + .bss.backend_attached + 0x0000000020001456 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.panic_mode + 0x0000000020001457 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.lbu_buffer + 0x0000000020001458 0x1 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.initialized.0 + 0x0000000020001459 0x1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.sn.1 0x000000002000145a 0x12 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.z_sys_post_kernel + 0x000000002000146c 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000002000146c z_sys_post_kernel + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss._sched_spinlock + 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000002000146d _sched_spinlock + .bss.slice_expired + 0x000000002000146d 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *(SORT_BY_ALIGNMENT(COMMON)) + *(SORT_BY_ALIGNMENT(.kernel_bss.*)) + 0x0000000020001470 __bss_end = ALIGN (0x4) + +noinit 0x0000000020001470 0x4000 + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit."WEST_TOPDIR/zephyr/subsys/logging/log_core.c".0 + 0x0000000020001470 0x300 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000020001470 logging_stack + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".2 + 0x0000000020001770 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020001770 z_interrupt_stacks + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".1 + 0x0000000020001f70 0x100 zephyr/kernel/libkernel.a(init.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".0 + 0x0000000020002070 0x1000 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002070 z_main_stack + .noinit."WEST_TOPDIR/zephyr/kernel/system_work_q.c".0 + 0x0000000020003070 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/mempool.c".kheap_buf__system_heap + 0x0000000020003470 0x2000 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x0000000020003470 kheap__system_heap + 0x0000000020024000 __kernel_ram_end = 0x20024000 + 0x0000000000023eb0 __kernel_ram_size = (__kernel_ram_end - __kernel_ram_start) + +.last_ram_section + 0x0000000020005470 0x0 + 0x0000000020005470 _image_ram_end = . + 0x0000000000005470 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x0000000020005470 _end = . + 0x0000000020005470 z_mapped_end = . +OUTPUT(zephyr\zephyr.elf elf32-littlearm) +LOAD linker stubs diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.elf b/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.elf new file mode 100644 index 0000000..ee29145 Binary files /dev/null and b/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.elf differ diff --git a/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.map b/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.map new file mode 100644 index 0000000..cb79a34 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr/zephyr_pre0.map @@ -0,0 +1,6525 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(cdc_handler.c.obj) + (--whole-archive) +app/libapp.a(pfet_control.c.obj) + (--whole-archive) +app/libapp.a(gs_usb_can.c.obj) + (--whole-archive) +app/libapp.a(usb_gs_usb_class.c.obj) + (--whole-archive) +zephyr/libzephyr.a(validate_libc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clock.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpsc_pbuf.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitmask.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(last_section_id.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(stm32cube_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_config.c.obj) + (--whole-archive) +zephyr/libzephyr.a(stm32_backup_domain.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_core.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_mgmt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_cache.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_msg.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_backend_uart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_device.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_descriptor.c.obj) + (--whole-archive) +zephyr/libzephyr.a(usb_transfer.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(init.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(xip.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + (--whole-archive) +zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + (--whole-archive) +zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + (--whole-archive) +zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + (--whole-archive) +zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + (--whole-archive) +zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + (--whole-archive) +modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(main.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) (_kernel) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(msg_q.c.obj) + zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) (z_impl_k_msgq_put) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_sys_work_q) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/libzephyr.a(usb_transfer.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(mpsc_pbuf.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_thread_timeout) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(sched.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/libzephyr.a(log_core.c.obj) (k_timer_init) +zephyr/kernel/libkernel.a(atomic_c.c.obj) + zephyr/libzephyr.a(stm32_backup_domain.c.obj) (z_impl_atomic_cas) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/kernel/libkernel.a(msg_q.c.obj) (k_free) +zephyr/kernel/libkernel.a(banner.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (boot_banner) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_free) +zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) (_sw_isr_table) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + zephyr/libzephyr.a(log_mgmt.c.obj) (strcmp) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + app/libapp.a(cdc_handler.c.obj) (strcpy) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + app/libapp.a(gs_usb_can.c.obj) (memcpy) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + app/libapp.a(gs_usb_can.c.obj) (memset) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + app/libapp.a(cdc_handler.c.obj) (strlen) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + zephyr/libzephyr.a(timeutil.c.obj) (errno) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) (strchr) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + app/libapp.a(cdc_handler.c.obj) (strncmp) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + app/libapp.a(cdc_handler.c.obj) (snprintf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) (getc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) (__atomic_compare_exchange_ungetc) +c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) (__atomic_exchange_ungetc) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (__gnu_thumb1_case_sqi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + app/libapp.a(gs_usb_can.c.obj) (__gnu_thumb1_case_uqi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (__gnu_thumb1_case_shi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + zephyr/libzephyr.a(heap.c.obj) (__aeabi_uidiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + zephyr/libzephyr.a(dec.c.obj) (__aeabi_idiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) (__aeabi_idiv0) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_fcmpeq) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + zephyr/libzephyr.a(heap.c.obj) (__clzsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + zephyr/libzephyr.a(heap.c.obj) (__ctzsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ldivmod) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + app/libapp.a(gs_usb_can.c.obj) (__aeabi_uldivmod) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + zephyr/libzephyr.a(clock.c.obj) (__aeabi_lmul) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__ffssi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2lz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_l2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ul2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) (__gnu_ldivmod_helper) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__eqsf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__gesf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) (__lesf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) (__aeabi_dadd) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ddiv) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dmul) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_dsub) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) (__aeabi_i2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_ui2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_f2d) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__aeabi_d2f) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) (__gnu_thumb1_case_uhi) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__aeabi_llsr) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__aeabi_llsl) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) (__aeabi_dcmplt) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) (__clzdi2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) (__aeabi_d2uiz) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) (__divdi3) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__eqdf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__gedf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) (__ledf2) +c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) (__aeabi_d2iz) + +Discarded input sections + + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .debug_line 0x0000000000000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .debug_str 0x0000000000000000 0x225 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .comment 0x0000000000000000 0x21 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .text 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .data 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .bss 0x0000000000000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .text 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(main.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(cdc_handler.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(pfet_control.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_handle_control_request.str1.1 + 0x0000000000000000 0x6e app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_handle_control_request + 0x0000000000000000 0xf8 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_can_send_frame + 0x0000000000000000 0x6 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_process_host_frame.str1.1 + 0x0000000000000000 0x19 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_process_host_frame + 0x0000000000000000 0x10c app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.0 + 0x0000000000000000 0x1a app/libapp.a(gs_usb_can.c.obj) + .bss.response_buf.1 + 0x0000000000000000 0x40 app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.2 + 0x0000000000000000 0x1e app/libapp.a(gs_usb_can.c.obj) + .bss.echo_id_counter + 0x0000000000000000 0x4 app/libapp.a(gs_usb_can.c.obj) + .bss.current_state + 0x0000000000000000 0xc app/libapp.a(gs_usb_can.c.obj) + .bss.current_mode + 0x0000000000000000 0x8 app/libapp.a(gs_usb_can.c.obj) + .data.bt_const + 0x0000000000000000 0x28 app/libapp.a(gs_usb_can.c.obj) + .data.device_config + 0x0000000000000000 0xc app/libapp.a(gs_usb_can.c.obj) + .text 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .data 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .bss 0x0000000000000000 0x0 app/libapp.a(usb_gs_usb_class.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_info 0x0000000000000000 0xbf zephyr/libzephyr.a(validate_libc.c.obj) + .debug_abbrev 0x0000000000000000 0x5f zephyr/libzephyr.a(validate_libc.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_line 0x0000000000000000 0x17b zephyr/libzephyr.a(validate_libc.c.obj) + .debug_str 0x0000000000000000 0x2ec zephyr/libzephyr.a(validate_libc.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(validate_libc.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove_bidx + 0x0000000000000000 0x36 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove + 0x0000000000000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .text.alloc_chunk + 0x0000000000000000 0x7e zephyr/libzephyr.a(heap.c.obj) + .text.merge_chunks + 0x0000000000000000 0x30 zephyr/libzephyr.a(heap.c.obj) + .text.split_chunks + 0x0000000000000000 0x34 zephyr/libzephyr.a(heap.c.obj) + .text.free_chunk + 0x0000000000000000 0x60 zephyr/libzephyr.a(heap.c.obj) + .text.inplace_realloc.isra.0 + 0x0000000000000000 0xd8 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_free + 0x0000000000000000 0x20 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x0000000000000000 0x20 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_alloc + 0x0000000000000000 0x5e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_noalign_alloc + 0x0000000000000000 0xa zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_alloc + 0x0000000000000000 0xd6 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_realloc + 0x0000000000000000 0x5e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x0000000000000000 0x74 zephyr/libzephyr.a(heap.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x0000000000000000 0x1c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_compare + 0x0000000000000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_add + 0x0000000000000000 0x68 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_from_clockid + 0x0000000000000000 0xa zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_getrtoffset + 0x0000000000000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_gettime + 0x0000000000000000 0x70 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_settime + 0x0000000000000000 0x70 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_nanosleep + 0x0000000000000000 0x1f8 zephyr/libzephyr.a(clock.c.obj) + .bss.rt_clock_offset + 0x0000000000000000 0x10 zephyr/libzephyr.a(clock.c.obj) + .rodata 0x0000000000000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .debug_info 0x0000000000000000 0xffe zephyr/libzephyr.a(clock.c.obj) + .debug_abbrev 0x0000000000000000 0x461 zephyr/libzephyr.a(clock.c.obj) + .debug_loc 0x0000000000000000 0xa4f zephyr/libzephyr.a(clock.c.obj) + .debug_aranges + 0x0000000000000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .debug_ranges 0x0000000000000000 0x100 zephyr/libzephyr.a(clock.c.obj) + .debug_line 0x0000000000000000 0xafd zephyr/libzephyr.a(clock.c.obj) + .debug_str 0x0000000000000000 0x8e3 zephyr/libzephyr.a(clock.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(clock.c.obj) + .debug_frame 0x0000000000000000 0xdc zephyr/libzephyr.a(clock.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x0000000000000000 0xc zephyr/libzephyr.a(printk.c.obj) + .text.vprintk 0x0000000000000000 0x8 zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x0000000000000000 0x1c zephyr/libzephyr.a(printk.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x0000000000000000 0xa zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x0000000000000000 0xa zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x0000000000000000 0x18 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x0000000000000000 0x523 zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x0000000000000000 0x254 zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x0000000000000000 0x20d zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x0000000000000000 0x80 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x0000000000000000 0x3df zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x0000000000000000 0x448 zephyr/libzephyr.a(sem.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x0000000000000000 0x68 zephyr/libzephyr.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x0000000000000000 0x9a zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.outs 0x0000000000000000 0x2c zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.1 + 0x0000000000000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x0000000000000000 0x72c zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x0000000000000000 0x10d0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x0000000000000000 0x414 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x0000000000000000 0x1513 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x0000000000000000 0x218 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x0000000000000000 0xdd3 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x0000000000000000 0x712 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x0000000000000000 0x74 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text.assert_post_action + 0x0000000000000000 0xe zephyr/libzephyr.a(assert.c.obj) + .text.assert_print + 0x0000000000000000 0x16 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x0000000000000000 0x250 zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0x1c4 zephyr/libzephyr.a(assert.c.obj) + .debug_loc 0x0000000000000000 0x3b zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x0000000000000000 0x389 zephyr/libzephyr.a(assert.c.obj) + .debug_str 0x0000000000000000 0x3e5 zephyr/libzephyr.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x40 zephyr/libzephyr.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word + 0x0000000000000000 0xb8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word_ext + 0x0000000000000000 0xf8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_data + 0x0000000000000000 0xec zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_utilization + 0x0000000000000000 0x26 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_max_utilization + 0x0000000000000000 0x26 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x0000000000000000 0x78 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x0000000000000000 0x16a zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x0000000000000000 0xb4 zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x0000000000000000 0x138 zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x0000000000000000 0x1bb zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x0000000000000000 0x319 zephyr/libzephyr.a(dec.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x0000000000000000 0x34 zephyr/libzephyr.a(dec.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x0000000000000000 0x30 zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x0000000000000000 0x1c zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x0000000000000000 0x42 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x0000000000000000 0x74 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x0000000000000000 0x2a3 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x0000000000000000 0x117 zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x0000000000000000 0x2fd zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x0000000000000000 0x40 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x0000000000000000 0x329 zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x0000000000000000 0x301 zephyr/libzephyr.a(hex.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x0000000000000000 0x74 zephyr/libzephyr.a(hex.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x0000000000000000 0x3a zephyr/libzephyr.a(rb.c.obj) + .text.stack_left_limb + 0x0000000000000000 0x3a zephyr/libzephyr.a(rb.c.obj) + .text.set_child + 0x0000000000000000 0x14 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x0000000000000000 0xa4 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x0000000000000000 0x1e zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x0000000000000000 0x14c zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x0000000000000000 0x348 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x0000000000000000 0x26 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x0000000000000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x0000000000000000 0x8 zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x0000000000000000 0x32 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x0000000000000000 0x52 zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x0000000000000000 0x24ec zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x0000000000000000 0x4c9 zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x0000000000000000 0x297e zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x0000000000000000 0x78 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x0000000000000000 0x660 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x0000000000000000 0x14fa zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x0000000000000000 0x504 zephyr/libzephyr.a(rb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x0000000000000000 0x148 zephyr/libzephyr.a(rb.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x0000000000000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x0000000000000000 0x66 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x0000000000000000 0x3e zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x0000000000000000 0x9e zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x0000000000000000 0xb0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x0000000000000000 0xa2 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x0000000000000000 0x34 zephyr/libzephyr.a(timeutil.c.obj) + .text.timespec_normalize + 0x0000000000000000 0xa0 zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x0000000000000000 0xa41 zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x0000000000000000 0x220 zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x0000000000000000 0x8e8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x0000000000000000 0x60 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x0000000000000000 0xb8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x0000000000000000 0x725 zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x0000000000000000 0x63b zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x0000000000000000 0x11c zephyr/libzephyr.a(timeutil.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.setup_bundle_data.constprop.0 + 0x0000000000000000 0x38 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x0000000000000000 0x8e zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x0000000000000000 0x40 zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x0000000000000000 0x92 zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x0000000000000000 0x44 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x0000000000000000 0x98 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x0000000000000000 0xb2 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x0000000000000000 0x3a zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x0000000000000000 0x46 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x0000000000000000 0x46 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x0000000000000000 0xc4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x0000000000000000 0xc6 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x0000000000000000 0x86 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x0000000000000000 0x6e zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x0000000000000000 0xa zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x0000000000000000 0x22d7 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x0000000000000000 0x4e5 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x0000000000000000 0x1f3f zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x0000000000000000 0xb8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x0000000000000000 0x2e8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x0000000000000000 0x18ac zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x0000000000000000 0x703 zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x0000000000000000 0x250 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .text.bitmask_find_gap + 0x0000000000000000 0x7e zephyr/libzephyr.a(bitmask.c.obj) + .debug_info 0x0000000000000000 0x218 zephyr/libzephyr.a(bitmask.c.obj) + .debug_abbrev 0x0000000000000000 0x10e zephyr/libzephyr.a(bitmask.c.obj) + .debug_loc 0x0000000000000000 0x2b2 zephyr/libzephyr.a(bitmask.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .debug_ranges 0x0000000000000000 0x40 zephyr/libzephyr.a(bitmask.c.obj) + .debug_line 0x0000000000000000 0x2e8 zephyr/libzephyr.a(bitmask.c.obj) + .debug_str 0x0000000000000000 0x34d zephyr/libzephyr.a(bitmask.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(bitmask.c.obj) + .debug_frame 0x0000000000000000 0x34 zephyr/libzephyr.a(bitmask.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_claim + 0x0000000000000000 0x30 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x0000000000000000 0x20 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get_claim + 0x0000000000000000 0x1e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_finish + 0x0000000000000000 0x32 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put + 0x0000000000000000 0x40 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get + 0x0000000000000000 0x42 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x0000000000000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x0000000000000000 0x74 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x0000000000000000 0x96 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x0000000000000000 0xcfd zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x0000000000000000 0x2ad zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x0000000000000000 0xb5e zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x0000000000000000 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x0000000000000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x0000000000000000 0x74e zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_str 0x0000000000000000 0x514 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x0000000000000000 0x118 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(last_section_id.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text.HAL_GetTick + 0x0000000000000000 0x10 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text.HAL_Delay + 0x0000000000000000 0x1c zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_info 0x0000000000000000 0x2d8 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x1cf zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_loc 0x0000000000000000 0x38 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_ranges 0x0000000000000000 0xa8 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_line 0x0000000000000000 0x34a zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_str 0x0000000000000000 0x403 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .debug_frame 0x0000000000000000 0x44 zephyr/libzephyr.a(stm32cube_hal.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(soc_config.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text.stm32_backup_domain_enable_access + 0x0000000000000000 0x3c zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .rodata.stm32_backup_domain_disable_access.str1.1 + 0x0000000000000000 0x29 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text.stm32_backup_domain_disable_access + 0x0000000000000000 0x60 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss.__warned.0 + 0x0000000000000000 0x4 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .bss.refcount 0x0000000000000000 0x4 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_table_size + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_timestamp + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_set_all_active_backends + 0x0000000000000000 0x4c zephyr/libzephyr.a(log_core.c.obj) + .text.log_init + 0x0000000000000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_trigger + 0x0000000000000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_set + 0x0000000000000000 0x2 zephyr/libzephyr.a(log_core.c.obj) + .rodata.unordered_notify.str1.1 + 0x0000000000000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.unordered_notify + 0x0000000000000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.z_impl_log_buffered_cnt + 0x0000000000000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_dropped_pending + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim_oldest + 0x0000000000000000 0x74 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_enqueue + 0x0000000000000000 0x6c zephyr/libzephyr.a(log_core.c.obj) + .text.log_set_tag + 0x0000000000000000 0x6 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_usage + 0x0000000000000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_max_usage + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_core.c.obj) + .text.log_flush + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_core.c.obj) + .bss.unordered_cnt + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.prev_timestamp + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.domain_id_cmp + 0x0000000000000000 0xa zephyr/libzephyr.a(log_mgmt.c.obj) + .text.source_id_cmp + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_get_dynamic_filter + 0x0000000000000000 0x44 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_ext_domain_count + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_src_cnt_get + 0x0000000000000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.log_domain_name_get.str1.1 + 0x0000000000000000 0x1 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_domain_name_get + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_compiled_level_get + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_set_runtime_level + 0x0000000000000000 0x40 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_runtime_filters_init + 0x0000000000000000 0x34 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_source_id_get + 0x0000000000000000 0x38 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_frontend_filter_set + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_get_by_name + 0x0000000000000000 0x2c zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_disable + 0x0000000000000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_filter_get + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_frontend_filter_get + 0x0000000000000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_links_initiate + 0x0000000000000000 0x50 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.sname_cache_config.0 + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.dname_cache_config.1 + 0x0000000000000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache + 0x0000000000000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache_buffer + 0x0000000000000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache_buffer + 0x0000000000000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_init + 0x0000000000000000 0x5e zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_get + 0x0000000000000000 0xaa zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_put + 0x0000000000000000 0x12 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_release + 0x0000000000000000 0x12 zephyr/libzephyr.a(log_cache.c.obj) + .debug_info 0x0000000000000000 0x1100 zephyr/libzephyr.a(log_cache.c.obj) + .debug_abbrev 0x0000000000000000 0x2b4 zephyr/libzephyr.a(log_cache.c.obj) + .debug_loc 0x0000000000000000 0xbb9 zephyr/libzephyr.a(log_cache.c.obj) + .debug_aranges + 0x0000000000000000 0x38 zephyr/libzephyr.a(log_cache.c.obj) + .debug_ranges 0x0000000000000000 0x240 zephyr/libzephyr.a(log_cache.c.obj) + .debug_line 0x0000000000000000 0x834 zephyr/libzephyr.a(log_cache.c.obj) + .debug_str 0x0000000000000000 0x55c zephyr/libzephyr.a(log_cache.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(log_cache.c.obj) + .debug_frame 0x0000000000000000 0x78 zephyr/libzephyr.a(log_cache.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_timestamp_to_us + 0x0000000000000000 0x30 zephyr/libzephyr.a(log_output.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle_exit + 0x0000000000000000 0x2 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x0000000000000000 0xff zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x0000000000000000 0x97 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x0000000000000000 0x1d6 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x0000000000000000 0x35b zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x0000000000000000 0x21 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/libzephyr.a(tracing_none.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_deconfig + 0x0000000000000000 0x20 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_disable + 0x0000000000000000 0x70 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_read + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_set_stall + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_clear_stall + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_wait + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_ep_read_continue + 0x0000000000000000 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_get_remote_wakeup_status + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_wakeup_request + 0x0000000000000000 0x1c zephyr/libzephyr.a(usb_device.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_str_descriptor_idx + 0x0000000000000000 0x28 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_cfg + 0x0000000000000000 0x16 zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_iface + 0x0000000000000000 0x1a zephyr/libzephyr.a(usb_descriptor.c.obj) + .text.usb_get_dev_data_by_ep + 0x0000000000000000 0x2a zephyr/libzephyr.a(usb_descriptor.c.obj) + .text 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .data 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync_cb + 0x0000000000000000 0xc zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_is_busy + 0x0000000000000000 0x16 zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.usb_transfer_ep_callback.str1.1 + 0x0000000000000000 0x1a zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_ep_callback + 0x0000000000000000 0x64 zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.usb_transfer.str1.1 + 0x0000000000000000 0x44 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer + 0x0000000000000000 0x104 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_sync + 0x0000000000000000 0x44 zephyr/libzephyr.a(usb_transfer.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text.z_get_sw_isr_table_idx + 0x0000000000000000 0x2 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x0000000000000000 0x100 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x0000000000000000 0xa4 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x0000000000000000 0x15 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0000000000000000 0x19d zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0000000000000000 0x310 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x0000000000000000 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libarch__common.a(xip.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_save_fp_context + 0x0000000000000000 0x2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text.z_arm_restore_fp_context + 0x0000000000000000 0x2 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_info 0x0000000000000000 0x18c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_abbrev 0x0000000000000000 0xde zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_line 0x0000000000000000 0x1f3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_str 0x0000000000000000 0x371 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.sys_arch_reboot + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_save_scb_context + 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text.z_arm_restore_scb_context + 0x0000000000000000 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_info 0x0000000000000000 0x36c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_abbrev 0x0000000000000000 0x1b3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_loc 0x0000000000000000 0x64 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_line 0x0000000000000000 0x3bd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_str 0x0000000000000000 0x3c7 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .comment 0x0000000000000000 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .debug_frame 0x0000000000000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text.arm_irq_is_enabled + 0x0000000000000000 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text.arch_irq_lock_outlined + 0x0000000000000000 0x8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text.arch_cpu_atomic_idle + 0x0000000000000000 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .data 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text.__assert_no_args + 0x0000000000000000 0x6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x0000000000000000 0xeb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x0000000000000000 0xa1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0000000000000000 0x1e7 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0000000000000000 0x30e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.1 + 0x0000000000000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x0000000000000000 0x1c4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x0000000000000000 0x15f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_loc 0x0000000000000000 0x16 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x0000000000000000 0x302 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x0000000000000000 0x3b5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x0000000000000000 0xbf zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x0000000000000000 0x5f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x0000000000000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x0000000000000000 0x181 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x0000000000000000 0x2fb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.1 + 0x0000000000000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x0000000000000000 0x110 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x0000000000000000 0xbb zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x0000000000000000 0x1b9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x0000000000000000 0x316 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x0000000000000000 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x0000000000000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x0000000000000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x0000000000000000 0xa3a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x0000000000000000 0x2f8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x0000000000000000 0x203 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x0000000000000000 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x0000000000000000 0xf0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x0000000000000000 0x63e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x0000000000000000 0x927 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x0000000000000000 0x100 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x0000000000000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x0000000000000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x0000000000000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.abort.str1.1 + 0x0000000000000000 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text.abort 0x0000000000000000 0x18 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x0000000000000000 0x1c4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0000000000000000 0x15f zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_loc 0x0000000000000000 0x16 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0000000000000000 0x35a zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0000000000000000 0x3c4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text.time 0x0000000000000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_info 0x0000000000000000 0x14f zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_abbrev 0x0000000000000000 0xff zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_loc 0x0000000000000000 0x61 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_line 0x0000000000000000 0x202 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_str 0x0000000000000000 0x32e zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_unlock + 0x0000000000000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x0000000000000000 0x34 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x0000000000000000 0x38 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x0000000000000000 0x38 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x0000000000000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x0000000000000000 0x64 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x0000000000000000 0x54 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x0000000000000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.foldcase + 0x0000000000000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatchx + 0x0000000000000000 0x28a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatch 0x0000000000000000 0xa zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_info 0x0000000000000000 0x510 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_abbrev 0x0000000000000000 0x20b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_loc 0x0000000000000000 0x56b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_aranges + 0x0000000000000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_ranges 0x0000000000000000 0x70 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_line 0x0000000000000000 0x522 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_str 0x0000000000000000 0x33f zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_frame 0x0000000000000000 0x58 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text.getentropy + 0x0000000000000000 0x1c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_info 0x0000000000000000 0x253 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_abbrev 0x0000000000000000 0x148 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_loc 0x0000000000000000 0x25 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_aranges + 0x0000000000000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_ranges 0x0000000000000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_line 0x0000000000000000 0x261 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_str 0x0000000000000000 0x3a2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_frame 0x0000000000000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .rodata.getopt_init.str1.1 + 0x0000000000000000 0x1 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text.getopt_init + 0x0000000000000000 0x48 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text.getopt 0x0000000000000000 0xfc zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .text 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text.z_getopt_global_state_update + 0x0000000000000000 0x34 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text.getopt_state_get + 0x0000000000000000 0x8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x1 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.m_getopt_common_state + 0x0000000000000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optarg 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optreset 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .bss.optopt 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.optind 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .data.opterr 0x0000000000000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_info 0x0000000000000000 0x2b3 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_abbrev 0x0000000000000000 0x13b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_line 0x0000000000000000 0x24b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_str 0x0000000000000000 0x596 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .comment 0x0000000000000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_falling_trig.part.0 + 0x0000000000000000 0x1c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_rising_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_rising_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_falling_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_event + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_it + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_it + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable_event + 0x0000000000000000 0x2c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable_falling_trig + 0x0000000000000000 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_sw_interrupt + 0x0000000000000000 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.stm32_exti_enable.str1.1 + 0x0000000000000000 0x37 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_enable + 0x0000000000000000 0xe0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_disable + 0x0000000000000000 0x4c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_halt + 0x0000000000000000 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_flush.str1.1 + 0x0000000000000000 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_flush + 0x0000000000000000 0x24 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_wakeup_request + 0x0000000000000000 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_detach.str1.1 + 0x0000000000000000 0x32 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_detach + 0x0000000000000000 0x64 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_reset + 0x0000000000000000 0x18 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_ConnectCallback + 0x0000000000000000 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_DisconnectCallback + 0x0000000000000000 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.HAL_PCD_ISOINIncompleteCallback + 0x0000000000000000 0x12 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_tx_default_cb + 0x0000000000000000 0xc zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_msgq_put.part.0.isra.0.str1.1 + 0x0000000000000000 0x23 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_msgq_put.part.0.isra.0 + 0x0000000000000000 0x30 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_msgq_put + 0x0000000000000000 0x1e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_send + 0x0000000000000000 0xd4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_add_rx_filter_msgq + 0x0000000000000000 0x18 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_bitrate + 0x0000000000000000 0x74 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_bitrate_data + 0x0000000000000000 0x74 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_configure_mram + 0x0000000000000000 0x13c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x0000000000000000 0x2 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_device_eui64 + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x6 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_info 0x0000000000000000 0x1d7 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_abbrev 0x0000000000000000 0x122 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_loc 0x0000000000000000 0x4a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x40 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_ranges 0x0000000000000000 0x30 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_line 0x0000000000000000 0x273 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_str 0x0000000000000000 0x3e0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .debug_frame 0x0000000000000000 0x60 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_get_reset_cause + 0x0000000000000000 0x58 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_clear_reset_cause + 0x0000000000000000 0x20 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text.z_impl_hwinfo_get_supported_reset_cause + 0x0000000000000000 0x8 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x0000000000000000 0x2 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x2 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x0000000000000000 0x120 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x0000000000000000 0xa8 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x0000000000000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x0000000000000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x0000000000000000 0x1a5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x0000000000000000 0x339 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x0000000000000000 0x21 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x0000000000000000 0x30 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .data 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss 0x0000000000000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_cycle_get_64 + 0x0000000000000000 0x2c zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_idle_exit + 0x0000000000000000 0x44 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_disable + 0x0000000000000000 0x10 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text.SystemInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text.SystemCoreClockUpdate + 0x0000000000000000 0x8c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .rodata.APBPrescTable + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_MspInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_MspDeInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DeInit + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_InitTick + 0x0000000000000000 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_Init + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_IncTick + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTick + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTickPrio + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SetTickFreq + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetTickFreq + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_Delay + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SuspendTick + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_ResumeTick + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetHalVersion + 0x0000000000000000 0x8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetREVID + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetDEVID + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw0 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw1 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_GetUIDw2 + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_EnableDBGStopMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_DisableDBGStopMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_VoltageScalingConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_HighImpedanceConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_VREFBUF_TrimmingConfig + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableVREFBUF + 0x0000000000000000 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableVREFBUF + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableIOAnalogSwitchBooster + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableIOAnalogSwitchBooster + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableRemap + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableRemap + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_EnableClampingDiode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_DisableClampingDiode + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text.HAL_SYSCFG_StrobeDBattpinsConfig + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data.uwTickFreq + 0x0000000000000000 0x1 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .data.uwTickPrio + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .bss.uwTick 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_info 0x0000000000000000 0xc4e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x308 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_loc 0x0000000000000000 0x1f9 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x130 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_ranges 0x0000000000000000 0x120 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_line 0x0000000000000000 0x823 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_str 0x0000000000000000 0xbaa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .debug_frame 0x0000000000000000 0x280 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_DeInit + 0x0000000000000000 0xb4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_OscConfig + 0x0000000000000000 0x4b0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_MCOConfig + 0x0000000000000000 0x68 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_ClockConfig + 0x0000000000000000 0x15c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetHCLKFreq + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetPCLK1Freq + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetOscConfig + 0x0000000000000000 0xa0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetClockConfig + 0x0000000000000000 0x34 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_EnableCSS + 0x0000000000000000 0x14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_EnableLSECSS + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_DisableLSECSS + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_CSSCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_LSECSSCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_NMI_IRQHandler + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text.HAL_RCC_GetResetSource + 0x0000000000000000 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_PeriphCLKConfig + 0x0000000000000000 0x2d0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x0000000000000000 0xa8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x0000000000000000 0x534 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_EnableLSCO + 0x0000000000000000 0x98 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_DisableLSCO + 0x0000000000000000 0x74 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSConfig + 0x0000000000000000 0x54 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSGetSynchronizationInfo + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRSWaitSynchronization + 0x0000000000000000 0x84 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_SyncOkCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_SyncWarnCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_ExpectedSyncCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_ErrorCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text.HAL_RCCEx_CRS_IRQHandler + 0x0000000000000000 0x6c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_info 0x0000000000000000 0xc24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_abbrev 0x0000000000000000 0x2d6 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_loc 0x0000000000000000 0x8e8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_aranges + 0x0000000000000000 0x88 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_ranges 0x0000000000000000 0xe0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_line 0x0000000000000000 0x106a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_str 0x0000000000000000 0xa16 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .comment 0x0000000000000000 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .debug_frame 0x0000000000000000 0x154 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_MspDeInit + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DeInit + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DataOutStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DataInStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_SetupStageCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ResetCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_SuspendCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ResumeCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ISOOUTIncompleteCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ISOINIncompleteCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ConnectCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DisconnectCallback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DevConnect + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DevDisconnect + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_EP_Abort + 0x0000000000000000 0x24 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_EP_Flush + 0x0000000000000000 0x34 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_ActivateRemoteWakeup + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_DeActivateRemoteWakeup + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_GetState + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_ActivateBCD + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_DeActivateBCD + 0x0000000000000000 0x16 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_DeActivateLPM + 0x0000000000000000 0x1e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_BCD_Callback + 0x0000000000000000 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text.HAL_PCDEx_BCD_VBUSDetect + 0x0000000000000000 0x90 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_CoreInit + 0x0000000000000000 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_SetCurrentMode + 0x0000000000000000 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_FlushTxFifo + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_FlushRxFifo + 0x0000000000000000 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_EPStopXfer + 0x0000000000000000 0x64 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_StopDevice + 0x0000000000000000 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_ActivateRemoteWakeup + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_DeActivateRemoteWakeup + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HostInit + 0x0000000000000000 0x3c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_ResetPort + 0x0000000000000000 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_GetHostSpeed + 0x0000000000000000 0xa modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_GetCurrentFrame + 0x0000000000000000 0x8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_DoubleBuffer + 0x0000000000000000 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_Init + 0x0000000000000000 0x78 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_StartXfer + 0x0000000000000000 0x2cc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_IN_Halt + 0x0000000000000000 0x1c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_HC_OUT_Halt + 0x0000000000000000 0x1c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text.USB_StopHost + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .text 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .data 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .bss 0x0000000000000000 0x0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_Init1msTick + 0x0000000000000000 0x20 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_mDelay + 0x0000000000000000 0x2c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_SetSystemCoreClock + 0x0000000000000000 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.UTILS_EnablePLLAndSwitchSystem + 0x0000000000000000 0xa8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_PLL_ConfigSystemClock_HSI + 0x0000000000000000 0x80 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text.LL_PLL_ConfigSystemClock_HSE + 0x0000000000000000 0x90 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_state_init + 0x0000000000000000 0x2 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_init + 0x0000000000000000 0x16 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_deinit + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x0000000000000000 0x64 zephyr/kernel/libkernel.a(init.c.obj) + .data.state.1 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.unpend_thread_no_timeout + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.put_msg_in_queue + 0x0000000000000000 0xcc zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.k_msgq_init + 0x0000000000000000 0x1e zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_alloc_init + 0x0000000000000000 0x68 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.k_msgq_cleanup + 0x0000000000000000 0x2c zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_put + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_put_front + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_get_attrs + 0x0000000000000000 0xe zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_get + 0x0000000000000000 0xb8 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_peek + 0x0000000000000000 0x2e zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_peek_at + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text.z_impl_k_msgq_purge + 0x0000000000000000 0x80 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_info 0x0000000000000000 0x1cc0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_abbrev 0x0000000000000000 0x539 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_loc 0x0000000000000000 0x1025 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_aranges + 0x0000000000000000 0x78 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_ranges 0x0000000000000000 0x2e0 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_line 0x0000000000000000 0x11be zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_str 0x0000000000000000 0x9ad zephyr/kernel/libkernel.a(msg_q.c.obj) + .comment 0x0000000000000000 0x21 zephyr/kernel/libkernel.a(msg_q.c.obj) + .debug_frame 0x0000000000000000 0x148 zephyr/kernel/libkernel.a(msg_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x0000000000000000 0x68 zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x0000000000000000 0x2 zephyr/kernel/libkernel.a(work.c.obj) + .text.unschedule_locked + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x0000000000000000 0x64 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_sync_locked + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x0000000000000000 0x74 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_submit + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x0000000000000000 0x56 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_run + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x0000000000000000 0x70 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x0000000000000000 0x86 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init_delayable + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule_for_queue + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x0000000000000000 0x54 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x0000000000000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x0000000000000000 0x5c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x0000000000000000 0x5e zephyr/kernel/libkernel.a(work.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x0000000000000000 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.1 + 0x0000000000000000 0x3 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x0000000000000000 0x84 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x0000000000000000 0xe zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x41 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string.0 + 0x0000000000000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_move_thread_to_end_of_prio_q + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x0000000000000000 0xe0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x0000000000000000 0x28 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_thread + 0x0000000000000000 0x12 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x0000000000000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unpend_all + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x0000000000000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x0000000000000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x0000000000000000 0x50 zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x0000000000000000 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x0000000000000000 0x3a zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x0000000000000000 0x38 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.timeout_rem + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x0000000000000000 0x36 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x0000000000000000 0x30 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_calc + 0x0000000000000000 0x42 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_timeout + 0x0000000000000000 0x4c zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x0000000000000000 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.lock 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_cas + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_ptr_cas + 0x0000000000000000 0x26 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.atomic_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.atomic_ptr_get + 0x0000000000000000 0x4 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_ptr_set + 0x0000000000000000 0x18 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_or + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_xor + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_and + 0x0000000000000000 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text.z_impl_atomic_nand + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(atomic_c.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_alloc_helper + 0x0000000000000000 0x32 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_alloc_helper + 0x0000000000000000 0x34 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_free 0x0000000000000000 0x12 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_aligned_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_malloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_calloc + 0x0000000000000000 0x56 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_realloc + 0x0000000000000000 0x42 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_aligned_alloc + 0x0000000000000000 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_malloc + 0x0000000000000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .text 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x0000000000000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.z_heap_alloc_helper + 0x0000000000000000 0x6e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_array_get + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x0000000000000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x0000000000000000 0x5a zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x0000000000000000 0x6e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_free + 0x0000000000000000 0x32 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x0000000000000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .data 0x0000000000000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .bss 0x0000000000000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .text 0x0000000000000000 0x14 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .tbss.errno 0x0000000000000000 0x4 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .text.strchr 0x0000000000000000 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x0000000000000000 0x40 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x0000000000000000 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x0000000000000000 0x14 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_ungetc + 0x0000000000000000 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x0000000000000000 0x2a c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x0000000000000000 0x2a c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x0000000000000000 0xc c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x0000000000000000 0x394 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x0000000000000000 0x94 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x0000000000000000 0x42 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x0000000000000000 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x0000000000000000 0x32 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x0000000000000000 0x2c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .text.__picolibc_non_atomic_compare_exchange_ungetc + 0x0000000000000000 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .debug_frame 0x0000000000000000 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .text 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .data 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .bss 0x0000000000000000 0x0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .text.__picolibc_non_atomic_exchange_ungetc + 0x0000000000000000 0x8 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .debug_frame 0x0000000000000000 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .text 0x0000000000000000 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .text 0x0000000000000000 0x74 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .text 0x0000000000000000 0x48 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .text 0x0000000000000000 0x44 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .text 0x0000000000000000 0xe c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .debug_frame 0x0000000000000000 0x28 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .text 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x38 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x3c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .text 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .text 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .ARM.extab 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .text 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .text 0x0000000000000000 0x4e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .text 0x0000000000000000 0x9c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .text 0x0000000000000000 0xa0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .text 0x0000000000000000 0x5e0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .text 0x0000000000000000 0x504 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .text 0x0000000000000000 0x454 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .text 0x0000000000000000 0x628 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .text 0x0000000000000000 0x54 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .text 0x0000000000000000 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .debug_frame 0x0000000000000000 0x28 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .text 0x0000000000000000 0x84 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .text 0x0000000000000000 0x118 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .debug_frame 0x0000000000000000 0x34 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .text 0x0000000000000000 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .text 0x0000000000000000 0x7c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .text 0x0000000000000000 0x38 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .text 0x0000000000000000 0x142 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.extab 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.exidx 0x0000000000000000 0x8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x84 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .text 0x0000000000000000 0xec c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .text 0x0000000000000000 0xf0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .debug_frame 0x0000000000000000 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .text 0x0000000000000000 0x64 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .data 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .bss 0x0000000000000000 0x0 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + .debug_frame 0x0000000000000000 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x0000000008000000 0x0000000000080000 xr +RAM 0x0000000020000000 0x0000000000024000 xw +SRAM0 0x0000000020000000 0x0000000000024000 rw +IDT_LIST 0x00000000ffff7fff 0x0000000000008000 xw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + + 0x0000000008008adc vfprintf = __l_vfprintf + 0x0000000000000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/arm/core/libarch__arm__core.a +LOAD zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a +LOAD zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a +LOAD zephyr/drivers/usb/device/libdrivers__usb__device.a +LOAD zephyr/drivers/can/libdrivers__can.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/hwinfo/libdrivers__hwinfo.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/reset/libdrivers__reset.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a +LOAD c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a + 0x0000000000000004 _region_min_align = 0x4 + +.rel.plt 0x0000000008000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + .rel.iplt 0x0000000008000000 0x0 app/libapp.a(main.c.obj) + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x0000000000000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.plt)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.iplt)) + 0x0000000008000000 __rom_region_start = 0x8000000 + +rom_start 0x0000000008000000 0xbc + 0x0000000008000000 __rom_start_address = . + FILL mask 0x00 + 0x0000000008000000 . = (. + (0x0 - (. - __rom_start_address))) + 0x0000000008000000 . = ALIGN (0x4) + 0x0000000008000000 . = ALIGN (0x100) + 0x0000000008000000 . = ALIGN (0x100) + 0x0000000008000000 _vector_start = . + *(SORT_BY_ALIGNMENT(.exc_vector_table)) + *(SORT_BY_ALIGNMENT(.exc_vector_table.*)) + .exc_vector_table._vector_table_section + 0x0000000008000000 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + 0x0000000008000000 _vector_table + *(SORT_BY_ALIGNMENT(.vectors)) + 0x00000000080000bc _vector_end = . + 0x0000000008000040 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.irq_vector_table*)) + .gnu.linkonce.irq_vector_table + 0x0000000008000040 0x7c zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x0000000008000040 _irq_vector_table + 0x00000000080000bc _vector_end = . + +text 0x00000000080000bc 0xa8d4 + 0x00000000080000bc __text_region_start = . + *(SORT_BY_ALIGNMENT(.text)) + .text 0x00000000080000bc 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + 0x00000000080000bc __gnu_thumb1_case_sqi + .text 0x00000000080000d0 0x14 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + 0x00000000080000d0 __gnu_thumb1_case_uqi + .text 0x00000000080000e4 0x8c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + 0x00000000080000e4 __aeabi_uidiv + 0x00000000080000e4 __udivsi3 + 0x000000000800015c __aeabi_uidivmod + .text 0x0000000008000170 0xa8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + 0x0000000008000170 __divsi3 + 0x0000000008000170 __aeabi_idiv + 0x0000000008000204 __aeabi_idivmod + .text 0x0000000008000218 0x4 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + 0x0000000008000218 __aeabi_idiv0 + 0x0000000008000218 __aeabi_ldiv0 + .text 0x000000000800021c 0x3c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + 0x000000000800021c __clzsi2 + .text 0x0000000008000258 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + 0x0000000008000258 __ctzsi2 + .text 0x0000000008000298 0x40 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + 0x0000000008000298 __aeabi_uldivmod + .text 0x00000000080002d8 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + 0x00000000080002d8 __lshrdi3 + 0x00000000080002d8 __aeabi_llsr + .text 0x00000000080002f0 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + 0x00000000080002f0 __aeabi_llsl + 0x00000000080002f0 __ashldi3 + .text 0x0000000008000308 0x18 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + 0x0000000008000308 __clzdi2 + .text 0x0000000008000320 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + 0x0000000008000320 strcpy + .text 0x0000000008000330 0xe c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + 0x0000000008000330 strlen + .text 0x000000000800033e 0xde c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + 0x000000000800033e __udivmoddi4 + *(SORT_BY_ALIGNMENT(.text.*)) + .text.main 0x000000000800041c 0xd4 app/libapp.a(main.c.obj) + 0x000000000800041c main + .text.cdc_handler_init + 0x00000000080004f0 0x38 app/libapp.a(cdc_handler.c.obj) + 0x00000000080004f0 cdc_handler_init + .text.cdc_handler_process + 0x0000000008000528 0x158 app/libapp.a(cdc_handler.c.obj) + 0x0000000008000528 cdc_handler_process + .text.gpio_pin_configure_dt.constprop.0 + 0x0000000008000680 0x4c app/libapp.a(pfet_control.c.obj) + .text.pfet_control_init + 0x00000000080006cc 0x84 app/libapp.a(pfet_control.c.obj) + 0x00000000080006cc pfet_control_init + .text.pfet_set_state + 0x0000000008000750 0xa0 app/libapp.a(pfet_control.c.obj) + 0x0000000008000750 pfet_set_state + .text.pfet_get_state + 0x00000000080007f0 0x20 app/libapp.a(pfet_control.c.obj) + 0x00000000080007f0 pfet_get_state + .text.can_rx_callback + 0x0000000008000810 0xb8 app/libapp.a(gs_usb_can.c.obj) + .text.gs_usb_can_init + 0x00000000080008c8 0x98 app/libapp.a(gs_usb_can.c.obj) + 0x00000000080008c8 gs_usb_can_init + .text.gs_usb_send_frame_to_host + 0x0000000008000960 0x38 app/libapp.a(usb_gs_usb_class.c.obj) + 0x0000000008000960 gs_usb_send_frame_to_host + .text.usb_gs_usb_init + 0x0000000008000998 0x44 app/libapp.a(usb_gs_usb_class.c.obj) + 0x0000000008000998 usb_gs_usb_init + .text.cbvprintf_package + 0x00000000080009dc 0x3b8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x00000000080009dc cbvprintf_package + .text.cbprintf_package_convert + 0x0000000008000d94 0x430 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x0000000008000d94 cbprintf_package_convert + .text.__printk_hook_install + 0x00000000080011c4 0xc zephyr/libzephyr.a(printk.c.obj) + 0x00000000080011c4 __printk_hook_install + .text.z_thread_entry + 0x00000000080011d0 0x30 zephyr/libzephyr.a(thread_entry.c.obj) + 0x00000000080011d0 z_thread_entry + .text.st_stm32_common_config + 0x0000000008001200 0x3c zephyr/libzephyr.a(soc_config.c.obj) + .text.soc_early_init_hook + 0x000000000800123c 0x4c zephyr/libzephyr.a(soc.c.obj) + 0x000000000800123c soc_early_init_hook + .text.activate_foreach_backend + 0x0000000008001288 0x58 zephyr/libzephyr.a(log_core.c.obj) + .text.enable_logger + 0x00000000080012e0 0x5c zephyr/libzephyr.a(log_core.c.obj) + .text.log_process_thread_timer_expiry_fn + 0x000000000800133c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_init + 0x000000000800134c 0x90 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_func_t_get + 0x00000000080013dc 0xc zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080013dc log_format_func_t_get + .text.log_set_timestamp_func + 0x00000000080013e8 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080013e8 log_set_timestamp_func + .text.z_log_notify_backend_enabled + 0x0000000008001408 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001408 z_log_notify_backend_enabled + .text.z_log_dropped + 0x0000000008001428 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001428 z_log_dropped + .text.z_log_dropped_read_and_clear + 0x000000000800145c 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800145c z_log_dropped_read_and_clear + .text.dropped_notify + 0x000000000800146c 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800146c dropped_notify + .text.z_log_msg_init + 0x00000000080014a0 0x20 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080014a0 z_log_msg_init + .text.log_core_init + 0x00000000080014c0 0x50 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080014c0 log_core_init + .text.z_log_msg_alloc + 0x0000000008001510 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001510 z_log_msg_alloc + .text.z_log_msg_local_claim + 0x0000000008001528 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001528 z_log_msg_local_claim + .text.z_log_msg_free + 0x0000000008001538 0x14 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001538 z_log_msg_free + .text.z_log_msg_pending + 0x000000000800154c 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800154c z_log_msg_pending + .text.z_impl_log_process + 0x000000000800155c 0x9c zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800155c z_impl_log_process + .text.z_impl_log_panic + 0x00000000080015f8 0x48 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000080015f8 z_impl_log_panic + .text.log_process_thread_func + 0x0000000008001640 0xa4 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_post_finalize + 0x00000000080016e4 0x70 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_commit + 0x0000000008001754 0x24 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008001754 z_log_msg_commit + .text.log_source_name_get + 0x0000000008001778 0x1c zephyr/libzephyr.a(log_mgmt.c.obj) + 0x0000000008001778 log_source_name_get + .text.z_log_msg_simple_create + 0x0000000008001794 0x70 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_impl_z_log_msg_static_create + 0x0000000008001804 0x130 zephyr/libzephyr.a(log_msg.c.obj) + 0x0000000008001804 z_impl_z_log_msg_static_create + .text.z_log_msg_runtime_vcreate + 0x0000000008001934 0x9c zephyr/libzephyr.a(log_msg.c.obj) + 0x0000000008001934 z_log_msg_runtime_vcreate + .text.log_msg_get_source_id + 0x00000000080019d0 0x1c zephyr/libzephyr.a(log_msg.c.obj) + 0x00000000080019d0 log_msg_get_source_id + .text.print_formatted + 0x00000000080019ec 0x20 zephyr/libzephyr.a(log_output.c.obj) + .text.newline_print + 0x0000000008001a0c 0x20 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_process + 0x0000000008001a2c 0x2cc zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001a2c log_output_process + .text.log_output_dropped_process + 0x0000000008001cf8 0x58 zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001cf8 log_output_dropped_process + .text.log_output_timestamp_freq_set + 0x0000000008001d50 0x34 zephyr/libzephyr.a(log_output.c.obj) + 0x0000000008001d50 log_output_timestamp_freq_set + .text.char_out + 0x0000000008001d84 0x24 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.class_handler + 0x0000000008001da8 0x54 zephyr/libzephyr.a(usb_device.c.obj) + .text.custom_handler + 0x0000000008001dfc 0x68 zephyr/libzephyr.a(usb_device.c.obj) + .text.vendor_handler + 0x0000000008001e64 0x38 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_reset_alt_setting + 0x0000000008001e9c 0x14 zephyr/libzephyr.a(usb_device.c.obj) + .text.is_ep_valid.part.0 + 0x0000000008001eb0 0x34 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_halt_endpoint_req + 0x0000000008001ee4 0x7c zephyr/libzephyr.a(usb_device.c.obj) + .text.get_ep_bm_from_addr.part.0 + 0x0000000008001f60 0x1c zephyr/libzephyr.a(usb_device.c.obj) + .text.disable_endpoint + 0x0000000008001f7c 0x54 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_request.constprop.0 + 0x0000000008001fd0 0x30 zephyr/libzephyr.a(usb_device.c.obj) + .text.forward_status_cb + 0x0000000008002000 0xa8 zephyr/libzephyr.a(usb_device.c.obj) + .text.set_endpoint + 0x00000000080020a8 0xd0 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_standard_request + 0x0000000008002178 0x330 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_write + 0x00000000080024a8 0x44 zephyr/libzephyr.a(usb_device.c.obj) + 0x00000000080024a8 usb_write + .text.usb_data_to_host + 0x00000000080024ec 0x5c zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_handle_control_transfer + 0x0000000008002548 0xf8 zephyr/libzephyr.a(usb_device.c.obj) + .text.usb_set_config + 0x0000000008002640 0x2c zephyr/libzephyr.a(usb_device.c.obj) + 0x0000000008002640 usb_set_config + .text.usb_enable + 0x000000000800266c 0x16c zephyr/libzephyr.a(usb_device.c.obj) + 0x000000000800266c usb_enable + .text.usb_update_sn_string_descriptor + 0x00000000080027d8 0x74 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x00000000080027d8 usb_update_sn_string_descriptor + .text.usb_get_device_descriptor + 0x000000000800284c 0x264 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000000800284c usb_get_device_descriptor + .text.usb_ep_get_transfer + 0x0000000008002ab0 0x2c zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_transfer_work + 0x0000000008002adc 0xf0 zephyr/libzephyr.a(usb_transfer.c.obj) + .text.usb_cancel_transfer + 0x0000000008002bcc 0x34 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002bcc usb_cancel_transfer + .text.usb_cancel_transfers + 0x0000000008002c00 0x40 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002c00 usb_cancel_transfers + .text.usb_transfer_init + 0x0000000008002c40 0x30 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x0000000008002c40 usb_transfer_init + .text.arch_bss_zero + 0x0000000008002c70 0x18 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x0000000008002c70 arch_bss_zero + .text.arch_data_copy + 0x0000000008002c88 0x34 zephyr/arch/common/libarch__common.a(xip.c.obj) + 0x0000000008002c88 arch_data_copy + .text.z_arm_fatal_error + 0x0000000008002cbc 0xb8 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x0000000008002cbc z_arm_fatal_error + .text.z_SysNmiOnReset + 0x0000000008002d74 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x0000000008002d74 z_SysNmiOnReset + .text.arch_tls_stack_setup + 0x0000000008002d78 0x38 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000008002d78 arch_tls_stack_setup + .text._HandlerModeExit + 0x0000000008002db0 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x0000000008002db0 z_arm_int_exit + 0x0000000008002db0 z_arm_exc_exit + .text.z_arm_fault + 0x0000000008002dd0 0x138 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000008002dd0 z_arm_fault + .text.z_arm_fault_init + 0x0000000008002f08 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0x0000000008002f08 z_arm_fault_init + .text.__fault 0x0000000008002f18 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0x0000000008002f18 z_arm_hard_fault + 0x0000000008002f18 z_arm_exc_spurious + .text._reset_section + 0x0000000008002f2c 0x34 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x0000000008002f2c __start + 0x0000000008002f2c z_arm_reset + .text.z_impl_k_thread_abort + 0x0000000008002f60 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x0000000008002f60 z_impl_k_thread_abort + .text.z_arm_pendsv + 0x0000000008002f98 0x70 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000008002f98 z_arm_pendsv + .text.z_arm_svc + 0x0000000008003008 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0x0000000008003008 z_arm_svc + .text.arm_irq_enable + 0x0000000008003030 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003030 arm_irq_enable + .text.arm_irq_disable + 0x0000000008003048 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003048 arm_irq_disable + .text.arm_irq_priority_set + 0x0000000008003068 0x54 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x0000000008003068 arm_irq_priority_set + .text.relocate_vector_table + 0x00000000080030bc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x00000000080030bc relocate_vector_table + .text.arch_new_thread + 0x00000000080030d8 0x2c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x00000000080030d8 arch_new_thread + .text.arch_switch_to_main_thread + 0x0000000008003104 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000008003104 arch_switch_to_main_thread + .text.z_arm_cpu_idle_init + 0x000000000800313c 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000800313c z_arm_cpu_idle_init + .text.z_arm_interrupt_init + 0x0000000008003148 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x0000000008003148 z_arm_interrupt_init + .text._isr_wrapper + 0x0000000008003178 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x0000000008003178 _isr_wrapper + .text.cbvprintf + 0x0000000008003198 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x0000000008003198 cbvprintf + .text.z_impl_zephyr_fputc + 0x00000000080031d0 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x00000000080031d0 z_impl_zephyr_fputc + .text.__stdout_hook_install + 0x00000000080031e0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x00000000080031e0 __stdout_hook_install + .text.malloc_prepare + 0x00000000080031f8 0x24 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.stm32_intc_gpio_isr + 0x000000000800321c 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text.stm32_exti_gpio_intc_init + 0x0000000008003264 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .text.stm32_gpio_intc_enable_line + 0x00000000080032a4 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032a4 stm32_gpio_intc_enable_line + .text.stm32_gpio_intc_disable_line + 0x00000000080032d4 0x10 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032d4 stm32_gpio_intc_disable_line + .text.stm32_gpio_intc_select_line_trigger + 0x00000000080032e4 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080032e4 stm32_gpio_intc_select_line_trigger + .text.stm32_gpio_intc_set_irq_callback + 0x000000000800332c 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800332c stm32_gpio_intc_set_irq_callback + .text.stm32_gpio_intc_remove_irq_callback + 0x000000000800336c 0x24 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800336c stm32_gpio_intc_remove_irq_callback + .text.stm32_exti_set_line_src_port + 0x0000000008003390 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x0000000008003390 stm32_exti_set_line_src_port + .text.stm32_exti_get_line_src_port + 0x00000000080033c0 0x28 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x00000000080033c0 stm32_exti_get_line_src_port + .text.stm32_exti_init + 0x00000000080033e8 0x48 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .text.stm32_exti_is_pending + 0x0000000008003430 0x54 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x0000000008003430 stm32_exti_is_pending + .text.stm32_exti_clear_pending + 0x0000000008003484 0x40 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x0000000008003484 stm32_exti_clear_pending + .text.usb_dc_stm32_get_ep_state + 0x00000000080034c4 0x2c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_stm32_isr + 0x00000000080034f0 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_read_continue.part.0 + 0x0000000008003500 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_get_read_count.part.0 + 0x000000000800351c 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_attach + 0x0000000008003538 0x1c8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003538 usb_dc_attach + .text.usb_dc_set_status_callback + 0x0000000008003700 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003700 usb_dc_set_status_callback + .text.usb_dc_set_address + 0x0000000008003710 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003710 usb_dc_set_address + .text.usb_dc_ep_start_read + 0x0000000008003744 0x70 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003744 usb_dc_ep_start_read + .text.usb_dc_ep_get_read_count + 0x00000000080037b4 0x28 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080037b4 usb_dc_ep_get_read_count + .text.usb_dc_ep_check_cap + 0x00000000080037dc 0x34 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080037dc usb_dc_ep_check_cap + .text.usb_dc_ep_configure + 0x0000000008003810 0x94 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003810 usb_dc_ep_configure + .text.usb_dc_ep_set_stall + 0x00000000080038a4 0x44 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080038a4 usb_dc_ep_set_stall + .text.usb_dc_ep_clear_stall + 0x00000000080038e8 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080038e8 usb_dc_ep_clear_stall + .text.usb_dc_ep_enable + 0x0000000008003934 0x60 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003934 usb_dc_ep_enable + .text.usb_dc_ep_disable + 0x0000000008003994 0x5c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003994 usb_dc_ep_disable + .text.usb_dc_ep_write + 0x00000000080039f0 0xd8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080039f0 usb_dc_ep_write + .text.usb_dc_ep_read_wait + 0x0000000008003ac8 0x90 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003ac8 usb_dc_ep_read_wait + .text.usb_dc_ep_read_continue + 0x0000000008003b58 0x38 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003b58 usb_dc_ep_read_continue + .text.HAL_PCD_ResetCallback + 0x0000000008003b90 0x4c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003b90 HAL_PCD_ResetCallback + .text.HAL_PCD_SuspendCallback + 0x0000000008003bdc 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003bdc HAL_PCD_SuspendCallback + .text.HAL_PCD_ResumeCallback + 0x0000000008003bf8 0x1c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003bf8 HAL_PCD_ResumeCallback + .text.HAL_PCD_SetupStageCallback + 0x0000000008003c14 0x58 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008003c14 HAL_PCD_SetupStageCallback + .text.can_calc_timing_internal + 0x0000000008003c6c 0x1f0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.can_add_rx_filter + 0x0000000008003e5c 0x9c zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003e5c can_add_rx_filter + .text.z_impl_can_calc_timing + 0x0000000008003ef8 0x28 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003ef8 z_impl_can_calc_timing + .text.z_impl_can_calc_timing_data + 0x0000000008003f20 0x28 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008003f20 z_impl_can_calc_timing_data + .text.can_mcan_read_reg + 0x0000000008003f48 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008003f48 can_mcan_read_reg + .text.can_mcan_write_reg + 0x0000000008003f74 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008003f74 can_mcan_write_reg + .text.can_mcan_get_message + 0x0000000008003fa0 0x158 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_exit_sleep_mode + 0x00000000080040f8 0x94 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_set_timing + 0x000000000800418c 0x64 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x000000000800418c can_mcan_set_timing + .text.can_mcan_start + 0x00000000080041f0 0xfc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080041f0 can_mcan_start + .text.can_mcan_set_mode + 0x00000000080042ec 0xc8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080042ec can_mcan_set_mode + .text.can_mcan_line_1_isr + 0x00000000080043b4 0x8c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080043b4 can_mcan_line_1_isr + .text.can_mcan_line_0_isr + 0x0000000008004440 0x1b0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004440 can_mcan_line_0_isr + .text.can_mcan_send + 0x00000000080045f0 0x220 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080045f0 can_mcan_send + .text.can_mcan_add_rx_filter_std + 0x0000000008004810 0xcc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004810 can_mcan_add_rx_filter_std + .text.can_mcan_add_rx_filter + 0x00000000080048dc 0x114 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080048dc can_mcan_add_rx_filter + .text.can_mcan_remove_rx_filter + 0x00000000080049f0 0xa4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x00000000080049f0 can_mcan_remove_rx_filter + .text.can_mcan_stop + 0x0000000008004a94 0xb0 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004a94 can_mcan_stop + .text.can_mcan_init + 0x0000000008004b44 0x1b4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008004b44 can_mcan_init + .text.can_stm32fd_remap_reg + 0x0000000008004cf8 0xc0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_read_reg + 0x0000000008004db8 0x8c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_write_reg + 0x0000000008004e44 0x8c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_init + 0x0000000008004ed0 0x118 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_get_core_clock + 0x0000000008004fe8 0x88 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.LL_RCC_HSI_IsReady + 0x0000000008005070 0x10 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_on + 0x0000000008005080 0x40 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_off + 0x00000000080050c0 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_get_subsys_rate + 0x00000000080050f0 0x98 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.enabled_clock + 0x0000000008005188 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008005188 enabled_clock + .text.stm32_clock_control_configure + 0x00000000080051a4 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_get_status + 0x00000000080051fc 0x34 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .text.stm32_clock_control_init + 0x0000000008005230 0x178 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008005230 stm32_clock_control_init + .text.get_pllsrc_frequency + 0x00000000080053a8 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053a8 get_pllsrc_frequency + .text.config_pll_sysclock + 0x00000000080053b0 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053b0 config_pll_sysclock + .text.config_enable_default_clocks + 0x00000000080053d8 0x48 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x00000000080053d8 config_enable_default_clocks + .text.uart_console_init + 0x0000000008005420 0x2c zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.console_out + 0x000000000800544c 0x28 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.gpio_stm32_pin_interrupt_configure + 0x0000000008005474 0xb0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_init + 0x0000000008005524 0x3c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.z_impl_hwinfo_get_device_id + 0x0000000008005560 0x3c zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + 0x0000000008005560 z_impl_hwinfo_get_device_id + .text.pinctrl_configure_pins + 0x000000000800559c 0x8c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + 0x000000000800559c pinctrl_configure_pins + .text.uart_stm32_config_get + 0x0000000008005628 0xa4 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_set_baudrate + 0x00000000080056cc 0xac zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_parameters_set + 0x0000000008005778 0x168 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_init + 0x00000000080058e0 0x220 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_configure + 0x0000000008005b00 0x17c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.elapsed 0x0000000008005c7c 0x54 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_driver_init + 0x0000000008005cd0 0x40 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .text.sys_clock_isr + 0x0000000008005d10 0x58 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005d10 sys_clock_isr + .text.sys_clock_set_timeout + 0x0000000008005d68 0x114 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005d68 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x0000000008005e7c 0x34 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005e7c sys_clock_elapsed + .text.sys_clock_cycle_get_32 + 0x0000000008005eb0 0x24 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x0000000008005eb0 sys_clock_cycle_get_32 + .text.HAL_RCC_GetSysClockFreq + 0x0000000008005ed4 0x88 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + 0x0000000008005ed4 HAL_RCC_GetSysClockFreq + .text.PCD_GET_EP_DBUF0_CNT.constprop.0 + 0x0000000008005f5c 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.PCD_GET_EP_RX_CNT.constprop.0 + 0x0000000008005f84 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .text.HAL_PCD_Init + 0x0000000008005fac 0xa0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x0000000008005fac HAL_PCD_Init + .text.HAL_PCD_IRQHandler + 0x000000000800604c 0x9d8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800604c HAL_PCD_IRQHandler + .text.USB_EnableGlobalInt + 0x0000000008006a24 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a24 USB_EnableGlobalInt + .text.USB_DisableGlobalInt + 0x0000000008006a34 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a34 USB_DisableGlobalInt + .text.USB_ActivateEndpoint + 0x0000000008006a44 0x2ac modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006a44 USB_ActivateEndpoint + .text.USB_DeactivateEndpoint + 0x0000000008006cf0 0x128 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006cf0 USB_DeactivateEndpoint + .text.USB_EPSetStall + 0x0000000008006e18 0x3c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006e18 USB_EPSetStall + .text.USB_EPClearStall + 0x0000000008006e54 0x8c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006e54 USB_EPClearStall + .text.USB_DevDisconnect + 0x0000000008006ee0 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006ee0 USB_DevDisconnect + .text.USB_WritePMA + 0x0000000008006ef0 0x68 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006ef0 USB_WritePMA + .text.USB_EPStartXfer + 0x0000000008006f58 0x588 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x0000000008006f58 USB_EPStartXfer + .text.USB_ReadPMA + 0x00000000080074e0 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x00000000080074e0 USB_ReadPMA + .text.LL_SetFlashLatency + 0x000000000800753c 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + 0x000000000800753c LL_SetFlashLatency + .text.k_sys_fatal_error_handler + 0x000000000800758c 0x20 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000800758c k_sys_fatal_error_handler + .text.z_fatal_error + 0x00000000080075ac 0xf4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x00000000080075ac z_fatal_error + .text.z_sys_init_run_level + 0x00000000080076a0 0x34 zephyr/kernel/libkernel.a(init.c.obj) + .text.bg_thread_main + 0x00000000080076d4 0xa8 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_init_cpu + 0x000000000800777c 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000800777c z_init_cpu + .text.z_cstart + 0x00000000080077e4 0xb4 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000080077e4 z_cstart + .text.z_impl_k_mutex_lock + 0x0000000008007898 0xf0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x0000000008007898 z_impl_k_mutex_lock + .text.z_impl_k_mutex_unlock + 0x0000000008007988 0x98 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x0000000008007988 z_impl_k_mutex_unlock + .text.z_impl_k_sem_give + 0x0000000008007a20 0x64 zephyr/kernel/libkernel.a(sem.c.obj) + 0x0000000008007a20 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x0000000008007a84 0x4c zephyr/kernel/libkernel.a(sem.c.obj) + 0x0000000008007a84 z_impl_k_sem_take + .text.k_sys_work_q_init + 0x0000000008007ad0 0x28 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text.work_queue_main + 0x0000000008007af8 0x144 zephyr/kernel/libkernel.a(work.c.obj) + .text.submit_to_queue_locked + 0x0000000008007c3c 0xd4 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_start + 0x0000000008007d10 0x88 zephyr/kernel/libkernel.a(work.c.obj) + 0x0000000008007d10 k_work_queue_start + .text.z_setup_new_thread + 0x0000000008007d98 0x74 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007d98 z_setup_new_thread + .text.z_impl_k_thread_create + 0x0000000008007e0c 0x58 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007e0c z_impl_k_thread_create + .text.z_dummy_thread_init + 0x0000000008007e64 0x18 zephyr/kernel/libkernel.a(thread.c.obj) + 0x0000000008007e64 z_dummy_thread_init + .text.z_swap_irqlock + 0x0000000008007e7c 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + .text.ready_thread + 0x0000000008007ea8 0x8c zephyr/kernel/libkernel.a(sched.c.obj) + .text.unready_thread + 0x0000000008007f34 0x58 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_thread_timeout + 0x0000000008007f8c 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + .text.move_thread_to_end_of_prio_q + 0x0000000008007fa4 0x98 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008007fa4 move_thread_to_end_of_prio_q + .text.z_pend_curr + 0x000000000800803c 0x38 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800803c z_pend_curr + .text.z_thread_prio_set + 0x0000000008008074 0xe8 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008074 z_thread_prio_set + .text.z_reschedule + 0x000000000800815c 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800815c z_reschedule + .text.z_reschedule_irqlock + 0x0000000008008188 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008188 z_reschedule_irqlock + .text.k_sched_lock + 0x00000000080081b4 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080081b4 k_sched_lock + .text.k_sched_unlock + 0x00000000080081d4 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080081d4 k_sched_unlock + .text.z_sched_init + 0x0000000008008234 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008234 z_sched_init + .text.z_impl_k_yield + 0x0000000008008248 0x84 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008248 z_impl_k_yield + .text.z_tick_sleep + 0x00000000080082cc 0x74 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_sleep + 0x0000000008008340 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008340 z_impl_k_sleep + .text.z_impl_k_wakeup + 0x0000000008008380 0x40 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000008008380 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x00000000080083c0 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080083c0 z_impl_k_sched_current_thread_query + .text.z_thread_abort + 0x00000000080083cc 0x12c zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080083cc z_thread_abort + .text.z_sched_wait + 0x00000000080084f8 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x00000000080084f8 z_sched_wait + .text.slice_timeout + 0x000000000800851c 0x20 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.thread_is_sliceable + 0x000000000800853c 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000800853c thread_is_sliceable + .text.z_reset_time_slice + 0x000000000800857c 0x4c zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x000000000800857c z_reset_time_slice + .text.z_time_slice + 0x00000000080085c8 0x58 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x00000000080085c8 z_time_slice + .text.first 0x0000000008008620 0x10 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.next_timeout + 0x0000000008008630 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.elapsed 0x0000000008008668 0x18 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.remove_timeout + 0x0000000008008680 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_add_timeout + 0x00000000080086b8 0x120 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080086b8 z_add_timeout + .text.sys_clock_announce + 0x00000000080087d8 0xd4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080087d8 sys_clock_announce + .text.sys_clock_tick_get + 0x00000000080088ac 0x2c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x00000000080088ac sys_clock_tick_get + .text.z_timer_expiration_handler + 0x00000000080088d8 0x108 zephyr/kernel/libkernel.a(timer.c.obj) + 0x00000000080088d8 z_timer_expiration_handler + .text.z_impl_k_timer_start + 0x00000000080089e0 0x68 zephyr/kernel/libkernel.a(timer.c.obj) + 0x00000000080089e0 z_impl_k_timer_start + .text.k_thread_system_pool_assign + 0x0000000008008a48 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + 0x0000000008008a48 k_thread_system_pool_assign + .text.boot_banner + 0x0000000008008a54 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + 0x0000000008008a54 boot_banner + .text.statics_init + 0x0000000008008a64 0x24 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.snprintf + 0x0000000008008a88 0x54 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + 0x0000000008008a88 snprintf + .text.__l_vfprintf + 0x0000000008008adc 0x4d0 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + 0x0000000008008adc __l_vfprintf + .text._OffsetAbsSyms + 0x0000000008008fac 0x2 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x0000000008008fac _OffsetAbsSyms + .text.gpio_pin_set_dt + 0x0000000008008fae 0x2e app/libapp.a(pfet_control.c.obj) + .text.chunk_size + 0x0000000008008fdc 0xa zephyr/libzephyr.a(heap.c.obj) + .text.free_list_add + 0x0000000008008fe6 0x4e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_init + 0x0000000008009034 0x74 zephyr/libzephyr.a(heap.c.obj) + 0x0000000008009034 sys_heap_init + .text.cbpprintf_external + 0x00000000080090a8 0x68 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x00000000080090a8 cbpprintf_external + .text.is_ptr 0x0000000008009110 0x4a zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x0000000008009110 is_ptr + .text.arch_printk_char_out + 0x000000000800915a 0x4 zephyr/libzephyr.a(printk.c.obj) + 0x000000000800915a arch_printk_char_out + .text.printk 0x000000000800915e 0x16 zephyr/libzephyr.a(printk.c.obj) + 0x000000000800915e printk + .text.free_space + 0x0000000008009174 0x2c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.get_usage + 0x00000000080091a0 0x22 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.idx_inc 0x00000000080091c2 0x1c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.rd_idx_inc + 0x00000000080091de 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.add_skip_item + 0x00000000080091f6 0x3a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.drop_item_locked + 0x0000000008009230 0xf0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.post_drop_action + 0x0000000008009320 0x38 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.max_utilization_update + 0x0000000008009358 0x1a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_init + 0x0000000008009372 0x42 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x0000000008009372 mpsc_pbuf_init + .text.mpsc_pbuf_alloc + 0x00000000080093b4 0xfc zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080093b4 mpsc_pbuf_alloc + .text.mpsc_pbuf_commit + 0x00000000080094b0 0x38 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080094b0 mpsc_pbuf_commit + .text.mpsc_pbuf_claim + 0x00000000080094e8 0xa2 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080094e8 mpsc_pbuf_claim + .text.mpsc_pbuf_free + 0x000000000800958a 0x72 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x000000000800958a mpsc_pbuf_free + .text.mpsc_pbuf_is_pending + 0x00000000080095fc 0x2e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x00000000080095fc mpsc_pbuf_is_pending + .text._ConfigAbsSyms + 0x000000000800962a 0x2 zephyr/libzephyr.a(configs.c.obj) + 0x000000000800962a _ConfigAbsSyms + .text.log_msg_generic_get_wlen + 0x000000000800962c 0x22 zephyr/libzephyr.a(log_core.c.obj) + .text.dummy_timestamp + 0x000000000800964e 0x4 zephyr/libzephyr.a(log_core.c.obj) + .text.atomic_inc + 0x0000000008009652 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.default_lf_get_timestamp + 0x000000000800965c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_vprintk + 0x000000000800966c 0x1a zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800966c z_log_vprintk + .text.z_log_notify_drop + 0x0000000008009686 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_get_tag + 0x0000000008009690 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000008009690 z_log_get_tag + .text.log_backend_enable + 0x0000000008009694 0x16 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x0000000008009694 log_backend_enable + .text.z_cbprintf_cpy + 0x00000000080096aa 0x32 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_log_msg_finalize + 0x00000000080096dc 0x32 zephyr/libzephyr.a(log_msg.c.obj) + 0x00000000080096dc z_log_msg_finalize + .text.z_impl_z_log_msg_simple_create_0 + 0x000000000800970e 0xe zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800970e z_impl_z_log_msg_simple_create_0 + .text.z_impl_z_log_msg_simple_create_1 + 0x000000000800971c 0x10 zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800971c z_impl_z_log_msg_simple_create_1 + .text.z_impl_z_log_msg_simple_create_2 + 0x000000000800972c 0x16 zephyr/libzephyr.a(log_msg.c.obj) + 0x000000000800972c z_impl_z_log_msg_simple_create_2 + .text.log_output_write + 0x0000000008009742 0x1e zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_flush + 0x0000000008009760 0x18 zephyr/libzephyr.a(log_output.c.obj) + .text.out_func + 0x0000000008009778 0x26 zephyr/libzephyr.a(log_output.c.obj) + .text.cr_out_func + 0x000000000800979e 0x1c zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_msg_process + 0x00000000080097ba 0x62 zephyr/libzephyr.a(log_output.c.obj) + 0x00000000080097ba log_output_msg_process + .text.format_set + 0x000000000800981c 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.log_backend_uart_init + 0x0000000008009828 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.panic 0x0000000008009834 0x32 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.dropped 0x0000000008009866 0xe zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.process 0x0000000008009874 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + .text.z_log_msg_simple_create_1 + 0x0000000008009890 0x8 zephyr/libzephyr.a(usb_device.c.obj) + .text.get_ep_bm_from_addr + 0x0000000008009898 0x26 zephyr/libzephyr.a(usb_device.c.obj) + .text.arch_early_memset + 0x00000000080098be 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x00000000080098be arch_early_memset + .text.arch_early_memcpy + 0x00000000080098c6 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x00000000080098c6 arch_early_memcpy + .text.z_do_kernel_oops + 0x00000000080098ce 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0x00000000080098ce z_do_kernel_oops + .text.z_arm_nmi + 0x00000000080098da 0xc zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x00000000080098da z_arm_nmi + .text.z_irq_spurious + 0x00000000080098e6 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x00000000080098e6 z_irq_spurious + .text.z_prep_c + 0x00000000080098f2 0x16 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x00000000080098f2 z_prep_c + .text.arch_coprocessors_disable + 0x0000000008009908 0x6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x0000000008009908 arch_coprocessors_disable + .text.arch_irq_unlock_outlined + 0x000000000800990e 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x000000000800990e arch_irq_unlock_outlined + .text.arch_cpu_idle + 0x000000000800991a 0xe zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x000000000800991a arch_cpu_idle + .text.cbputc 0x0000000008009928 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .text.picolibc_put + 0x0000000008009934 0xa zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.stm32_gpio_intc_get_pin_irq_line + 0x000000000800993e 0xa zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0x000000000800993e stm32_gpio_intc_get_pin_irq_line + .text.z_log_msg_simple_create_1.constprop.0 + 0x0000000008009948 0xe zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.z_log_msg_simple_create_0.constprop.0 + 0x0000000008009956 0xc zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .text.usb_dc_ep_set_callback + 0x0000000008009962 0x18 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008009962 usb_dc_ep_set_callback + .text.usb_dc_ep_is_stalled + 0x000000000800997a 0x1e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x000000000800997a usb_dc_ep_is_stalled + .text.usb_dc_ep_read + 0x0000000008009998 0x1e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x0000000008009998 usb_dc_ep_read + .text.usb_dc_ep_mps + 0x00000000080099b6 0x14 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099b6 usb_dc_ep_mps + .text.HAL_PCD_DataOutStageCallback + 0x00000000080099ca 0x2a zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099ca HAL_PCD_DataOutStageCallback + .text.HAL_PCD_DataInStageCallback + 0x00000000080099f4 0x22 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x00000000080099f4 HAL_PCD_DataInStageCallback + .text.check_timing_in_range + 0x0000000008009a16 0x5c zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .text.z_impl_can_set_timing + 0x0000000008009a72 0x24 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008009a72 z_impl_can_set_timing + .text.z_impl_can_set_timing_data + 0x0000000008009a96 0x2e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x0000000008009a96 z_impl_can_set_timing_data + .text.can_mcan_read_mram + 0x0000000008009ac4 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_write_mram + 0x0000000008009ad0 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_clear_mram + 0x0000000008009adc 0xc zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.z_log_msg_simple_create_0 + 0x0000000008009ae8 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.z_log_msg_simple_create_1.constprop.0 + 0x0000000008009af0 0xe zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.k_mutex_lock.constprop.0.isra.0 + 0x0000000008009afe 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.k_mutex_unlock.isra.0 + 0x0000000008009b06 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_enter_init_mode.constprop.0 + 0x0000000008009b0e 0xa4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .text.can_mcan_set_timing_data + 0x0000000008009bb2 0x98 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009bb2 can_mcan_set_timing_data + .text.can_mcan_get_capabilities + 0x0000000008009c4a 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009c4a can_mcan_get_capabilities + .text.can_mcan_get_state + 0x0000000008009c52 0x6a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009c52 can_mcan_get_state + .text.can_mcan_get_max_filters + 0x0000000008009cbc 0x10 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009cbc can_mcan_get_max_filters + .text.can_mcan_set_state_change_callback + 0x0000000008009ccc 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009ccc can_mcan_set_state_change_callback + .text.can_mcan_enable_configuration_change + 0x0000000008009cd4 0x3a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x0000000008009cd4 can_mcan_enable_configuration_change + .text.can_stm32fd_read_mram + 0x0000000008009d0e 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_write_mram + 0x0000000008009d2e 0x1e zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.can_stm32fd_clear_mram + 0x0000000008009d4c 0x1c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.config_can_0_irq + 0x0000000008009d68 0x24 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .text.config_regulator_voltage + 0x0000000008009d8c 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x0000000008009d8c config_regulator_voltage + .text.gpio_stm32_port_get_raw + 0x0000000008009d8e 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_set_masked_raw + 0x0000000008009d9a 0x12 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_set_bits_raw + 0x0000000008009dac 0xa zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_clear_bits_raw + 0x0000000008009db6 0xa zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_port_toggle_bits + 0x0000000008009dc0 0xe zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_manage_callback + 0x0000000008009dce 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_configure_raw.isra.0 + 0x0000000008009e26 0xa0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_config + 0x0000000008009ec6 0xee zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_isr + 0x0000000008009fb4 0x32 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .text.gpio_stm32_configure + 0x0000000008009fe6 0x2a zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x0000000008009fe6 gpio_stm32_configure + .text.pinctrl_lookup_state + 0x000000000800a010 0x26 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x000000000800a010 pinctrl_lookup_state + .text.reset_stm32_status + 0x000000000800a036 0x20 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_assert + 0x000000000800a056 0x1c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_deassert + 0x000000000800a072 0x1c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.reset_stm32_line_toggle + 0x000000000800a08e 0x16 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .text.uart_stm32_ll2cfg_databits + 0x000000000800a0a4 0x2c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_err_check + 0x000000000800a0d0 0x5e zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_poll_out + 0x000000000800a12e 0x36 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.uart_stm32_poll_in + 0x000000000800a164 0x22 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .text.HAL_PCD_MspInit + 0x000000000800a186 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a186 HAL_PCD_MspInit + .text.HAL_PCD_Start + 0x000000000800a188 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a188 HAL_PCD_Start + .text.HAL_PCD_Stop + 0x000000000800a1ae 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1ae HAL_PCD_Stop + .text.HAL_PCD_SOFCallback + 0x000000000800a1d4 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1d4 HAL_PCD_SOFCallback + .text.HAL_PCD_SetAddress + 0x000000000800a1d6 0x22 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1d6 HAL_PCD_SetAddress + .text.HAL_PCD_EP_Open + 0x000000000800a1f8 0x58 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a1f8 HAL_PCD_EP_Open + .text.HAL_PCD_EP_Close + 0x000000000800a250 0x4c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a250 HAL_PCD_EP_Close + .text.HAL_PCD_EP_Receive + 0x000000000800a29c 0x36 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a29c HAL_PCD_EP_Receive + .text.HAL_PCD_EP_GetRxCount + 0x000000000800a2d2 0x10 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a2d2 HAL_PCD_EP_GetRxCount + .text.HAL_PCD_EP_Transmit + 0x000000000800a2e2 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a2e2 HAL_PCD_EP_Transmit + .text.HAL_PCD_EP_SetStall + 0x000000000800a312 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a312 HAL_PCD_EP_SetStall + .text.HAL_PCD_EP_ClrStall + 0x000000000800a36e 0x5c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0x000000000800a36e HAL_PCD_EP_ClrStall + .text.HAL_PCDEx_PMAConfig + 0x000000000800a3ca 0x30 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a3ca HAL_PCDEx_PMAConfig + .text.HAL_PCDEx_ActivateLPM + 0x000000000800a3fa 0x26 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a3fa HAL_PCDEx_ActivateLPM + .text.HAL_PCDEx_LPM_Callback + 0x000000000800a420 0x2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x000000000800a420 HAL_PCDEx_LPM_Callback + .text.USB_DevInit + 0x000000000800a422 0x2a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a422 USB_DevInit + .text.USB_SetDevAddress + 0x000000000800a44c 0xc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a44c USB_SetDevAddress + .text.USB_DevConnect + 0x000000000800a458 0xe modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a458 USB_DevConnect + .text.USB_ReadInterrupts + 0x000000000800a466 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0x000000000800a466 USB_ReadInterrupts + .text.do_device_init + 0x000000000800a46a 0x32 zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000800a46a do_device_init + .text.z_impl_device_is_ready + 0x000000000800a49c 0x1a zephyr/kernel/libkernel.a(device.c.obj) + 0x000000000800a49c z_impl_device_is_ready + .text.arch_system_halt + 0x000000000800a4b6 0x8 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x000000000800a4b6 arch_system_halt + .text.idle 0x000000000800a4be 0xe zephyr/kernel/libkernel.a(idle.c.obj) + 0x000000000800a4be idle + .text.adjust_owner_prio.isra.0 + 0x000000000800a4cc 0x16 zephyr/kernel/libkernel.a(mutex.c.obj) + .text.z_impl_k_mutex_init + 0x000000000800a4e2 0xe zephyr/kernel/libkernel.a(mutex.c.obj) + 0x000000000800a4e2 z_impl_k_mutex_init + .text.z_impl_k_sem_init + 0x000000000800a4f0 0x1a zephyr/kernel/libkernel.a(sem.c.obj) + 0x000000000800a4f0 z_impl_k_sem_init + .text.flag_test_and_clear + 0x000000000800a50a 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.notify_queue_locked.isra.0 + 0x000000000800a522 0x12 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init + 0x000000000800a534 0x12 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a534 k_work_init + .text.z_work_submit_to_queue + 0x000000000800a546 0x1e zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a546 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x000000000800a564 0x18 zephyr/kernel/libkernel.a(work.c.obj) + 0x000000000800a564 k_work_submit_to_queue + .text.k_is_in_isr + 0x000000000800a57c 0xc zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a57c k_is_in_isr + .text.z_impl_k_thread_name_set + 0x000000000800a588 0x6 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a588 z_impl_k_thread_name_set + .text.k_thread_name_get + 0x000000000800a58e 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + 0x000000000800a58e k_thread_name_get + .text.sys_dlist_remove + 0x000000000800a592 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unpend_thread_no_timeout + 0x000000000800a5a2 0x16 zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x000000000800a5b8 0x52 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_ready_thread + 0x000000000800a60a 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a60a z_ready_thread + .text.z_unpend_thread_no_timeout + 0x000000000800a622 0x1e zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a622 z_unpend_thread_no_timeout + .text.z_sched_wake_thread + 0x000000000800a640 0x36 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a640 z_sched_wake_thread + .text.z_thread_timeout + 0x000000000800a676 0xc zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a676 z_thread_timeout + .text.z_unpend1_no_timeout + 0x000000000800a682 0x2a zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a682 z_unpend1_no_timeout + .text.z_impl_k_usleep + 0x000000000800a6ac 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a6ac z_impl_k_usleep + .text.z_sched_wake + 0x000000000800a6ce 0x3c zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000000800a6ce z_sched_wake + .text.z_abort_timeout + 0x000000000800a70a 0x4c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a70a z_abort_timeout + .text.sys_clock_tick_get_32 + 0x000000000800a756 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a756 sys_clock_tick_get_32 + .text.z_impl_k_uptime_ticks + 0x000000000800a75e 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x000000000800a75e z_impl_k_uptime_ticks + .text.k_timer_init + 0x000000000800a766 0x18 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000800a766 k_timer_init + .text.z_impl_k_timer_stop + 0x000000000800a77e 0x32 zephyr/kernel/libkernel.a(timer.c.obj) + 0x000000000800a77e z_impl_k_timer_stop + .text.z_impl_atomic_add + 0x000000000800a7b0 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7b0 z_impl_atomic_add + .text.z_impl_atomic_sub + 0x000000000800a7ca 0x1a zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7ca z_impl_atomic_sub + .text.z_impl_atomic_set + 0x000000000800a7e4 0x18 zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x000000000800a7e4 z_impl_atomic_set + .text.k_heap_init + 0x000000000800a7fc 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x000000000800a7fc k_heap_init + .text.memcpy 0x000000000800a80c 0x12 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + 0x000000000800a80c __aeabi_memcpy + 0x000000000800a80c __aeabi_memcpy4 + 0x000000000800a80c __aeabi_memcpy8 + 0x000000000800a80c memcpy + .text.memset 0x000000000800a81e 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + 0x000000000800a81e memset + .text.strncmp 0x000000000800a82e 0x22 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + 0x000000000800a82e strncmp + .text.strnlen 0x000000000800a850 0x16 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + 0x000000000800a850 strnlen + .text.__ultoa_invert + 0x000000000800a866 0x10e c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .text.__file_str_put + 0x000000000800a974 0x10 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + 0x000000000800a974 __file_str_put + *(SORT_BY_ALIGNMENT(.TEXT.*)) + .TEXT.__aeabi_read_tp + 0x000000000800a984 0xc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0x000000000800a984 __aeabi_read_tp + *(SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.glue_7t)) + .glue_7t 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.glue_7)) + .glue_7 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.vfp11_veneer)) + .vfp11_veneer 0x000000000800a990 0x0 linker stubs + *(SORT_BY_ALIGNMENT(.v4_bx)) + .v4_bx 0x000000000800a990 0x0 linker stubs + 0x000000000800a990 . = ALIGN (0x4) + 0x000000000800a990 __text_region_end = . + +.ARM.exidx 0x000000000800a990 0x8 + 0x000000000800a990 __exidx_start = . + *(SORT_BY_ALIGNMENT(.ARM.exidx*) SORT_BY_ALIGNMENT(gnu.linkonce.armexidx.*)) + .ARM.exidx 0x000000000800a990 0x8 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + 0x000000000800a998 __exidx_end = . + 0x000000000800a998 __rodata_region_start = . + +initlevel 0x000000000800a998 0x98 + 0x000000000800a998 __init_start = . + 0x000000000800a998 __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_???_*))) + 0x000000000800a998 __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_?_*))) + .z_init_PRE_KERNEL_1_P_1_SUB_00008_ + 0x000000000800a998 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .z_init_PRE_KERNEL_1_P_1_SUB_0_ + 0x000000000800a9a0 0x8 zephyr/libzephyr.a(soc_config.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_??_*))) + .z_init_PRE_KERNEL_1_P_30_SUB_0_ + 0x000000000800a9a8 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_1_P_35_SUB_00049_ + 0x000000000800a9b0 0x8 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00030_ + 0x000000000800a9b8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00031_ + 0x000000000800a9c0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00048_ + 0x000000000800a9c8 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00079_ + 0x000000000800a9d0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00080_ + 0x000000000800a9d8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00081_ + 0x000000000800a9e0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00082_ + 0x000000000800a9e8 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_0_ + 0x000000000800a9f0 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00058_ + 0x000000000800a9f8 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .z_init_PRE_KERNEL_1_P_60_SUB_0_ + 0x000000000800aa00 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_???_*))) + 0x000000000800aa08 __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_?_*))) + .z_init_PRE_KERNEL_2_P_0_SUB_0_ + 0x000000000800aa08 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_???_*))) + 0x000000000800aa10 __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_?_*))) + .z_init_POST_KERNEL_P_0_SUB_0_ + 0x000000000800aa10 0x8 zephyr/libzephyr.a(log_core.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_??_*))) + .z_init_POST_KERNEL_P_35_SUB_0_ + 0x000000000800aa18 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x000000000800aa20 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL_P_80_SUB_00043_ + 0x000000000800aa28 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_???_*))) + 0x000000000800aa30 __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_???_*))) + 0x000000000800aa30 __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_???_*))) + 0x000000000800aa30 __init_end = . + +device_area 0x000000000800aa30 0x160 + 0x000000000800aa30 _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + ._device.static.1_1_ + 0x000000000800aa30 0x20 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x000000000800aa30 __device_dts_ord_8 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_35_ + 0x000000000800aa50 0x20 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x000000000800aa50 __device_dts_ord_49 + ._device.static.1_40_ + 0x000000000800aa70 0x20 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x000000000800aa70 __device_dts_ord_48 + ._device.static.1_40_ + 0x000000000800aa90 0xc0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800aa90 __device_dts_ord_80 + 0x000000000800aab0 __device_dts_ord_82 + 0x000000000800aad0 __device_dts_ord_79 + 0x000000000800aaf0 __device_dts_ord_81 + 0x000000000800ab10 __device_dts_ord_31 + 0x000000000800ab30 __device_dts_ord_30 + ._device.static.1_50_ + 0x000000000800ab50 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800ab50 __device_dts_ord_58 + ._device.static.3_80_ + 0x000000000800ab70 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ab70 __device_dts_ord_43 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_???_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_????_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?????_*))) + 0x000000000800ab90 _device_list_end = . + +sw_isr_table 0x000000000800ab90 0xf8 + 0x000000000800ab90 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x000000000800ab90 0xf8 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x000000000800ab90 _sw_isr_table + +initlevel_error + 0x000000000800a998 0x0 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_*))) + 0x0000000000000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x000000000800ac88 0x0 + 0x000000000800ac88 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x000000000800ac88 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x000000000800ac88 0x0 + 0x000000000800ac88 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x000000000800ac88 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x000000000800ac88 0x0 + 0x000000000800ac88 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x000000000800ac88 __static_thread_data_list_end = . + +device_deps 0x000000000800ac88 0x0 + 0x000000000800ac88 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x000000000800ac88 __device_deps_end = . + +can_driver_api_area + 0x000000000800ac88 0x5c + 0x000000000800ac88 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + ._can_driver_api.static.can_stm32fd_driver_api_ + 0x000000000800ac88 0x5c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ace4 _can_driver_api_list_end = . + +gpio_driver_api_area + 0x000000000800ace4 0x24 + 0x000000000800ace4 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_stm32_driver_ + 0x000000000800ace4 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800ad08 _gpio_driver_api_list_end = . + +reset_driver_api_area + 0x000000000800ad08 0x10 + 0x000000000800ad08 _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + ._reset_driver_api.static.reset_stm32_driver_api_ + 0x000000000800ad08 0x10 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x000000000800ad18 _reset_driver_api_list_end = . + +shared_irq_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x000000000800ad18 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x000000000800ad18 _crypto_driver_api_list_end = . + +adc_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + 0x000000000800ad18 _adc_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x000000000800ad18 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x000000000800ad18 _bbram_driver_api_list_end = . + +bt_hci_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x000000000800ad18 _bt_hci_driver_api_list_end = . + +cellular_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x000000000800ad18 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x000000000800ad18 0x0 + 0x000000000800ad18 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x000000000800ad18 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x000000000800ad18 0x1c + 0x000000000800ad18 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.stm32_clock_control_api_ + 0x000000000800ad18 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0x000000000800ad34 _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x000000000800ad34 _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x000000000800ad34 _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x000000000800ad34 _counter_driver_api_list_end = . + +crc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _crc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crc_driver_api.static.*))) + 0x000000000800ad34 _crc_driver_api_list_end = . + +dac_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x000000000800ad34 _dac_driver_api_list_end = . + +dai_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x000000000800ad34 _dai_driver_api_list_end = . + +display_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x000000000800ad34 _display_driver_api_list_end = . + +dma_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x000000000800ad34 _dma_driver_api_list_end = . + +edac_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x000000000800ad34 _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x000000000800ad34 _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x000000000800ad34 _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x000000000800ad34 _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x000000000800ad34 _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x000000000800ad34 _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x000000000800ad34 _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x000000000800ad34 _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x000000000800ad34 _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x000000000800ad34 _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x000000000800ad34 _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x000000000800ad34 _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x000000000800ad34 _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x000000000800ad34 _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x000000000800ad34 _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x000000000800ad34 _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x000000000800ad34 _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x000000000800ad34 _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x000000000800ad34 _ipm_driver_api_list_end = . + +led_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x000000000800ad34 _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x000000000800ad34 _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + 0x000000000800ad34 _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x000000000800ad34 _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x000000000800ad34 _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x000000000800ad34 _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x000000000800ad34 _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x000000000800ad34 _mspi_driver_api_list_end = . + +opamp_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _opamp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._opamp_driver_api.static.*))) + 0x000000000800ad34 _opamp_driver_api_list_end = . + +peci_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x000000000800ad34 _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x000000000800ad34 _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x000000000800ad34 _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x000000000800ad34 _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x000000000800ad34 _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x000000000800ad34 _regulator_driver_api_list_end = . + +retained_mem_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x000000000800ad34 _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x000000000800ad34 _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x000000000800ad34 _sdhc_driver_api_list_end = . + +sensor_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + 0x000000000800ad34 _sensor_driver_api_list_end = . + +smbus_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x000000000800ad34 _smbus_driver_api_list_end = . + +spi_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + 0x000000000800ad34 _spi_driver_api_list_end = . + +stepper_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x000000000800ad34 _stepper_driver_api_list_end = . + +syscon_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x000000000800ad34 _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x000000000800ad34 _tee_driver_api_list_end = . + +video_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x000000000800ad34 _video_driver_api_list_end = . + +virtio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _virtio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._virtio_driver_api.static.*))) + 0x000000000800ad34 _virtio_driver_api_list_end = . + +w1_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x000000000800ad34 _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x000000000800ad34 _wdt_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x000000000800ad34 _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x000000000800ad34 _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x000000000800ad34 _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x000000000800ad34 _its_driver_api_list_end = . + +vtd_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x000000000800ad34 _vtd_driver_api_list_end = . + +renesas_elc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _renesas_elc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._renesas_elc_driver_api.static.*))) + 0x000000000800ad34 _renesas_elc_driver_api_list_end = . + +tgpio_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x000000000800ad34 _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x000000000800ad34 _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x000000000800ad34 _pcie_ep_driver_api_list_end = . + +psi5_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _psi5_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._psi5_driver_api.static.*))) + 0x000000000800ad34 _psi5_driver_api_list_end = . + +sent_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _sent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sent_driver_api.static.*))) + 0x000000000800ad34 _sent_driver_api_list_end = . + +svc_driver_api_area + 0x000000000800ad34 0x0 + 0x000000000800ad34 _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x000000000800ad34 _svc_driver_api_list_end = . + +uart_driver_api_area + 0x000000000800ad34 0x1c + 0x000000000800ad34 _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.uart_stm32_driver_api_ + 0x000000000800ad34 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800ad50 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x000000000800ad50 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x000000000800ad50 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x000000000800ad50 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x000000000800ad50 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x000000000800ad50 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x000000000800ad50 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x000000000800ad50 _ethphy_driver_api_list_end = . + +ztest 0x000000000800ad50 0x0 + 0x000000000800ad50 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x000000000800ad50 _ztest_expected_result_entry_list_end = . + 0x000000000800ad50 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x000000000800ad50 _ztest_suite_node_list_end = . + 0x000000000800ad50 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x000000000800ad50 _ztest_unit_test_list_end = . + 0x000000000800ad50 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x000000000800ad50 _ztest_test_rule_list_end = . + +init_array 0x000000000800ad50 0x0 + 0x000000000800ad50 __zephyr_init_array_start = . + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(SORT_BY_ALIGNMENT(.init_array) SORT_BY_ALIGNMENT(.ctors)) + 0x000000000800ad50 __zephyr_init_array_end = . + 0x0000000000000001 ASSERT ((__zephyr_init_array_start == __zephyr_init_array_end), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +bt_l2cap_fixed_chan_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x000000000800ad50 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x000000000800ad50 _bt_gatt_service_static_list_end = . + +log_strings_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x000000000800ad50 _log_strings_list_end = . + +log_stmesp_ptr_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x000000000800ad50 _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x000000000800ad50 0x0 + 0x000000000800ad50 _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x000000000800ad50 _log_stmesp_str_list_end = . + +log_const_area 0x000000000800ad50 0xb0 + 0x000000000800ad50 _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + ._log_const.static.log_const_can_common_ + 0x000000000800ad50 0x8 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x000000000800ad50 log_const_can_common + ._log_const.static.log_const_can_mcan_ + 0x000000000800ad58 0x8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x000000000800ad58 log_const_can_mcan + ._log_const.static.log_const_can_stm32fd_ + 0x000000000800ad60 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x000000000800ad60 log_const_can_stm32fd + ._log_const.static.log_const_cbprintf_package_ + 0x000000000800ad68 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x000000000800ad68 log_const_cbprintf_package + ._log_const.static.log_const_cdc_handler_ + 0x000000000800ad70 0x8 app/libapp.a(cdc_handler.c.obj) + 0x000000000800ad70 log_const_cdc_handler + ._log_const.static.log_const_exti_stm32_ + 0x000000000800ad78 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x000000000800ad78 log_const_exti_stm32 + ._log_const.static.log_const_getopt_ + 0x000000000800ad80 0x8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + 0x000000000800ad80 log_const_getopt + ._log_const.static.log_const_gs_usb_can_ + 0x000000000800ad88 0x8 app/libapp.a(gs_usb_can.c.obj) + 0x000000000800ad88 log_const_gs_usb_can + ._log_const.static.log_const_log_ + 0x000000000800ad90 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x000000000800ad90 log_const_log + ._log_const.static.log_const_log_mgmt_ + 0x000000000800ad98 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x000000000800ad98 log_const_log_mgmt + ._log_const.static.log_const_log_uart_ + 0x000000000800ada0 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ada0 log_const_log_uart + ._log_const.static.log_const_main_ + 0x000000000800ada8 0x8 app/libapp.a(main.c.obj) + 0x000000000800ada8 log_const_main + ._log_const.static.log_const_os_ + 0x000000000800adb0 0x8 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000000800adb0 log_const_os + ._log_const.static.log_const_pfet_control_ + 0x000000000800adb8 0x8 app/libapp.a(pfet_control.c.obj) + 0x000000000800adb8 log_const_pfet_control + ._log_const.static.log_const_stm32_ + 0x000000000800adc0 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x000000000800adc0 log_const_stm32 + ._log_const.static.log_const_stm32_backup_domain_ + 0x000000000800adc8 0x8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + 0x000000000800adc8 log_const_stm32_backup_domain + ._log_const.static.log_const_uart_stm32_ + 0x000000000800add0 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x000000000800add0 log_const_uart_stm32 + ._log_const.static.log_const_usb_dc_stm32_ + 0x000000000800add8 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x000000000800add8 log_const_usb_dc_stm32 + ._log_const.static.log_const_usb_descriptor_ + 0x000000000800ade0 0x8 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000000800ade0 log_const_usb_descriptor + ._log_const.static.log_const_usb_device_ + 0x000000000800ade8 0x8 zephyr/libzephyr.a(usb_device.c.obj) + 0x000000000800ade8 log_const_usb_device + ._log_const.static.log_const_usb_gs_usb_ + 0x000000000800adf0 0x8 app/libapp.a(usb_gs_usb_class.c.obj) + 0x000000000800adf0 log_const_usb_gs_usb + ._log_const.static.log_const_usb_transfer_ + 0x000000000800adf8 0x8 zephyr/libzephyr.a(usb_transfer.c.obj) + 0x000000000800adf8 log_const_usb_transfer + 0x000000000800ae00 _log_const_list_end = . + +log_backend_area + 0x000000000800ae00 0x10 + 0x000000000800ae00 _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + ._log_backend.static.log_backend_uart_ + 0x000000000800ae00 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ae10 _log_backend_list_end = . + +log_link_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x000000000800ae10 _log_link_list_end = . + +tracing_backend_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x000000000800ae10 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +intc_table_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _intc_table_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._intc_table.static.*))) + 0x000000000800ae10 _intc_table_list_end = . + +symbol_to_keep 0x000000000800ae10 0x0 + 0x000000000800ae10 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x000000000800ae10 __symbol_to_keep_end = . + +shell_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x000000000800ae10 _shell_list_end = . + +shell_root_cmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x000000000800ae10 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x000000000800ae10 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x000000000800ae10 0x0 + 0x000000000800ae10 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x000000000800ae10 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x000000000800ae10 0x0 + 0x000000000800ae10 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x000000000800ae10 _cfb_font_list_end = . + +tdata 0x000000000800ae10 0x0 + *(SORT_BY_ALIGNMENT(.tdata) SORT_BY_ALIGNMENT(.tdata.*) SORT_BY_ALIGNMENT(.gnu.linkonce.td.*)) + +tbss 0x000000000800ae10 0x4 + *(SORT_BY_ALIGNMENT(.tbss) SORT_BY_ALIGNMENT(.tbss.*) SORT_BY_ALIGNMENT(.gnu.linkonce.tb.*) SORT_BY_ALIGNMENT(.tcommon)) + .tbss.z_tls_current + 0x000000000800ae10 0x4 zephyr/libzephyr.a(thread_entry.c.obj) + 0x000000000800ae10 z_tls_current + 0x000000000800ae10 PROVIDE (__tdata_start = LOADADDR (tdata)) + 0x0000000000000001 PROVIDE (__tdata_align = ALIGNOF (tdata)) + 0x0000000000000000 PROVIDE (__tdata_size = (((SIZEOF (tdata) + __tdata_align) - 0x1) & ~ ((__tdata_align - 0x1)))) + [!provide] PROVIDE (__tdata_end = (__tdata_start + __tdata_size)) + 0x0000000000000004 PROVIDE (__tbss_align = ALIGNOF (tbss)) + [!provide] PROVIDE (__tbss_start = ADDR (tbss)) + 0x0000000000000004 PROVIDE (__tbss_size = (((SIZEOF (tbss) + __tbss_align) - 0x1) & ~ ((__tbss_align - 0x1)))) + [!provide] PROVIDE (__tbss_end = (__tbss_start + __tbss_size)) + [!provide] PROVIDE (__tls_start = __tdata_start) + [!provide] PROVIDE (__tls_end = __tbss_end) + [!provide] PROVIDE (__tls_size = (__tbss_end - __tdata_start)) + +rodata 0x000000000800ae10 0x194c + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x000000000800ae10 0xa app/libapp.a(gs_usb_can.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x000000000800ae1a 0x2 + .rodata.pfet2 0x000000000800ae1c 0x8 app/libapp.a(pfet_control.c.obj) + .rodata.pfet1 0x000000000800ae24 0x8 app/libapp.a(pfet_control.c.obj) + .rodata.mpsc_config + 0x000000000800ae2c 0x14 zephyr/libzephyr.a(log_core.c.obj) + .rodata.format_table + 0x000000000800ae40 0x10 zephyr/libzephyr.a(log_core.c.obj) + .rodata.colors + 0x000000000800ae50 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.severity + 0x000000000800ae64 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.lbu_cb_ctx + 0x000000000800ae78 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.lbu_output + 0x000000000800ae80 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.log_backend_uart_api + 0x000000000800ae90 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x000000000800ae90 log_backend_uart_api + .rodata.__pinctrl_dev_config__device_dts_ord_70 + 0x000000000800aeac 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_70 + 0x000000000800aeb4 0x8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_70 + 0x000000000800aebc 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.pclken + 0x000000000800aecc 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.can_mcan_cfg_0 + 0x000000000800aedc 0x48 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_cfg_0 + 0x000000000800af24 0x1c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_pclken_0 + 0x000000000800af40 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_cbs_0 + 0x000000000800af50 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_43 + 0x000000000800af60 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_states__device_dts_ord_43 + 0x000000000800af68 0x8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_43 + 0x000000000800af70 0x10 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_ops + 0x000000000800af80 0x14 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.gpio_stm32_cfg_f + 0x000000000800af94 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_e + 0x000000000800afa8 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_d + 0x000000000800afbc 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_c + 0x000000000800afd0 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_b + 0x000000000800afe4 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_stm32_cfg_a + 0x000000000800aff8 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .rodata.gpio_ports + 0x000000000800b00c 0x68 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .rodata.reset_stm32_config + 0x000000000800b074 0x4 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .rodata.uart_stm32_cfg_0 + 0x000000000800b078 0x24 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.pclken_0 + 0x000000000800b09c 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_58 + 0x000000000800b0a4 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_58 + 0x000000000800b0ac 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_58 + 0x000000000800b0b4 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.AHBPrescTable + 0x000000000800b0c4 0x40 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x000000000800b0c4 AHBPrescTable + .rodata.CSWTCH.489 + 0x000000000800b104 0x14 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.levels.0 + 0x000000000800b118 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.cfg.0 0x000000000800b130 0xc zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.CSWTCH.807 + 0x000000000800b13c 0x6 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.main.str1.1 + 0x000000000800b142 0x124 app/libapp.a(main.c.obj) + .rodata.str1.1 + 0x000000000800b266 0x124 app/libapp.a(main.c.obj) + 0x5 (size before relaxing) + .rodata.cdc_handler_init.str1.1 + 0x000000000800b266 0x31 app/libapp.a(cdc_handler.c.obj) + .rodata.cdc_handler_process.str1.1 + 0x000000000800b297 0x8b app/libapp.a(cdc_handler.c.obj) + 0x92 (size before relaxing) + .rodata.str1.1 + 0x000000000800b322 0xc app/libapp.a(cdc_handler.c.obj) + .rodata.pfet_control_init.str1.1 + 0x000000000800b32e 0x79 app/libapp.a(pfet_control.c.obj) + .rodata.pfet_set_state.str1.1 + 0x000000000800b3a7 0x12 app/libapp.a(pfet_control.c.obj) + 0x19 (size before relaxing) + .rodata.str1.1 + 0x000000000800b3b9 0xd app/libapp.a(pfet_control.c.obj) + .rodata.can_rx_callback.str1.1 + 0x000000000800b3c6 0x19 app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_can_init.str1.1 + 0x000000000800b3df 0x73 app/libapp.a(gs_usb_can.c.obj) + .rodata.__func__.3 + 0x000000000800b452 0x10 app/libapp.a(gs_usb_can.c.obj) + .rodata.str1.1 + 0x000000000800b462 0xb app/libapp.a(gs_usb_can.c.obj) + .rodata.gs_usb_send_frame_to_host.str1.1 + 0x000000000800b46d 0x20 app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.usb_gs_usb_init.str1.1 + 0x000000000800b48d 0x63 app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.__func__.0 + 0x000000000800b4f0 0x1a app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.str1.1 + 0x000000000800b50a 0xb app/libapp.a(usb_gs_usb_class.c.obj) + .rodata.cbprintf_package_convert.str1.1 + 0x000000000800b515 0xa3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x000000000800b5b8 0x11 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x000000000800b5c9 0x14 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .rodata.enable_logger.str1.1 + 0x000000000800b5dd 0x8 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x000000000800b5e5 0x4 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x000000000800b5e9 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.z_impl_z_log_msg_static_create.str1.1 + 0x000000000800b5f2 0x3f zephyr/libzephyr.a(log_msg.c.obj) + .rodata.z_log_msg_runtime_vcreate.str1.1 + 0x000000000800b631 0x38 zephyr/libzephyr.a(log_msg.c.obj) + .rodata.newline_print.str1.1 + 0x000000000800b669 0x38 zephyr/libzephyr.a(log_output.c.obj) + 0x5 (size before relaxing) + .rodata.log_output_process.str1.1 + 0x000000000800b669 0x4c zephyr/libzephyr.a(log_output.c.obj) + 0x51 (size before relaxing) + .rodata.log_output_dropped_process.str1.1 + 0x000000000800b6b5 0x4c zephyr/libzephyr.a(log_output.c.obj) + 0x3 (size before relaxing) + .rodata.postfix.0 + 0x000000000800b6b5 0x1c zephyr/libzephyr.a(log_output.c.obj) + .rodata.prefix.1 + 0x000000000800b6d1 0xc zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x000000000800b6dd 0x20 zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x000000000800b6fd 0x1a zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.usb_halt_endpoint_req.str1.1 + 0x000000000800b717 0x28 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.get_ep_bm_from_addr.part.0.str1.1 + 0x000000000800b73f 0x1b zephyr/libzephyr.a(usb_device.c.obj) + .rodata.disable_endpoint.str1.1 + 0x000000000800b75a 0x43 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.set_endpoint.str1.1 + 0x000000000800b79d 0x88 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_write.str1.1 + 0x000000000800b825 0x27 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_handle_control_transfer.str1.1 + 0x000000000800b84c 0x19 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_enable.str1.1 + 0x000000000800b865 0x77 zephyr/libzephyr.a(usb_device.c.obj) + .rodata.str1.1 + 0x000000000800b8dc 0xb zephyr/libzephyr.a(usb_device.c.obj) + .rodata.usb_update_sn_string_descriptor.str1.1 + 0x000000000800b8e7 0x11 zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.usb_get_device_descriptor.str1.1 + 0x000000000800b8f8 0x105 zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.str1.1 + 0x000000000800b9fd 0xf zephyr/libzephyr.a(usb_descriptor.c.obj) + .rodata.usb_transfer_work.str1.1 + 0x000000000800ba0c 0x1d zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.str1.1 + 0x000000000800ba29 0xd zephyr/libzephyr.a(usb_transfer.c.obj) + .rodata.z_arm_fatal_error.str1.1 + 0x000000000800ba36 0xae zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .rodata.z_arm_fault.str1.1 + 0x000000000800bae4 0x9f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .rodata.str1.1 + 0x000000000800bb83 0x7 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .rodata.line_range_2.0 + 0x000000000800bb8a 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.line_range_1.1 + 0x000000000800bb8c 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.line_range_0.2 + 0x000000000800bb8e 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .rodata.stm32_exti_init.str1.1 + 0x000000000800bb90 0x1f zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.stm32_exti_disable_falling_trig.part.0.str1.1 + 0x000000000800bbaf 0x17 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.str1.1 + 0x000000000800bbc6 0x29 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .rodata.usb_dc_ep_read_continue.part.0.str1.1 + 0x000000000800bbef 0x19 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_get_read_count.part.0.str1.1 + 0x000000000800bc08 0x12 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_attach.str1.1 + 0x000000000800bc1a 0xf7 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_set_address.str1.1 + 0x000000000800bd11 0x26 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_start_read.str1.1 + 0x000000000800bd37 0x26 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_check_cap.str1.1 + 0x000000000800bd5d 0x43 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_set_stall.str1.1 + 0x000000000800bda0 0x27 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_clear_stall.str1.1 + 0x000000000800bdc7 0x27 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_enable.str1.1 + 0x000000000800bdee 0x23 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_disable.str1.1 + 0x000000000800be11 0x24 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_write.str1.1 + 0x000000000800be35 0x45 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.usb_dc_ep_read_wait.str1.1 + 0x000000000800be7a 0x45 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.str1.1 + 0x000000000800bebf 0xd zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .rodata.z_impl_can_send.str1.1 + 0x000000000800becc 0x3f zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_add_rx_filter.str1.1 + 0x000000000800bf0b 0x42 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.str1.1 + 0x000000000800bf4d 0xb zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .rodata.can_mcan_read_reg.str1.1 + 0x000000000800bf58 0x23 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_write_reg.str1.1 + 0x000000000800bf7b 0x24 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_get_message.str1.1 + 0x000000000800bf9f 0x5d zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_start.str1.1 + 0x000000000800bffc 0x4d zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_set_mode.str1.1 + 0x000000000800c049 0x19 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_line_1_isr.str1.1 + 0x000000000800c062 0x2c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_line_0_isr.str1.1 + 0x000000000800c08e 0x71 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_send.str1.1 + 0x000000000800c0ff 0x114 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_add_rx_filter_std.str1.1 + 0x000000000800c213 0x4c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_add_rx_filter.str1.1 + 0x000000000800c25f 0x44 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_remove_rx_filter.str1.1 + 0x000000000800c2a3 0x73 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_stop.str1.1 + 0x000000000800c316 0x45 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_configure_mram.str1.1 + 0x000000000800c35b 0x1a zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_mcan_init.str1.1 + 0x000000000800c375 0xaf zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.dlc_table.0 + 0x000000000800c424 0x10 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.str1.1 + 0x000000000800c434 0x9 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .rodata.can_stm32fd_init.str1.1 + 0x000000000800c43d 0x69 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.can_stm32fd_get_core_clock.str1.1 + 0x000000000800c4a6 0x58 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.str1.1 + 0x000000000800c4fe 0x19 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .rodata.str1.1 + 0x000000000800c517 0xd zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .rodata.str1.1 + 0x000000000800c524 0x54 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x5a (size before relaxing) + .rodata.str1.1 + 0x000000000800c578 0x11 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .rodata.uart_stm32_set_baudrate.str1.1 + 0x000000000800c589 0x45 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.uart_stm32_init.str1.1 + 0x000000000800c5ce 0x5d zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x7c (size before relaxing) + .rodata.str1.1 + 0x000000000800c62b 0x1b zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .rodata.k_sys_fatal_error_handler.str1.1 + 0x000000000800c646 0xf zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_fatal_error.str1.1 + 0x000000000800c655 0x77 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.str1.1 + 0x000000000800c6cc 0x4a zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_cstart.str1.1 + 0x000000000800c716 0x5 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x000000000800c716 0x3 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x000000000800c719 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.boot_banner.str1.1 + 0x000000000800c722 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x000000000800c74a 0xf c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + 0x000000000800c75c . = ALIGN (0x4) + *fill* 0x000000000800c759 0x3 + [!provide] PROVIDE (__eh_frame_start = 0x0) + [!provide] PROVIDE (__eh_frame_end = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_start = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_end = 0x0) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + 0x000000000800c75c __rodata_region_end = . + 0x000000000800c75c . = ALIGN (_region_min_align) + 0x000000000800c75c __rom_region_end = ((__rom_region_start + .) - ADDR (rom_start)) + 0x000000000000c75c __rom_region_size = (__rom_region_end - __rom_region_start) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.got.plt)) + *(SORT_BY_ALIGNMENT(.igot.plt)) + *(SORT_BY_ALIGNMENT(.got)) + *(SORT_BY_ALIGNMENT(.igot)) + 0x0000000020000000 . = 0x20000000 + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 _image_ram_start = . + +.ramfunc 0x0000000020000000 0x0 load address 0x000000000800c75c + 0x0000000020000000 __ramfunc_region_start = . + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 __ramfunc_start = . + *(SORT_BY_ALIGNMENT(.ramfunc)) + *(SORT_BY_ALIGNMENT(.ramfunc.*)) + 0x0000000020000000 . = ALIGN (_region_min_align) + 0x0000000020000000 __ramfunc_end = . + 0x0000000000000000 __ramfunc_size = (__ramfunc_end - __ramfunc_start) + 0x000000000800c75c __ramfunc_load_start = LOADADDR (.ramfunc) + +datas 0x0000000020000000 0x50 load address 0x000000000800c75c + 0x0000000020000000 __data_region_start = . + 0x0000000020000000 __data_start = . + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data._char_out + 0x0000000020000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.timestamp_func + 0x0000000020000004 0x4 zephyr/libzephyr.a(log_core.c.obj) + .data.backend_cb_log_backend_uart + 0x0000000020000008 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data.__stdout + 0x0000000020000010 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.uart_stm32_data_0 + 0x0000000020000020 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data.uart_cfg_0 + 0x0000000020000028 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .data.SystemCoreClock + 0x0000000020000030 0x4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x0000000020000030 SystemCoreClock + .data.slice_ticks + 0x0000000020000034 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data.timeout_list + 0x0000000020000038 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.exti_irq_table + 0x0000000020000040 0x10 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + *(SORT_BY_ALIGNMENT(.kernel.*)) + 0x0000000020000050 __data_end = . + 0x0000000000000050 __data_size = (__data_end - __data_start) + 0x000000000800c75c __data_load_start = LOADADDR (datas) + 0x000000000800c75c __data_region_load_start = LOADADDR (datas) + +device_states 0x0000000020000050 0x18 load address 0x000000000800c7ac + 0x0000000020000050 . = ALIGN (0x4) + 0x0000000020000050 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x0000000020000050 0x2 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .z_devstate 0x0000000020000052 0x2 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .z_devstate 0x0000000020000054 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .z_devstate 0x0000000020000056 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .z_devstate 0x0000000020000062 0x2 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .z_devstate 0x0000000020000064 0x2 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x0000000020000066 __device_states_end = . + 0x0000000020000068 . = ALIGN (0x4) + *fill* 0x0000000020000066 0x2 + +log_mpsc_pbuf_area + 0x0000000020000068 0x38 load address 0x000000000800c7c4 + 0x0000000020000068 _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + ._log_mpsc_pbuf.static.log_buffer_ + 0x0000000020000068 0x38 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000a0 _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x00000000200000a0 0x4 load address 0x000000000800c7fc + 0x00000000200000a0 _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + ._log_msg_ptr.static.log_msg_ptr_ + 0x00000000200000a0 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000a4 _log_msg_ptr_list_end = . + +log_dynamic_area + 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x00000000200000a4 _log_dynamic_list_end = . + +k_timer_area 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + 0x00000000200000a4 _k_timer_list_end = . + +k_mem_slab_area + 0x00000000200000a4 0x0 load address 0x000000000800c800 + 0x00000000200000a4 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + 0x00000000200000a4 _k_mem_slab_list_end = . + +k_heap_area 0x00000000200000a4 0x14 load address 0x000000000800c800 + 0x00000000200000a4 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + ._k_heap.static._system_heap_ + 0x00000000200000a4 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x00000000200000a4 _system_heap + 0x00000000200000b8 _k_heap_list_end = . + +k_mutex_area 0x00000000200000b8 0x14 load address 0x000000000800c814 + 0x00000000200000b8 _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.usb_enable_lock_ + 0x00000000200000b8 0x14 zephyr/libzephyr.a(usb_device.c.obj) + 0x00000000200000b8 usb_enable_lock + 0x00000000200000cc _k_mutex_list_end = . + +k_stack_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x00000000200000cc _k_stack_list_end = . + +k_msgq_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x00000000200000cc _k_msgq_list_end = . + +k_mbox_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x00000000200000cc _k_mbox_list_end = . + +k_pipe_area 0x00000000200000cc 0x0 load address 0x000000000800c828 + 0x00000000200000cc _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x00000000200000cc _k_pipe_list_end = . + +k_sem_area 0x00000000200000cc 0x10 load address 0x000000000800c828 + 0x00000000200000cc _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.log_process_thread_sem_ + 0x00000000200000cc 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x00000000200000cc log_process_thread_sem + 0x00000000200000dc _k_sem_list_end = . + +k_event_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x00000000200000dc _k_event_list_end = . + +k_queue_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x00000000200000dc _k_queue_list_end = . + +k_fifo_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + 0x00000000200000dc _k_fifo_list_end = . + +k_lifo_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x00000000200000dc _k_lifo_list_end = . + +k_condvar_area 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x00000000200000dc _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x00000000200000dc _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x00000000200000dc 0x0 load address 0x000000000800c838 + 0x00000000200000dc _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x00000000200000dc _net_buf_pool_list_end = . + +usb_descriptor 0x00000000200000dc 0x6f load address 0x000000000800c838 + 0x00000000200000dc __usb_descriptor_start = . + *(SORT_BY_ALIGNMENT(.usb.descriptor)) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.usb.descriptor*))) + .usb.descriptor_primary.0 + 0x00000000200000dc 0x1b zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.4 + 0x00000000200000f7 0x52 zephyr/libzephyr.a(usb_descriptor.c.obj) + .usb.descriptor_primary.6 + 0x0000000020000149 0x2 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x000000002000014b __usb_descriptor_end = . + +usb_cfg_data_area + 0x000000002000014b 0x0 load address 0x000000000800c8a7 + 0x000000002000014b _usb_cfg_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usb_cfg_data.static.*))) + 0x000000002000014b _usb_cfg_data_list_end = . + 0x000000002000014b __data_region_end = . + +.intList 0x00000000ffff8000 0x68 + *(SORT_BY_ALIGNMENT(.irq_info*)) + .irq_info 0x00000000ffff8000 0x8 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x00000000ffff8000 _iheader + *(SORT_BY_ALIGNMENT(.intList*)) + .intList 0x00000000ffff8008 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .intList 0x00000000ffff8038 0x10 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .intList 0x00000000ffff8048 0x20 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x0000000000000000 0x20 + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x21 (size before relaxing) + .comment 0x0000000000000020 0x21 app/libapp.a(main.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(cdc_handler.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(pfet_control.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(gs_usb_can.c.obj) + .comment 0x0000000000000020 0x21 app/libapp.a(usb_gs_usb_class.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(last_section_id.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(soc_config.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(soc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_core.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_mgmt.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_msg.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_output.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(log_backend_uart.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_descriptor.c.obj) + .comment 0x0000000000000020 0x21 zephyr/libzephyr.a(usb_transfer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libarch__common.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libarch__common.a(xip.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000000000000020 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .comment 0x0000000000000020 0x21 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .comment 0x0000000000000020 0x21 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(banner.c.obj) + .comment 0x0000000000000020 0x21 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000000000000020 0x21 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x0000000000000000 0x1e30 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_aranges + 0x0000000000000020 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_aranges + 0x0000000000000040 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_aranges + 0x0000000000000060 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_aranges + 0x0000000000000088 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_aranges + 0x00000000000000a8 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_aranges + 0x00000000000000c8 0x20 app/libapp.a(main.c.obj) + .debug_aranges + 0x00000000000000e8 0x28 app/libapp.a(cdc_handler.c.obj) + .debug_aranges + 0x0000000000000110 0x40 app/libapp.a(pfet_control.c.obj) + .debug_aranges + 0x0000000000000150 0x40 app/libapp.a(gs_usb_can.c.obj) + .debug_aranges + 0x0000000000000190 0x28 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_aranges + 0x00000000000001b8 0xa0 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x0000000000000258 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x0000000000000298 0x48 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x00000000000002e0 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x0000000000000300 0xb0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_aranges + 0x00000000000003b0 0x18 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_aranges + 0x00000000000003c8 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000000000003e8 0x20 zephyr/libzephyr.a(soc_config.c.obj) + .debug_aranges + 0x0000000000000408 0x28 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_aranges + 0x0000000000000430 0x20 zephyr/libzephyr.a(soc.c.obj) + .debug_aranges + 0x0000000000000450 0x178 zephyr/libzephyr.a(log_core.c.obj) + .debug_aranges + 0x00000000000005c8 0xb8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_aranges + 0x0000000000000680 0x60 zephyr/libzephyr.a(log_msg.c.obj) + .debug_aranges + 0x00000000000006e0 0x70 zephyr/libzephyr.a(log_output.c.obj) + .debug_aranges + 0x0000000000000750 0x48 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_aranges + 0x0000000000000798 0xf8 zephyr/libzephyr.a(usb_device.c.obj) + .debug_aranges + 0x0000000000000890 0x48 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_aranges + 0x00000000000008d8 0x68 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_aranges + 0x0000000000000940 0x30 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_aranges + 0x0000000000000970 0x20 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_aranges + 0x0000000000000990 0x30 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_aranges + 0x00000000000009c0 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_aranges + 0x00000000000009e0 0x20 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_aranges + 0x0000000000000a00 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_aranges + 0x0000000000000a20 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_aranges + 0x0000000000000a48 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_aranges + 0x0000000000000a68 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_aranges + 0x0000000000000aa8 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_aranges + 0x0000000000000ad0 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_aranges + 0x0000000000000b10 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_aranges + 0x0000000000000b40 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_aranges + 0x0000000000000b60 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_aranges + 0x0000000000000b80 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x0000000000000ba8 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x0000000000000be0 0x60 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x0000000000000c40 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_aranges + 0x0000000000000c68 0x68 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_aranges + 0x0000000000000cd0 0x90 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_aranges + 0x0000000000000d60 0x148 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_aranges + 0x0000000000000ea8 0x88 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_aranges + 0x0000000000000f30 0x108 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_aranges + 0x0000000000001038 0x60 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_aranges + 0x0000000000001098 0x60 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_aranges + 0x00000000000010f8 0x30 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_aranges + 0x0000000000001128 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x0000000000001158 0x78 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_aranges + 0x00000000000011d0 0x38 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_aranges + 0x0000000000001208 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x0000000000001228 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_aranges + 0x0000000000001248 0x38 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_aranges + 0x0000000000001280 0x60 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_aranges + 0x00000000000012e0 0x60 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_aranges + 0x0000000000001340 0x28 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_aranges + 0x0000000000001368 0x98 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_aranges + 0x0000000000001400 0x130 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_aranges + 0x0000000000001530 0x58 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_aranges + 0x0000000000001588 0x118 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_aranges + 0x00000000000016a0 0x50 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_aranges + 0x00000000000016f0 0x50 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x0000000000001740 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x0000000000001778 0x40 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00000000000017b8 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x00000000000017e0 0x38 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x0000000000001818 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x0000000000001850 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_aranges + 0x0000000000001870 0x120 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x0000000000001990 0x90 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x0000000000001a20 0x178 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x0000000000001b98 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x0000000000001bd8 0x98 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x0000000000001c70 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x0000000000001cb8 0x78 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_aranges + 0x0000000000001d30 0x68 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x0000000000001d98 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_aranges + 0x0000000000001db8 0x60 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x0000000000001e18 0x18 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x0000000000000000 0x10b51b + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x0000000000000000 0x122 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_info 0x0000000000000122 0x48b4 app/libapp.a(main.c.obj) + .debug_info 0x00000000000049d6 0x18ab app/libapp.a(cdc_handler.c.obj) + .debug_info 0x0000000000006281 0x3e29 app/libapp.a(pfet_control.c.obj) + .debug_info 0x000000000000a0aa 0x8689 app/libapp.a(gs_usb_can.c.obj) + .debug_info 0x0000000000012733 0x24c1 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_info 0x0000000000014bf4 0x335e zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x0000000000017f52 0x2312 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x000000000001a264 0x4ba zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x000000000001a71e 0x72e zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x000000000001ae4c 0x24f1 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_info 0x000000000001d33d 0x95 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_info 0x000000000001d3d2 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x000000000001d40a 0x50a zephyr/libzephyr.a(soc_config.c.obj) + .debug_info 0x000000000001d914 0x1178 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_info 0x000000000001ea8c 0x5ba zephyr/libzephyr.a(soc.c.obj) + .debug_info 0x000000000001f046 0x46bd zephyr/libzephyr.a(log_core.c.obj) + .debug_info 0x0000000000023703 0x2296 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_info 0x0000000000025999 0x2810 zephyr/libzephyr.a(log_msg.c.obj) + .debug_info 0x00000000000281a9 0x2166 zephyr/libzephyr.a(log_output.c.obj) + .debug_info 0x000000000002a30f 0x1ace zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_info 0x000000000002bddd 0x20e9e zephyr/libzephyr.a(usb_device.c.obj) + .debug_info 0x000000000004cc7b 0x107d5 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_info 0x000000000005d450 0x73d9 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_info 0x0000000000064829 0x201 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_info 0x0000000000064a2a 0x173 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_info 0x0000000000064b9d 0x3d87 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_info 0x0000000000068924 0xfc zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_info 0x0000000000068a20 0x23 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_info 0x0000000000068a43 0x712 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_info 0x0000000000069155 0x67c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_info 0x00000000000697d1 0x313c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_info 0x000000000006c90d 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_info 0x000000000006c930 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_info 0x000000000006c953 0x721 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_info 0x000000000006d074 0x22 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_info 0x000000000006d096 0x75f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_info 0x000000000006d7f5 0x2fb zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_info 0x000000000006daf0 0x9fc zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_info 0x000000000006e4ec 0x2d8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_info 0x000000000006e7c4 0x410 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_info 0x000000000006ebd4 0x1f1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_info 0x000000000006edc5 0x23 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_info 0x000000000006ede8 0x342 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x000000000006f12a 0x415 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x000000000006f53f 0xdf6 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x0000000000070335 0x187c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_info 0x0000000000071bb1 0x1168 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_info 0x0000000000072d19 0xae97 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_info 0x000000000007dbb0 0x2466c zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_info 0x00000000000a221c 0x5ac7 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_info 0x00000000000a7ce3 0x21432 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_info 0x00000000000c9115 0x5699 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_info 0x00000000000ce7ae 0x14c6 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_info 0x00000000000cfc74 0x464 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_info 0x00000000000d00d8 0x8ac zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x00000000000d0984 0x2aad zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_info 0x00000000000d3431 0x65a zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_info 0x00000000000d3a8b 0x1b2 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x00000000000d3c3d 0x5ae zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_info 0x00000000000d41eb 0x69a zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_info 0x00000000000d4885 0x7431 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_info 0x00000000000dbcb6 0xfd5 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_info 0x00000000000dcc8b 0x37d modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_info 0x00000000000dd008 0xeae modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_info 0x00000000000ddeb6 0x1c32 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_info 0x00000000000dfae8 0x947 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_info 0x00000000000e042f 0x1f14 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_info 0x00000000000e2343 0xd56 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_info 0x00000000000e3099 0x49c zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x00000000000e3535 0x325c zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x00000000000e6791 0x18d1 zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x00000000000e8062 0x2d4 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x00000000000e8336 0x7f39 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x00000000000f026f 0x135a zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x00000000000f15c9 0x90d zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_info 0x00000000000f1ed6 0x5c04 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x00000000000f7ada 0x2a82 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x00000000000fa55c 0x9951 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0000000000103ead 0xe98 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x0000000000104d45 0x19ba zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x00000000001066ff 0x165e zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x0000000000107d5d 0x1147 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_info 0x0000000000108ea4 0x10c2 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x0000000000109f66 0x10b zephyr/kernel/libkernel.a(banner.c.obj) + .debug_info 0x000000000010a071 0x127b zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x000000000010b2ec 0x22f zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_abbrev 0x0000000000000000 0x13416 + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x0000000000000000 0x9b zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_abbrev 0x000000000000009b 0x457 app/libapp.a(main.c.obj) + .debug_abbrev 0x00000000000004f2 0x42a app/libapp.a(cdc_handler.c.obj) + .debug_abbrev 0x000000000000091c 0x4c9 app/libapp.a(pfet_control.c.obj) + .debug_abbrev 0x0000000000000de5 0x593 app/libapp.a(gs_usb_can.c.obj) + .debug_abbrev 0x0000000000001378 0x32f app/libapp.a(usb_gs_usb_class.c.obj) + .debug_abbrev 0x00000000000016a7 0x454 zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000000000001afb 0x572 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x000000000000206d 0x295 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x0000000000002302 0x2d4 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00000000000025d6 0x5f8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_abbrev 0x0000000000002bce 0x46 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_abbrev 0x0000000000002c14 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x0000000000002c42 0x221 zephyr/libzephyr.a(soc_config.c.obj) + .debug_abbrev 0x0000000000002e63 0x419 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_abbrev 0x000000000000327c 0x1e7 zephyr/libzephyr.a(soc.c.obj) + .debug_abbrev 0x0000000000003463 0x910 zephyr/libzephyr.a(log_core.c.obj) + .debug_abbrev 0x0000000000003d73 0x63c zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_abbrev 0x00000000000043af 0x5c7 zephyr/libzephyr.a(log_msg.c.obj) + .debug_abbrev 0x0000000000004976 0x5c6 zephyr/libzephyr.a(log_output.c.obj) + .debug_abbrev 0x0000000000004f3c 0x461 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_abbrev 0x000000000000539d 0x753 zephyr/libzephyr.a(usb_device.c.obj) + .debug_abbrev 0x0000000000005af0 0x5bd zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_abbrev 0x00000000000060ad 0x694 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_abbrev 0x0000000000006741 0xe5 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_abbrev 0x0000000000006826 0xe4 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_abbrev 0x000000000000690a 0x3dc zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_abbrev 0x0000000000006ce6 0x9b zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_abbrev 0x0000000000006d81 0x14 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_abbrev 0x0000000000006d95 0x2a6 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_abbrev 0x000000000000703b 0x190 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_abbrev 0x00000000000071cb 0x4ce zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_abbrev 0x0000000000007699 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_abbrev 0x00000000000076ad 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_abbrev 0x00000000000076c1 0x235 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_abbrev 0x00000000000078f6 0x12 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_abbrev 0x0000000000007908 0x280 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_abbrev 0x0000000000007b88 0x186 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_abbrev 0x0000000000007d0e 0x356 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_abbrev 0x0000000000008064 0x16d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_abbrev 0x00000000000081d1 0x170 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_abbrev 0x0000000000008341 0x154 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_abbrev 0x0000000000008495 0x14 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_abbrev 0x00000000000084a9 0x1b0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x0000000000008659 0x219 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x0000000000008872 0x42d zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x0000000000008c9f 0x287 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_abbrev 0x0000000000008f26 0x4e1 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_abbrev 0x0000000000009407 0x5da zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_abbrev 0x00000000000099e1 0x691 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_abbrev 0x000000000000a072 0x641 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_abbrev 0x000000000000a6b3 0x7d4 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_abbrev 0x000000000000ae87 0x5d8 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_abbrev 0x000000000000b45f 0x519 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_abbrev 0x000000000000b978 0x1b5 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_abbrev 0x000000000000bb2d 0x397 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x000000000000bec4 0x54b zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_abbrev 0x000000000000c40f 0x1df zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_abbrev 0x000000000000c5ee 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x000000000000c6be 0x2a9 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_abbrev 0x000000000000c967 0x294 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_abbrev 0x000000000000cbfb 0x66f zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_abbrev 0x000000000000d26a 0x4d4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_abbrev 0x000000000000d73e 0x142 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_abbrev 0x000000000000d880 0x357 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_abbrev 0x000000000000dbd7 0x401 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_abbrev 0x000000000000dfd8 0x2b3 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_abbrev 0x000000000000e28b 0x378 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_abbrev 0x000000000000e603 0x31c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_abbrev 0x000000000000e91f 0x22c zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x000000000000eb4b 0x4c7 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x000000000000f012 0x6c7 zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x000000000000f6d9 0x1c6 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x000000000000f89f 0x4cf zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x000000000000fd6e 0x450 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x00000000000101be 0x255 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_abbrev 0x0000000000010413 0x6b2 zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x0000000000010ac5 0x5c3 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x0000000000011088 0x701 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x0000000000011789 0x43d zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0000000000011bc6 0x51d zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x00000000000120e3 0x4ed zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x00000000000125d0 0x2dc zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_abbrev 0x00000000000128ac 0x49f zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0000000000012d4b 0xbe zephyr/kernel/libkernel.a(banner.c.obj) + .debug_abbrev 0x0000000000012e09 0x4cc zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x00000000000132d5 0x141 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_line 0x0000000000000000 0x3c14c + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x0000000000000000 0x25e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_line 0x000000000000025e 0xb2c app/libapp.a(main.c.obj) + .debug_line 0x0000000000000d8a 0x7a3 app/libapp.a(cdc_handler.c.obj) + .debug_line 0x000000000000152d 0x1106 app/libapp.a(pfet_control.c.obj) + .debug_line 0x0000000000002633 0xff9 app/libapp.a(gs_usb_can.c.obj) + .debug_line 0x000000000000362c 0x721 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_line 0x0000000000003d4d 0x130b zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x0000000000005058 0x17b9 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000000000006811 0x421 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000000000006c32 0x48d zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x00000000000070bf 0x1b07 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_line 0x0000000000008bc6 0x114 zephyr/libzephyr.a(last_section_id.c.obj) + .debug_line 0x0000000000008cda 0x24e zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x0000000000008f28 0x309 zephyr/libzephyr.a(soc_config.c.obj) + .debug_line 0x0000000000009231 0x7f2 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_line 0x0000000000009a23 0x32a zephyr/libzephyr.a(soc.c.obj) + .debug_line 0x0000000000009d4d 0x198f zephyr/libzephyr.a(log_core.c.obj) + .debug_line 0x000000000000b6dc 0xd38 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_line 0x000000000000c414 0xed2 zephyr/libzephyr.a(log_msg.c.obj) + .debug_line 0x000000000000d2e6 0xcfe zephyr/libzephyr.a(log_output.c.obj) + .debug_line 0x000000000000dfe4 0x744 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_line 0x000000000000e728 0x20d0 zephyr/libzephyr.a(usb_device.c.obj) + .debug_line 0x00000000000107f8 0xcfb zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_line 0x00000000000114f3 0x104f zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_line 0x0000000000012542 0x1d3 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_line 0x0000000000012715 0x2ab zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_line 0x00000000000129c0 0x7bd zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_line 0x000000000001317d 0x1e3 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_line 0x0000000000013360 0x73 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .debug_line 0x00000000000133d3 0x4a9 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_line 0x000000000001387c 0x3ca zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_line 0x0000000000013c46 0x88a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_line 0x00000000000144d0 0x80 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .debug_line 0x0000000000014550 0x8e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .debug_line 0x00000000000145de 0x4fd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_line 0x0000000000014adb 0xf1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_line 0x0000000000014bcc 0x48c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_line 0x0000000000015058 0x3b3 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_line 0x000000000001540b 0x664 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_line 0x0000000000015a6f 0x32d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_line 0x0000000000015d9c 0x2ff zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_line 0x000000000001609b 0x2e8 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_line 0x0000000000016383 0x81 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .debug_line 0x0000000000016404 0x2e1 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x00000000000166e5 0x378 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0000000000016a5d 0x7dc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x0000000000017239 0x5b7 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_line 0x00000000000177f0 0x8ca zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_line 0x00000000000180ba 0x1162 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_line 0x000000000001921c 0x225b zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_line 0x000000000001b477 0x1f58 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_line 0x000000000001d3cf 0x3185 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_line 0x0000000000020554 0xf63 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_line 0x00000000000214b7 0xc7f zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_line 0x0000000000022136 0x330 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_line 0x0000000000022466 0x4eb zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x0000000000022951 0x1030 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_line 0x0000000000023981 0x4fa zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_line 0x0000000000023e7b 0x1f6 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0000000000024071 0x496 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_line 0x0000000000024507 0x3fb zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_line 0x0000000000024902 0x1f68 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_line 0x000000000002686a 0xbc7 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_line 0x0000000000027431 0x2a9 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_line 0x00000000000276da 0xfad modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_line 0x0000000000028687 0x1487 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_line 0x0000000000029b0e 0x51a modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_line 0x000000000002a028 0x1e95 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_line 0x000000000002bebd 0x8e2 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_line 0x000000000002c79f 0x521 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x000000000002ccc0 0xbb1 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x000000000002d871 0xbe6 zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x000000000002e457 0x3f7 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x000000000002e84e 0xc65 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x000000000002f4b3 0xb65 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x0000000000030018 0x3de zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_line 0x00000000000303f6 0x2b6c zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0000000000032f62 0xc04 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0000000000033b66 0x3d4c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x00000000000378b2 0x7c2 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x0000000000038074 0x114f zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x00000000000391c3 0xd80 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x0000000000039f43 0xc33 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_line 0x000000000003ab76 0x870 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x000000000003b3e6 0x1da zephyr/kernel/libkernel.a(banner.c.obj) + .debug_line 0x000000000003b5c0 0x9ba zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x000000000003bf7a 0x1d2 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_frame 0x0000000000000000 0x4b6c + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x0000000000000000 0x20 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_frame 0x0000000000000020 0x2c app/libapp.a(main.c.obj) + .debug_frame 0x000000000000004c 0x4c app/libapp.a(cdc_handler.c.obj) + .debug_frame 0x0000000000000098 0x98 app/libapp.a(pfet_control.c.obj) + .debug_frame 0x0000000000000130 0xac app/libapp.a(gs_usb_can.c.obj) + .debug_frame 0x00000000000001dc 0x48 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_frame 0x0000000000000224 0x204 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x0000000000000428 0xb0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x00000000000004d8 0x94 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x000000000000056c 0x34 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x00000000000005a0 0x228 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_frame 0x00000000000007c8 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x00000000000007e8 0x24 zephyr/libzephyr.a(soc_config.c.obj) + .debug_frame 0x000000000000080c 0x40 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_frame 0x000000000000084c 0x24 zephyr/libzephyr.a(soc.c.obj) + .debug_frame 0x0000000000000870 0x448 zephyr/libzephyr.a(log_core.c.obj) + .debug_frame 0x0000000000000cb8 0x1a4 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_frame 0x0000000000000e5c 0x114 zephyr/libzephyr.a(log_msg.c.obj) + .debug_frame 0x0000000000000f70 0x148 zephyr/libzephyr.a(log_output.c.obj) + .debug_frame 0x00000000000010b8 0xa4 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_frame 0x000000000000115c 0x310 zephyr/libzephyr.a(usb_device.c.obj) + .debug_frame 0x000000000000146c 0xa4 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_frame 0x0000000000001510 0x128 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_frame 0x0000000000001638 0x58 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_frame 0x0000000000001690 0x28 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_frame 0x00000000000016b8 0x68 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_frame 0x0000000000001720 0x28 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_frame 0x0000000000001748 0x34 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_frame 0x000000000000177c 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_frame 0x000000000000179c 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_frame 0x00000000000017e0 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_frame 0x0000000000001808 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_frame 0x000000000000187c 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_frame 0x00000000000018b4 0x74 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_frame 0x0000000000001928 0x40 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_frame 0x0000000000001968 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_frame 0x0000000000001998 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_frame 0x00000000000019c0 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x0000000000001a08 0x60 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x0000000000001a68 0xfc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x0000000000001b64 0x4c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_frame 0x0000000000001bb0 0xf4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_frame 0x0000000000001ca4 0x184 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_frame 0x0000000000001e28 0x3f4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_frame 0x000000000000221c 0x1b4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_frame 0x00000000000023d0 0x37c zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_frame 0x000000000000274c 0xe0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_frame 0x000000000000282c 0xe0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_frame 0x000000000000290c 0x44 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_frame 0x0000000000002950 0x54 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x00000000000029a4 0x138 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_frame 0x0000000000002adc 0x68 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_frame 0x0000000000002b44 0x2c zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x0000000000002b70 0x34 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_frame 0x0000000000002ba4 0x5c zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_frame 0x0000000000002c00 0x10c zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_frame 0x0000000000002d0c 0xec zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_frame 0x0000000000002df8 0x38 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_frame 0x0000000000002e30 0x178 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_frame 0x0000000000002fa8 0x31c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_frame 0x00000000000032c4 0xb4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_frame 0x0000000000003378 0x2d4 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_frame 0x000000000000364c 0xc0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_frame 0x000000000000370c 0xa4 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x00000000000037b0 0x74 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x0000000000003824 0xb4 zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00000000000038d8 0x38 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x0000000000003910 0x78 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x0000000000003988 0x78 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x0000000000003a00 0x2c zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x0000000000003a2c 0x3a8 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x0000000000003dd4 0x14c zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x0000000000003f20 0x480 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x00000000000043a0 0x80 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x0000000000004420 0x1b8 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00000000000045d8 0xa8 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x0000000000004680 0xe8 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_frame 0x0000000000004768 0x104 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x000000000000486c 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_frame 0x0000000000004894 0x110 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x00000000000049a4 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .debug_frame 0x00000000000049c4 0x28 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .debug_frame 0x00000000000049ec 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .debug_frame 0x0000000000004a0c 0x2c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .debug_frame 0x0000000000004a38 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .debug_frame 0x0000000000004a58 0x34 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x0000000000004a8c 0x50 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x0000000000004adc 0x20 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .debug_frame 0x0000000000004afc 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .debug_frame 0x0000000000004b1c 0x20 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .debug_frame 0x0000000000004b3c 0x30 c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + +.debug_str 0x0000000000000000 0xda54 + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x0000000000000000 0x3be zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + 0x3ff (size before relaxing) + .debug_str 0x00000000000003be 0xb38 app/libapp.a(main.c.obj) + 0xed8 (size before relaxing) + .debug_str 0x0000000000000ef6 0x157 app/libapp.a(cdc_handler.c.obj) + 0xbcc (size before relaxing) + .debug_str 0x000000000000104d 0x10b app/libapp.a(pfet_control.c.obj) + 0xec2 (size before relaxing) + .debug_str 0x0000000000001158 0x454 app/libapp.a(gs_usb_can.c.obj) + 0xfb7 (size before relaxing) + .debug_str 0x00000000000015ac 0x164 app/libapp.a(usb_gs_usb_class.c.obj) + 0xb2c (size before relaxing) + .debug_str 0x0000000000001710 0x452 zephyr/libzephyr.a(heap.c.obj) + 0x808 (size before relaxing) + .debug_str 0x0000000000001b62 0x341 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0xd27 (size before relaxing) + .debug_str 0x0000000000001ea3 0xe3 zephyr/libzephyr.a(printk.c.obj) + 0x60e (size before relaxing) + .debug_str 0x0000000000001f86 0x1e2 zephyr/libzephyr.a(thread_entry.c.obj) + 0x7c6 (size before relaxing) + .debug_str 0x0000000000002168 0x3f2 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x841 (size before relaxing) + .debug_str 0x000000000000255a 0x49 zephyr/libzephyr.a(last_section_id.c.obj) + 0x2db (size before relaxing) + .debug_str 0x00000000000025a3 0x7d zephyr/libzephyr.a(configs.c.obj) + 0x26b (size before relaxing) + .debug_str 0x0000000000002620 0x1a8 zephyr/libzephyr.a(soc_config.c.obj) + 0x579 (size before relaxing) + .debug_str 0x00000000000027c8 0x1b1 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + 0xbe5 (size before relaxing) + .debug_str 0x0000000000002979 0x1af zephyr/libzephyr.a(soc.c.obj) + 0x55c (size before relaxing) + .debug_str 0x0000000000002b28 0xaeb zephyr/libzephyr.a(log_core.c.obj) + 0x1cd4 (size before relaxing) + .debug_str 0x0000000000003613 0x568 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x100d (size before relaxing) + .debug_str 0x0000000000003b7b 0x10d zephyr/libzephyr.a(log_msg.c.obj) + 0xcbf (size before relaxing) + .debug_str 0x0000000000003c88 0x30e zephyr/libzephyr.a(log_output.c.obj) + 0xcfc (size before relaxing) + .debug_str 0x0000000000003f96 0x1d5 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0xeb2 (size before relaxing) + .debug_str 0x000000000000416b 0xbca zephyr/libzephyr.a(usb_device.c.obj) + 0x1a46 (size before relaxing) + .debug_str 0x0000000000004d35 0x3b0 zephyr/libzephyr.a(usb_descriptor.c.obj) + 0x1493 (size before relaxing) + .debug_str 0x00000000000050e5 0x1a7 zephyr/libzephyr.a(usb_transfer.c.obj) + 0xfcc (size before relaxing) + .debug_str 0x000000000000528c 0x80 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x329 (size before relaxing) + .debug_str 0x000000000000530c 0xbf zephyr/arch/common/libarch__common.a(xip.c.obj) + 0x386 (size before relaxing) + .debug_str 0x00000000000053cb 0x11b zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + 0xaa9 (size before relaxing) + .debug_str 0x00000000000054e6 0x62 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + 0x310 (size before relaxing) + .debug_str 0x0000000000005548 0x4e zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + 0x9c (size before relaxing) + .debug_str 0x0000000000005596 0xa8 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x7bc (size before relaxing) + .debug_str 0x000000000000563e 0xa9 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + 0x5ae (size before relaxing) + .debug_str 0x00000000000056e7 0x16b zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + 0xc75 (size before relaxing) + .debug_str 0x0000000000005852 0x46 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + 0xa0 (size before relaxing) + .debug_str 0x0000000000005898 0x44 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + 0x9e (size before relaxing) + .debug_str 0x00000000000058dc 0x69 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + 0x5f8 (size before relaxing) + .debug_str 0x0000000000005945 0x4a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + 0xa4 (size before relaxing) + .debug_str 0x000000000000598f 0x35a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + 0x744 (size before relaxing) + .debug_str 0x0000000000005ce9 0xc6 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + 0x42d (size before relaxing) + .debug_str 0x0000000000005daf 0xde zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + 0x6f0 (size before relaxing) + .debug_str 0x0000000000005e8d 0x7e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + 0x3ab (size before relaxing) + .debug_str 0x0000000000005f0b 0x47 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + 0x608 (size before relaxing) + .debug_str 0x0000000000005f52 0x81 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + 0x37c (size before relaxing) + .debug_str 0x0000000000005fd3 0x4e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + 0xa8 (size before relaxing) + .debug_str 0x0000000000006021 0x5a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x3a0 (size before relaxing) + .debug_str 0x000000000000607b 0xb7 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x5de (size before relaxing) + .debug_str 0x0000000000006132 0x2ea zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x841 (size before relaxing) + .debug_str 0x000000000000641c 0xe4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + 0x997 (size before relaxing) + .debug_str 0x0000000000006500 0x567 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + 0xe28 (size before relaxing) + .debug_str 0x0000000000006a67 0x6a7 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + 0x1309 (size before relaxing) + .debug_str 0x000000000000710e 0x975 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + 0x1d43 (size before relaxing) + .debug_str 0x0000000000007a83 0x479 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + 0x1314 (size before relaxing) + .debug_str 0x0000000000007efc 0x747 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + 0x1820 (size before relaxing) + .debug_str 0x0000000000008643 0x40c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + 0x1ab7 (size before relaxing) + .debug_str 0x0000000000008a4f 0x481 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + 0xd03 (size before relaxing) + .debug_str 0x0000000000008ed0 0xe8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + 0x4d5 (size before relaxing) + .debug_str 0x0000000000008fb8 0x10e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x680 (size before relaxing) + .debug_str 0x00000000000090c6 0x733 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + 0x158d (size before relaxing) + .debug_str 0x00000000000097f9 0x1d1 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + 0x617 (size before relaxing) + .debug_str 0x00000000000099ca 0x3e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x37e (size before relaxing) + .debug_str 0x0000000000009a08 0x90 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + 0x704 (size before relaxing) + .debug_str 0x0000000000009a98 0x186 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + 0x5bf (size before relaxing) + .debug_str 0x0000000000009c1e 0xc69 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + 0x1c06 (size before relaxing) + .debug_str 0x000000000000a887 0x171 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + 0x999 (size before relaxing) + .debug_str 0x000000000000a9f8 0xac modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + 0x439 (size before relaxing) + .debug_str 0x000000000000aaa4 0x3a7 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + 0x940 (size before relaxing) + .debug_str 0x000000000000ae4b 0x3bc modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + 0xcab (size before relaxing) + .debug_str 0x000000000000b207 0x1a8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + 0x8ca (size before relaxing) + .debug_str 0x000000000000b3af 0x3b5 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + 0xaa1 (size before relaxing) + .debug_str 0x000000000000b764 0x276 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + 0x848 (size before relaxing) + .debug_str 0x000000000000b9da 0x10a zephyr/kernel/libkernel.a(device.c.obj) + 0x45f (size before relaxing) + .debug_str 0x000000000000bae4 0xbd zephyr/kernel/libkernel.a(fatal.c.obj) + 0xd95 (size before relaxing) + .debug_str 0x000000000000bba1 0x488 zephyr/kernel/libkernel.a(init.c.obj) + 0x11d2 (size before relaxing) + .debug_str 0x000000000000c029 0x57 zephyr/kernel/libkernel.a(idle.c.obj) + 0x3f6 (size before relaxing) + .debug_str 0x000000000000c080 0x25e zephyr/kernel/libkernel.a(mutex.c.obj) + 0xcfe (size before relaxing) + .debug_str 0x000000000000c2de 0x58 zephyr/kernel/libkernel.a(sem.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x000000000000c336 0xa6 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x8a9 (size before relaxing) + .debug_str 0x000000000000c3dc 0x720 zephyr/kernel/libkernel.a(work.c.obj) + 0x11cc (size before relaxing) + .debug_str 0x000000000000cafc 0x232 zephyr/kernel/libkernel.a(thread.c.obj) + 0xdcf (size before relaxing) + .debug_str 0x000000000000cd2e 0x6e4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x15dc (size before relaxing) + .debug_str 0x000000000000d412 0xc3 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xa2e (size before relaxing) + .debug_str 0x000000000000d4d5 0x14c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x973 (size before relaxing) + .debug_str 0x000000000000d621 0x9c zephyr/kernel/libkernel.a(timer.c.obj) + 0xa9c (size before relaxing) + .debug_str 0x000000000000d6bd 0xd8 zephyr/kernel/libkernel.a(atomic_c.c.obj) + 0x57a (size before relaxing) + .debug_str 0x000000000000d795 0x126 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x9d5 (size before relaxing) + .debug_str 0x000000000000d8bb 0x35 zephyr/kernel/libkernel.a(banner.c.obj) + 0x2f6 (size before relaxing) + .debug_str 0x000000000000d8f0 0xfb zephyr/kernel/libkernel.a(kheap.c.obj) + 0x964 (size before relaxing) + .debug_str 0x000000000000d9eb 0x69 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x415 (size before relaxing) + +.debug_loc 0x0000000000000000 0x395c1 + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x0000000000000000 0x650 app/libapp.a(main.c.obj) + .debug_loc 0x0000000000000650 0x19a app/libapp.a(cdc_handler.c.obj) + .debug_loc 0x00000000000007ea 0xd62 app/libapp.a(pfet_control.c.obj) + .debug_loc 0x000000000000154c 0xf57 app/libapp.a(gs_usb_can.c.obj) + .debug_loc 0x00000000000024a3 0x3a2 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_loc 0x0000000000002845 0x3c18 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x000000000000645d 0x27c3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x0000000000008c20 0x130 zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x0000000000008d50 0x9e zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x0000000000008dee 0x186d zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_loc 0x000000000000a65b 0x30 zephyr/libzephyr.a(soc_config.c.obj) + .debug_loc 0x000000000000a68b 0x1c8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_loc 0x000000000000a853 0x64 zephyr/libzephyr.a(soc.c.obj) + .debug_loc 0x000000000000a8b7 0x13b3 zephyr/libzephyr.a(log_core.c.obj) + .debug_loc 0x000000000000bc6a 0xcff zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_loc 0x000000000000c969 0x124d zephyr/libzephyr.a(log_msg.c.obj) + .debug_loc 0x000000000000dbb6 0x15d4 zephyr/libzephyr.a(log_output.c.obj) + .debug_loc 0x000000000000f18a 0x4b5 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_loc 0x000000000000f63f 0x2474 zephyr/libzephyr.a(usb_device.c.obj) + .debug_loc 0x0000000000011ab3 0x1027 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_loc 0x0000000000012ada 0xc7c zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_loc 0x0000000000013756 0xde zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_loc 0x0000000000013834 0xb55 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_loc 0x0000000000014389 0xd6 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_loc 0x000000000001445f 0xacd zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_loc 0x0000000000014f2c 0x3a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_loc 0x0000000000014f66 0x1d1 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_loc 0x0000000000015137 0x15d zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_loc 0x0000000000015294 0x15 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_loc 0x00000000000152a9 0x6a zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_loc 0x0000000000015313 0x3f zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_loc 0x0000000000015352 0x128 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x000000000001547a 0xe6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x0000000000015560 0x61e zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x0000000000015b7e 0x19c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_loc 0x0000000000015d1a 0x6d9 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_loc 0x00000000000163f3 0x1638 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_loc 0x0000000000017a2b 0x20a4 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_loc 0x0000000000019acf 0x24f4 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_loc 0x000000000001bfc3 0x3e77 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_loc 0x000000000001fe3a 0x1440 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_loc 0x000000000002127a 0xb28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_loc 0x0000000000021da2 0x8a zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_loc 0x0000000000021e2c 0x85 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x0000000000021eb1 0x19a3 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_loc 0x0000000000023854 0xc1 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_loc 0x0000000000023915 0x42 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0000000000023957 0x29f zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_loc 0x0000000000023bf6 0x3f7 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_loc 0x0000000000023fed 0x275d zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_loc 0x000000000002674a 0x5d8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_loc 0x0000000000026d22 0xe0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_loc 0x0000000000026e02 0x73b modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_loc 0x000000000002753d 0x136c modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_loc 0x00000000000288a9 0x273 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_loc 0x0000000000028b1c 0x23ad modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_loc 0x000000000002aec9 0x7a8 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_loc 0x000000000002b671 0x24e zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x000000000002b8bf 0x979 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x000000000002c238 0x447 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x000000000002c67f 0x6f zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x000000000002c6ee 0x728 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x000000000002ce16 0x6d5 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x000000000002d4eb 0x3f67 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x0000000000031452 0x8f0 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x0000000000031d42 0x42a4 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0000000000035fe6 0x2fb zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x00000000000362e1 0x1067 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0000000000037348 0x843 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0000000000037b8b 0x7ac zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_loc 0x0000000000038337 0x924 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0000000000038c5b 0x966 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x0000000000000000 0xa130 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x0000000000000000 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .debug_ranges 0x0000000000000020 0x10 zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .debug_ranges 0x0000000000000030 0x100 app/libapp.a(main.c.obj) + .debug_ranges 0x0000000000000130 0xd0 app/libapp.a(cdc_handler.c.obj) + .debug_ranges 0x0000000000000200 0x338 app/libapp.a(pfet_control.c.obj) + .debug_ranges 0x0000000000000538 0x710 app/libapp.a(gs_usb_can.c.obj) + .debug_ranges 0x0000000000000c48 0x150 app/libapp.a(usb_gs_usb_class.c.obj) + .debug_ranges 0x0000000000000d98 0x5c8 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x0000000000001360 0x398 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x00000000000016f8 0x38 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x0000000000001730 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x0000000000001758 0x418 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_ranges 0x0000000000001b70 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x0000000000001b80 0x60 zephyr/libzephyr.a(soc_config.c.obj) + .debug_ranges 0x0000000000001be0 0xa8 zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .debug_ranges 0x0000000000001c88 0x80 zephyr/libzephyr.a(soc.c.obj) + .debug_ranges 0x0000000000001d08 0x528 zephyr/libzephyr.a(log_core.c.obj) + .debug_ranges 0x0000000000002230 0x4b8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_ranges 0x00000000000026e8 0x318 zephyr/libzephyr.a(log_msg.c.obj) + .debug_ranges 0x0000000000002a00 0x250 zephyr/libzephyr.a(log_output.c.obj) + .debug_ranges 0x0000000000002c50 0xc0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_ranges 0x0000000000002d10 0x610 zephyr/libzephyr.a(usb_device.c.obj) + .debug_ranges 0x0000000000003320 0x1b0 zephyr/libzephyr.a(usb_descriptor.c.obj) + .debug_ranges 0x00000000000034d0 0x1f8 zephyr/libzephyr.a(usb_transfer.c.obj) + .debug_ranges 0x00000000000036c8 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_ranges 0x00000000000036e8 0x10 zephyr/arch/common/libarch__common.a(xip.c.obj) + .debug_ranges 0x00000000000036f8 0x1a8 zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .debug_ranges 0x00000000000038a0 0x10 zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .debug_ranges 0x00000000000038b0 0x50 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .debug_ranges 0x0000000000003900 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .debug_ranges 0x0000000000003910 0x170 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .debug_ranges 0x0000000000003a80 0x10 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .debug_ranges 0x0000000000003a90 0x58 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .debug_ranges 0x0000000000003ae8 0x18 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .debug_ranges 0x0000000000003b00 0x30 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .debug_ranges 0x0000000000003b30 0x20 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .debug_ranges 0x0000000000003b50 0x38 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .debug_ranges 0x0000000000003b88 0x28 zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .debug_ranges 0x0000000000003bb0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x0000000000003bc8 0x48 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x0000000000003c10 0xf0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x0000000000003d00 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .debug_ranges 0x0000000000003d18 0x210 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .debug_ranges 0x0000000000003f28 0x290 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .debug_ranges 0x00000000000041b8 0x5e8 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .debug_ranges 0x00000000000047a0 0x6d0 zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .debug_ranges 0x0000000000004e70 0x5b8 zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .debug_ranges 0x0000000000005428 0x280 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .debug_ranges 0x00000000000056a8 0x288 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .debug_ranges 0x0000000000005930 0x90 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .debug_ranges 0x00000000000059c0 0x68 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x0000000000005a28 0x2d0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .debug_ranges 0x0000000000005cf8 0x80 zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .debug_ranges 0x0000000000005d78 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x0000000000005d88 0x58 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .debug_ranges 0x0000000000005de0 0x78 zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .debug_ranges 0x0000000000005e58 0x9c8 zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .debug_ranges 0x0000000000006820 0xf8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .debug_ranges 0x0000000000006918 0x18 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .debug_ranges 0x0000000000006930 0xd0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .debug_ranges 0x0000000000006a00 0x218 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .debug_ranges 0x0000000000006c18 0x48 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .debug_ranges 0x0000000000006c60 0x548 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .debug_ranges 0x00000000000071a8 0x1d0 modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .debug_ranges 0x0000000000007378 0x98 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x0000000000007410 0x3c0 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x00000000000077d0 0x198 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x0000000000007968 0x18 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x0000000000007980 0x1b8 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x0000000000007b38 0x230 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x0000000000007d68 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_ranges 0x0000000000007d78 0x998 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x0000000000008710 0x1c8 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x00000000000088d8 0xe88 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x0000000000009760 0xa8 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x0000000000009808 0x388 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x0000000000009b90 0x168 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x0000000000009cf8 0x248 zephyr/kernel/libkernel.a(atomic_c.c.obj) + .debug_ranges 0x0000000000009f40 0x90 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x0000000000009fd0 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_ranges 0x0000000000009fe0 0x150 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.note.GNU-stack)) + +.ARM.attributes + 0x0000000000000000 0x30 + *(SORT_BY_ALIGNMENT(.ARM.attributes)) + .ARM.attributes + 0x0000000000000000 0x2e zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .ARM.attributes + 0x000000000000002e 0x2e zephyr/CMakeFiles/offsets.dir/./arch/arm/core/offsets/offsets.c.obj + .ARM.attributes + 0x000000000000005c 0x2e app/libapp.a(main.c.obj) + .ARM.attributes + 0x000000000000008a 0x2e app/libapp.a(cdc_handler.c.obj) + .ARM.attributes + 0x00000000000000b8 0x2e app/libapp.a(pfet_control.c.obj) + .ARM.attributes + 0x00000000000000e6 0x2e app/libapp.a(gs_usb_can.c.obj) + .ARM.attributes + 0x0000000000000114 0x2e app/libapp.a(usb_gs_usb_class.c.obj) + .ARM.attributes + 0x0000000000000142 0x2e zephyr/libzephyr.a(validate_libc.c.obj) + .ARM.attributes + 0x0000000000000170 0x2e zephyr/libzephyr.a(heap.c.obj) + .ARM.attributes + 0x000000000000019e 0x2e zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .ARM.attributes + 0x00000000000001cc 0x2e zephyr/libzephyr.a(clock.c.obj) + .ARM.attributes + 0x00000000000001fa 0x2e zephyr/libzephyr.a(printk.c.obj) + .ARM.attributes + 0x0000000000000228 0x2e zephyr/libzephyr.a(sem.c.obj) + .ARM.attributes + 0x0000000000000256 0x2e zephyr/libzephyr.a(thread_entry.c.obj) + .ARM.attributes + 0x0000000000000284 0x2e zephyr/libzephyr.a(cbprintf_complete.c.obj) + .ARM.attributes + 0x00000000000002b2 0x2e zephyr/libzephyr.a(assert.c.obj) + .ARM.attributes + 0x00000000000002e0 0x2e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .ARM.attributes + 0x000000000000030e 0x2e zephyr/libzephyr.a(dec.c.obj) + .ARM.attributes + 0x000000000000033c 0x2e zephyr/libzephyr.a(hex.c.obj) + .ARM.attributes + 0x000000000000036a 0x2e zephyr/libzephyr.a(rb.c.obj) + .ARM.attributes + 0x0000000000000398 0x2e zephyr/libzephyr.a(timeutil.c.obj) + .ARM.attributes + 0x00000000000003c6 0x2e zephyr/libzephyr.a(bitarray.c.obj) + .ARM.attributes + 0x00000000000003f4 0x2e zephyr/libzephyr.a(bitmask.c.obj) + .ARM.attributes + 0x0000000000000422 0x2e zephyr/libzephyr.a(ring_buffer.c.obj) + .ARM.attributes + 0x0000000000000450 0x2e zephyr/libzephyr.a(last_section_id.c.obj) + .ARM.attributes + 0x000000000000047e 0x2e zephyr/libzephyr.a(configs.c.obj) + .ARM.attributes + 0x00000000000004ac 0x2e zephyr/libzephyr.a(stm32cube_hal.c.obj) + .ARM.attributes + 0x00000000000004da 0x2e zephyr/libzephyr.a(soc_config.c.obj) + .ARM.attributes + 0x0000000000000508 0x2e zephyr/libzephyr.a(stm32_backup_domain.c.obj) + .ARM.attributes + 0x0000000000000536 0x2e zephyr/libzephyr.a(soc.c.obj) + .ARM.attributes + 0x0000000000000564 0x2e zephyr/libzephyr.a(log_core.c.obj) + .ARM.attributes + 0x0000000000000592 0x2e zephyr/libzephyr.a(log_mgmt.c.obj) + .ARM.attributes + 0x00000000000005c0 0x2e zephyr/libzephyr.a(log_cache.c.obj) + .ARM.attributes + 0x00000000000005ee 0x2e zephyr/libzephyr.a(log_msg.c.obj) + .ARM.attributes + 0x000000000000061c 0x2e zephyr/libzephyr.a(log_output.c.obj) + .ARM.attributes + 0x000000000000064a 0x2e zephyr/libzephyr.a(log_backend_uart.c.obj) + .ARM.attributes + 0x0000000000000678 0x2e zephyr/libzephyr.a(tracing_none.c.obj) + .ARM.attributes + 0x00000000000006a6 0x2e zephyr/libzephyr.a(usb_device.c.obj) + .ARM.attributes + 0x00000000000006d4 0x2e zephyr/libzephyr.a(usb_descriptor.c.obj) + .ARM.attributes + 0x0000000000000702 0x2e zephyr/libzephyr.a(usb_transfer.c.obj) + .ARM.attributes + 0x0000000000000730 0x2e zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .ARM.attributes + 0x000000000000075e 0x2e zephyr/arch/common/libarch__common.a(init.c.obj) + .ARM.attributes + 0x000000000000078c 0x2e zephyr/arch/common/libarch__common.a(xip.c.obj) + .ARM.attributes + 0x00000000000007ba 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(fatal.c.obj) + .ARM.attributes + 0x00000000000007e8 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi.c.obj) + .ARM.attributes + 0x0000000000000816 0x1c zephyr/arch/arch/arm/core/libarch__arm__core.a(nmi_on_reset.S.obj) + .ARM.attributes + 0x0000000000000832 0x2e zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + .ARM.attributes + 0x0000000000000860 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(exc_exit.c.obj) + .ARM.attributes + 0x000000000000088e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault.c.obj) + .ARM.attributes + 0x00000000000008bc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fault_s.S.obj) + .ARM.attributes + 0x00000000000008d8 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(fpu.c.obj) + .ARM.attributes + 0x0000000000000906 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(reset.S.obj) + .ARM.attributes + 0x0000000000000922 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(scb.c.obj) + .ARM.attributes + 0x0000000000000950 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread_abort.c.obj) + .ARM.attributes + 0x000000000000097e 0x1e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(vector_table.S.obj) + .ARM.attributes + 0x000000000000099c 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(swap_helper.S.obj) + .ARM.attributes + 0x00000000000009b8 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_manage.c.obj) + .ARM.attributes + 0x00000000000009e6 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(prep_c.c.obj) + .ARM.attributes + 0x0000000000000a14 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(thread.c.obj) + .ARM.attributes + 0x0000000000000a42 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(cpu_idle.c.obj) + .ARM.attributes + 0x0000000000000a70 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(irq_init.c.obj) + .ARM.attributes + 0x0000000000000a9e 0x2e zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(isr_wrapper.c.obj) + .ARM.attributes + 0x0000000000000acc 0x1c zephyr/arch/arch/arm/core/cortex_m/libarch__arm__core__cortex_m.a(__aeabi_read_tp.S.obj) + .ARM.attributes + 0x0000000000000ae8 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .ARM.attributes + 0x0000000000000b16 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .ARM.attributes + 0x0000000000000b44 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .ARM.attributes + 0x0000000000000b72 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .ARM.attributes + 0x0000000000000ba0 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .ARM.attributes + 0x0000000000000bce 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .ARM.attributes + 0x0000000000000bfc 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .ARM.attributes + 0x0000000000000c2a 0x2e zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .ARM.attributes + 0x0000000000000c58 0x2e zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .ARM.attributes + 0x0000000000000c86 0x2e zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .ARM.attributes + 0x0000000000000cb4 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .ARM.attributes + 0x0000000000000ce2 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .ARM.attributes + 0x0000000000000d10 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt.c.obj) + .ARM.attributes + 0x0000000000000d3e 0x2e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_common.c.obj) + .ARM.attributes + 0x0000000000000d6c 0x2e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .ARM.attributes + 0x0000000000000d9a 0x2e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_exti_stm32.c.obj) + .ARM.attributes + 0x0000000000000dc8 0x2e zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .ARM.attributes + 0x0000000000000df6 0x2e zephyr/drivers/can/libdrivers__can.a(can_common.c.obj) + .ARM.attributes + 0x0000000000000e24 0x2e zephyr/drivers/can/libdrivers__can.a(can_mcan.c.obj) + .ARM.attributes + 0x0000000000000e52 0x2e zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .ARM.attributes + 0x0000000000000e80 0x2e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32_ll_common.c.obj) + .ARM.attributes + 0x0000000000000eae 0x2e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_stm32g0_u0.c.obj) + .ARM.attributes + 0x0000000000000edc 0x2e zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .ARM.attributes + 0x0000000000000f0a 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .ARM.attributes + 0x0000000000000f38 0x2e zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_weak_impl.c.obj) + .ARM.attributes + 0x0000000000000f66 0x2e zephyr/drivers/hwinfo/libdrivers__hwinfo.a(hwinfo_stm32.c.obj) + .ARM.attributes + 0x0000000000000f94 0x2e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .ARM.attributes + 0x0000000000000fc2 0x2e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_stm32.c.obj) + .ARM.attributes + 0x0000000000000ff0 0x2e zephyr/drivers/reset/libdrivers__reset.a(reset_stm32.c.obj) + .ARM.attributes + 0x000000000000101e 0x2e zephyr/drivers/serial/libdrivers__serial.a(uart_stm32.c.obj) + .ARM.attributes + 0x000000000000104c 0x2e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .ARM.attributes + 0x000000000000107a 0x2e zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .ARM.attributes + 0x00000000000010a8 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(system_stm32g0xx.c.obj) + .ARM.attributes + 0x00000000000010d6 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal.c.obj) + .ARM.attributes + 0x0000000000001104 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc.c.obj) + .ARM.attributes + 0x0000000000001132 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_rcc_ex.c.obj) + .ARM.attributes + 0x0000000000001160 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd.c.obj) + .ARM.attributes + 0x000000000000118e 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_hal_pcd_ex.c.obj) + .ARM.attributes + 0x00000000000011bc 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_usb.c.obj) + .ARM.attributes + 0x00000000000011ea 0x2e modules/hal_stm32/stm32cube/lib..__modules__hal__stm32__stm32cube.a(stm32g0xx_ll_utils.c.obj) + .ARM.attributes + 0x0000000000001218 0x2e zephyr/kernel/libkernel.a(device.c.obj) + .ARM.attributes + 0x0000000000001246 0x2e zephyr/kernel/libkernel.a(fatal.c.obj) + .ARM.attributes + 0x0000000000001274 0x2e zephyr/kernel/libkernel.a(init.c.obj) + .ARM.attributes + 0x00000000000012a2 0x2e zephyr/kernel/libkernel.a(idle.c.obj) + .ARM.attributes + 0x00000000000012d0 0x2e zephyr/kernel/libkernel.a(msg_q.c.obj) + .ARM.attributes + 0x00000000000012fe 0x2e zephyr/kernel/libkernel.a(mutex.c.obj) + .ARM.attributes + 0x000000000000132c 0x2e zephyr/kernel/libkernel.a(sem.c.obj) + .ARM.attributes + 0x000000000000135a 0x2e zephyr/kernel/libkernel.a(system_work_q.c.obj) + .ARM.attributes + 0x0000000000001388 0x2e zephyr/kernel/libkernel.a(work.c.obj) + .ARM.attributes + 0x00000000000013b6 0x2e zephyr/kernel/libkernel.a(thread.c.obj) + .ARM.attributes + 0x00000000000013e4 0x2e zephyr/kernel/libkernel.a(sched.c.obj) + .ARM.attributes + 0x0000000000001412 0x2e zephyr/kernel/libkernel.a(timeslicing.c.obj) + .ARM.attributes + 0x0000000000001440 0x2e zephyr/kernel/libkernel.a(timeout.c.obj) + .ARM.attributes + 0x000000000000146e 0x2e zephyr/kernel/libkernel.a(timer.c.obj) + .ARM.attributes + 0x000000000000149c 0x2e zephyr/kernel/libkernel.a(atomic_c.c.obj) + .ARM.attributes + 0x00000000000014ca 0x2e zephyr/kernel/libkernel.a(mempool.c.obj) + .ARM.attributes + 0x00000000000014f8 0x2e zephyr/kernel/libkernel.a(banner.c.obj) + .ARM.attributes + 0x0000000000001526 0x2e zephyr/kernel/libkernel.a(kheap.c.obj) + .ARM.attributes + 0x0000000000001554 0x2e zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .ARM.attributes + 0x0000000000001582 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcmp.S.o) + .ARM.attributes + 0x000000000000159e 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strcpy.S.o) + .ARM.attributes + 0x00000000000015ba 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memcpy.c.o) + .ARM.attributes + 0x00000000000015ea 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(memset.c.o) + .ARM.attributes + 0x000000000000161a 0x1c c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(strlen.S.o) + .ARM.attributes + 0x0000000000001636 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_errno_errno.c.o) + .ARM.attributes + 0x0000000000001666 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strchr.c.o) + .ARM.attributes + 0x0000000000001696 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strncmp.c.o) + .ARM.attributes + 0x00000000000016c6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_string_strnlen.c.o) + .ARM.attributes + 0x00000000000016f6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_puts.c.o) + .ARM.attributes + 0x0000000000001726 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_snprintf.c.o) + .ARM.attributes + 0x0000000000001756 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflprintf.c.o) + .ARM.attributes + 0x0000000000001786 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_vflscanf.c.o) + .ARM.attributes + 0x00000000000017b6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_fgetc.c.o) + .ARM.attributes + 0x00000000000017e6 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_filestrput.c.o) + .ARM.attributes + 0x0000000000001816 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_ungetc.c.o) + .ARM.attributes + 0x0000000000001846 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_compare_exchange.c.o) + .ARM.attributes + 0x0000000000001876 0x30 c:\users\iteedi\zephyr-sdk-0.17.4\arm-zephyr-eabi\bin\../lib/gcc/../../picolibc/arm-zephyr-eabi/lib/thumb/v6-m/nofp\libc.a(libc_tinystdio_exchange.c.o) + .ARM.attributes + 0x00000000000018a6 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_sqi.o) + .ARM.attributes + 0x00000000000018c4 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uqi.o) + .ARM.attributes + 0x00000000000018e2 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_shi.o) + .ARM.attributes + 0x0000000000001900 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivsi3.o) + .ARM.attributes + 0x000000000000191e 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divsi3.o) + .ARM.attributes + 0x000000000000193c 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x000000000000195a 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000000000001978 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzsi2.o) + .ARM.attributes + 0x0000000000001996 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ctzsi2.o) + .ARM.attributes + 0x00000000000019b4 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_ldivmod.o) + .ARM.attributes + 0x00000000000019d2 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x00000000000019f0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_muldi3.o) + .ARM.attributes + 0x0000000000001a1c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ffssi2.o) + .ARM.attributes + 0x0000000000001a48 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_popcountsi2.o) + .ARM.attributes + 0x0000000000001a74 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x0000000000001aa0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x0000000000001acc 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatdidf.o) + .ARM.attributes + 0x0000000000001af8 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_floatundidf.o) + .ARM.attributes + 0x0000000000001b24 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000000000001b50 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(bpabi.o) + .ARM.attributes + 0x0000000000001b7c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqsf2.o) + .ARM.attributes + 0x0000000000001ba8 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gesf2.o) + .ARM.attributes + 0x0000000000001bd4 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(lesf2.o) + .ARM.attributes + 0x0000000000001c00 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(adddf3.o) + .ARM.attributes + 0x0000000000001c2c 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(divdf3.o) + .ARM.attributes + 0x0000000000001c58 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(muldf3.o) + .ARM.attributes + 0x0000000000001c84 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(subdf3.o) + .ARM.attributes + 0x0000000000001cb0 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatsidf.o) + .ARM.attributes + 0x0000000000001cdc 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(floatunsidf.o) + .ARM.attributes + 0x0000000000001d08 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(extendsfdf2.o) + .ARM.attributes + 0x0000000000001d34 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(truncdfsf2.o) + .ARM.attributes + 0x0000000000001d60 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_thumb1_case_uhi.o) + .ARM.attributes + 0x0000000000001d7e 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_lshrdi3.o) + .ARM.attributes + 0x0000000000001d9c 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_ashldi3.o) + .ARM.attributes + 0x0000000000001dba 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000001dd8 0x1e c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_clzdi2.o) + .ARM.attributes + 0x0000000000001df6 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_fixunsdfsi.o) + .ARM.attributes + 0x0000000000001e22 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(_divdi3.o) + .ARM.attributes + 0x0000000000001e4e 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(eqdf2.o) + .ARM.attributes + 0x0000000000001e7a 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(gedf2.o) + .ARM.attributes + 0x0000000000001ea6 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(ledf2.o) + .ARM.attributes + 0x0000000000001ed2 0x2c c:/users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v6-m/nofp\libgcc.a(fixdfsi.o) + *(SORT_BY_ALIGNMENT(.gnu.attributes)) + +SRAM0 0x0000000020000000 0x0 + 0x0000000020000000 __SRAM0_start = . + *(SORT_BY_ALIGNMENT(SRAM0)) + *(SORT_BY_ALIGNMENT(SRAM0.*)) + 0x0000000020000000 __SRAM0_end = . + 0x0000000000000000 __SRAM0_size = (__SRAM0_end - __SRAM0_start) + 0x0000000020000000 __SRAM0_load_start = LOADADDR (SRAM0) + +.last_section 0x000000000800c8a8 0x4 + *(SORT_BY_ALIGNMENT(.last_section)) + .last_section 0x000000000800c8a8 0x4 zephyr/libzephyr.a(last_section_id.c.obj) + 0x000000000000c8ac _flash_used = ((LOADADDR (.last_section) + SIZEOF (.last_section)) - __rom_region_start) + +bss 0x0000000020000150 0x131e + 0x0000000020000150 . = ALIGN (0x4) + 0x0000000020000150 __bss_start = . + 0x0000000020000150 __kernel_ram_start = . + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.logging_thread + 0x0000000020000150 0x70 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000020000150 logging_thread + .bss.buf32 0x00000000200001c0 0x400 zephyr/libzephyr.a(log_core.c.obj) + .bss.last_failure_report + 0x00000000200005c0 0x8 zephyr/libzephyr.a(log_core.c.obj) + .bss.log_process_thread_timer + 0x00000000200005c8 0x38 zephyr/libzephyr.a(log_core.c.obj) + .bss.announced_cycles + 0x0000000020000600 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.cycle_count + 0x0000000020000608 0x8 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.z_idle_threads + 0x0000000020000610 0x70 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000610 z_idle_threads + .bss.z_main_thread + 0x0000000020000680 0x70 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020000680 z_main_thread + .bss.k_sys_work_q + 0x00000000200006f0 0x90 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x00000000200006f0 k_sys_work_q + .bss._thread_dummy + 0x0000000020000780 0x70 zephyr/kernel/libkernel.a(sched.c.obj) + 0x0000000020000780 _thread_dummy + .bss.slice_timeouts + 0x00000000200007f0 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x0000000020000808 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.rx_pos 0x0000000020000810 0x4 app/libapp.a(cdc_handler.c.obj) + .bss.curr_log_buffer + 0x0000000020000814 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.proc_tid 0x0000000020000818 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.dropped_cnt + 0x000000002000081c 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.buffered_cnt + 0x0000000020000820 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.initialized + 0x0000000020000824 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.timestamp_div + 0x0000000020000828 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.freq 0x000000002000082c 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.lbu_data 0x0000000020000830 0x18 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.lbu_output_control_block + 0x0000000020000848 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.usb_dev 0x0000000020000854 0xcc zephyr/libzephyr.a(usb_device.c.obj) + .bss.ut_data 0x0000000020000920 0x100 zephyr/libzephyr.a(usb_transfer.c.obj) + .bss.z_arm_tls_ptr + 0x0000000020000a20 0x4 zephyr/arch/arch/arm/core/libarch__arm__core.a(tls.c.obj) + 0x0000000020000a20 z_arm_tls_ptr + .bss._stdout_hook + 0x0000000020000a24 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x0000000020000a28 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.intc_gpio_data + 0x0000000020000a34 0x80 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_gpio_stm32.c.obj) + .bss.usb_dc_stm32_state + 0x0000000020000ab4 0x728 zephyr/drivers/usb/device/libdrivers__usb__device.a(usb_dc_stm32.c.obj) + .bss.can_mcan_data_0 + 0x00000000200011dc 0x4c zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_ext_cbs + 0x0000000020001228 0x40 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_std_cbs + 0x0000000020001268 0xe0 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.can_stm32fd_cbs_0_tx_cbs + 0x0000000020001348 0x18 zephyr/drivers/can/libdrivers__can.a(can_stm32_fdcan.c.obj) + .bss.gpio_stm32_data_f + 0x0000000020001360 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_e + 0x0000000020001374 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_d + 0x0000000020001388 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_c + 0x000000002000139c 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_b + 0x00000000200013b0 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.gpio_stm32_data_a + 0x00000000200013c4 0x14 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_stm32.c.obj) + .bss.overflow_cyc + 0x00000000200013d8 0x4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss.last_load + 0x00000000200013dc 0x4 zephyr/drivers/timer/libdrivers__timer.a(cortex_m_systick.c.obj) + .bss._kernel 0x00000000200013e0 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x00000000200013e0 _kernel + .bss.pending_cancels + 0x0000000020001400 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss.pending_current + 0x0000000020001408 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x0000000020001408 pending_current + .bss.slice_max_prio + 0x000000002000140c 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x0000000020001410 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.rx_buf 0x0000000020001414 0x40 app/libapp.a(cdc_handler.c.obj) + .bss.pfet2_state + 0x0000000020001454 0x1 app/libapp.a(pfet_control.c.obj) + .bss.pfet1_state + 0x0000000020001455 0x1 app/libapp.a(pfet_control.c.obj) + .bss.backend_attached + 0x0000000020001456 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.panic_mode + 0x0000000020001457 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.lbu_buffer + 0x0000000020001458 0x1 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.initialized.0 + 0x0000000020001459 0x1 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.sn.1 0x000000002000145a 0x12 zephyr/libzephyr.a(usb_descriptor.c.obj) + .bss.z_sys_post_kernel + 0x000000002000146c 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x000000002000146c z_sys_post_kernel + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss._sched_spinlock + 0x000000002000146d 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x000000002000146d _sched_spinlock + .bss.slice_expired + 0x000000002000146d 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *(SORT_BY_ALIGNMENT(COMMON)) + *(SORT_BY_ALIGNMENT(.kernel_bss.*)) + 0x0000000020001470 __bss_end = ALIGN (0x4) + +noinit 0x0000000020001470 0x4000 + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit."WEST_TOPDIR/zephyr/subsys/logging/log_core.c".0 + 0x0000000020001470 0x300 zephyr/libzephyr.a(log_core.c.obj) + 0x0000000020001470 logging_stack + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".2 + 0x0000000020001770 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020001770 z_interrupt_stacks + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".1 + 0x0000000020001f70 0x100 zephyr/kernel/libkernel.a(init.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/init.c".0 + 0x0000000020002070 0x1000 zephyr/kernel/libkernel.a(init.c.obj) + 0x0000000020002070 z_main_stack + .noinit."WEST_TOPDIR/zephyr/kernel/system_work_q.c".0 + 0x0000000020003070 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit."WEST_TOPDIR/zephyr/kernel/mempool.c".kheap_buf__system_heap + 0x0000000020003470 0x2000 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x0000000020003470 kheap__system_heap + 0x0000000020024000 __kernel_ram_end = 0x20024000 + 0x0000000000023eb0 __kernel_ram_size = (__kernel_ram_end - __kernel_ram_start) + +.last_ram_section + 0x0000000020005470 0x0 + 0x0000000020005470 _image_ram_end = . + 0x0000000000005470 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x0000000020005470 _end = . + 0x0000000020005470 z_mapped_end = . +OUTPUT(zephyr\zephyr_pre0.elf elf32-littlearm) +LOAD linker stubs diff --git a/firmware/canfd_cdc_composite/build/zephyr_modules.txt b/firmware/canfd_cdc_composite/build/zephyr_modules.txt new file mode 100644 index 0000000..2ac469f --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr_modules.txt @@ -0,0 +1,58 @@ +"acpica":"C:/Users/iteedi/zephyrproject/modules/lib/acpica":"${ZEPHYR_ACPICA_CMAKE_DIR}" +"cmsis":"C:/Users/iteedi/zephyrproject/modules/hal/cmsis":"${ZEPHYR_CMSIS_CMAKE_DIR}" +"cmsis-dsp":"C:/Users/iteedi/zephyrproject/modules/lib/cmsis-dsp":"${ZEPHYR_CMSIS_DSP_CMAKE_DIR}" +"cmsis-nn":"C:/Users/iteedi/zephyrproject/modules/lib/cmsis-nn":"${ZEPHYR_CMSIS_NN_CMAKE_DIR}" +"cmsis_6":"C:/Users/iteedi/zephyrproject/modules/hal/cmsis_6":"${ZEPHYR_CMSIS_6_CMAKE_DIR}" +"fatfs":"C:/Users/iteedi/zephyrproject/modules/fs/fatfs":"${ZEPHYR_FATFS_CMAKE_DIR}" +"adi":"C:/Users/iteedi/zephyrproject/modules/hal/adi":"C:/Users/iteedi/zephyrproject/modules/hal/adi" +"hal_afbr":"C:/Users/iteedi/zephyrproject/modules/hal/afbr":"${ZEPHYR_HAL_AFBR_CMAKE_DIR}" +"hal_ambiq":"C:/Users/iteedi/zephyrproject/modules/hal/ambiq":"C:/Users/iteedi/zephyrproject/modules/hal/ambiq" +"atmel":"C:/Users/iteedi/zephyrproject/modules/hal/atmel":"C:/Users/iteedi/zephyrproject/modules/hal/atmel" +"hal_bouffalolab":"C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab":"${ZEPHYR_HAL_BOUFFALOLAB_CMAKE_DIR}" +"hal_espressif":"C:/Users/iteedi/zephyrproject/modules/hal/espressif":"C:/Users/iteedi/zephyrproject/modules/hal/espressif/zephyr" +"hal_ethos_u":"C:/Users/iteedi/zephyrproject/modules/hal/ethos_u":"${ZEPHYR_HAL_ETHOS_U_CMAKE_DIR}" +"hal_gigadevice":"C:/Users/iteedi/zephyrproject/modules/hal/gigadevice":"${ZEPHYR_HAL_GIGADEVICE_CMAKE_DIR}" +"hal_infineon":"C:/Users/iteedi/zephyrproject/modules/hal/infineon":"${ZEPHYR_HAL_INFINEON_CMAKE_DIR}" +"hal_intel":"C:/Users/iteedi/zephyrproject/modules/hal/intel":"C:/Users/iteedi/zephyrproject/modules/hal/intel/zephyr" +"microchip":"C:/Users/iteedi/zephyrproject/modules/hal/microchip":"C:/Users/iteedi/zephyrproject/modules/hal/microchip" +"hal_nordic":"C:/Users/iteedi/zephyrproject/modules/hal/nordic":"${ZEPHYR_HAL_NORDIC_CMAKE_DIR}" +"nuvoton":"C:/Users/iteedi/zephyrproject/modules/hal/nuvoton":"C:/Users/iteedi/zephyrproject/modules/hal/nuvoton" +"hal_nxp":"C:/Users/iteedi/zephyrproject/modules/hal/nxp":"${ZEPHYR_HAL_NXP_CMAKE_DIR}" +"openisa":"C:/Users/iteedi/zephyrproject/modules/hal/openisa":"C:/Users/iteedi/zephyrproject/modules/hal/openisa" +"quicklogic":"C:/Users/iteedi/zephyrproject/modules/hal/quicklogic":"C:/Users/iteedi/zephyrproject/modules/hal/quicklogic" +"hal_renesas":"C:/Users/iteedi/zephyrproject/modules/hal/renesas":"C:/Users/iteedi/zephyrproject/modules/hal/renesas" +"hal_rpi_pico":"C:/Users/iteedi/zephyrproject/modules/hal/rpi_pico":"${ZEPHYR_HAL_RPI_PICO_CMAKE_DIR}" +"hal_sifli":"C:/Users/iteedi/zephyrproject/modules/hal/sifli":"${ZEPHYR_HAL_SIFLI_CMAKE_DIR}" +"hal_silabs":"C:/Users/iteedi/zephyrproject/modules/hal/silabs":"${ZEPHYR_HAL_SILABS_CMAKE_DIR}" +"hal_st":"C:/Users/iteedi/zephyrproject/modules/hal/st":"C:/Users/iteedi/zephyrproject/modules/hal/st" +"hal_stm32":"C:/Users/iteedi/zephyrproject/modules/hal/stm32":"C:/Users/iteedi/zephyrproject/modules/hal/stm32" +"hal_tdk":"C:/Users/iteedi/zephyrproject/modules/hal/tdk":"C:/Users/iteedi/zephyrproject/modules/hal/tdk" +"hal_telink":"C:/Users/iteedi/zephyrproject/modules/hal/telink":"C:/Users/iteedi/zephyrproject/modules/hal/telink" +"ti":"C:/Users/iteedi/zephyrproject/modules/hal/ti":"C:/Users/iteedi/zephyrproject/modules/hal/ti" +"hal_wch":"C:/Users/iteedi/zephyrproject/modules/hal/wch":"${ZEPHYR_HAL_WCH_CMAKE_DIR}" +"hal_wurthelektronik":"C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik":"C:/Users/iteedi/zephyrproject/modules/hal/wurthelektronik" +"xtensa":"C:/Users/iteedi/zephyrproject/modules/hal/xtensa":"C:/Users/iteedi/zephyrproject/modules/hal/xtensa" +"hostap":"C:/Users/iteedi/zephyrproject/modules/lib/hostap":"${ZEPHYR_HOSTAP_CMAKE_DIR}" +"liblc3":"C:/Users/iteedi/zephyrproject/modules/lib/liblc3":"${ZEPHYR_LIBLC3_CMAKE_DIR}" +"libmctp":"C:/Users/iteedi/zephyrproject/modules/lib/libmctp":"C:/Users/iteedi/zephyrproject/modules/lib/libmctp/zephyr" +"libmetal":"C:/Users/iteedi/zephyrproject/modules/hal/libmetal":"C:/Users/iteedi/zephyrproject/modules/hal/libmetal" +"libsbc":"C:/Users/iteedi/zephyrproject/modules/lib/libsbc":"${ZEPHYR_LIBSBC_CMAKE_DIR}" +"littlefs":"C:/Users/iteedi/zephyrproject/modules/fs/littlefs":"${ZEPHYR_LITTLEFS_CMAKE_DIR}" +"lora-basics-modem":"C:/Users/iteedi/zephyrproject/modules/lib/lora-basics-modem":"${ZEPHYR_LORA_BASICS_MODEM_CMAKE_DIR}" +"loramac-node":"C:/Users/iteedi/zephyrproject/modules/lib/loramac-node":"${ZEPHYR_LORAMAC_NODE_CMAKE_DIR}" +"lvgl":"C:/Users/iteedi/zephyrproject/modules/lib/gui/lvgl":"${ZEPHYR_LVGL_CMAKE_DIR}" +"mbedtls":"C:/Users/iteedi/zephyrproject/modules/crypto/mbedtls":"${ZEPHYR_MBEDTLS_CMAKE_DIR}" +"mcuboot":"C:/Users/iteedi/zephyrproject/bootloader/mcuboot":"C:/Users/iteedi/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr" +"mipi-sys-t":"C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t":"C:/Users/iteedi/zephyrproject/modules/debug/mipi-sys-t" +"nanopb":"C:/Users/iteedi/zephyrproject/modules/lib/nanopb":"${ZEPHYR_NANOPB_CMAKE_DIR}" +"nrf_wifi":"C:/Users/iteedi/zephyrproject/modules/lib/nrf_wifi":"${ZEPHYR_NRF_WIFI_CMAKE_DIR}" +"open-amp":"C:/Users/iteedi/zephyrproject/modules/lib/open-amp":"C:/Users/iteedi/zephyrproject/modules/lib/open-amp" +"openthread":"C:/Users/iteedi/zephyrproject/modules/lib/openthread":"${ZEPHYR_OPENTHREAD_CMAKE_DIR}" +"percepio":"C:/Users/iteedi/zephyrproject/modules/debug/percepio":"${ZEPHYR_PERCEPIO_CMAKE_DIR}" +"picolibc":"C:/Users/iteedi/zephyrproject/modules/lib/picolibc":"C:/Users/iteedi/zephyrproject/modules/lib/picolibc" +"segger":"C:/Users/iteedi/zephyrproject/modules/debug/segger":"${ZEPHYR_SEGGER_CMAKE_DIR}" +"trusted-firmware-a":"C:/Users/iteedi/zephyrproject/modules/tee/tf-a/trusted-firmware-a":"${ZEPHYR_TRUSTED_FIRMWARE_A_CMAKE_DIR}" +"trusted-firmware-m":"C:/Users/iteedi/zephyrproject/modules/tee/tf-m/trusted-firmware-m":"${ZEPHYR_TRUSTED_FIRMWARE_M_CMAKE_DIR}" +"uoscore-uedhoc":"C:/Users/iteedi/zephyrproject/modules/lib/uoscore-uedhoc":"${ZEPHYR_UOSCORE_UEDHOC_CMAKE_DIR}" +"zcbor":"C:/Users/iteedi/zephyrproject/modules/lib/zcbor":"${ZEPHYR_ZCBOR_CMAKE_DIR}" +"nrf_hw_models":"C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models":"C:/Users/iteedi/zephyrproject/modules/bsim_hw_models/nrf_hw_models" diff --git a/firmware/canfd_cdc_composite/build/zephyr_settings.txt b/firmware/canfd_cdc_composite/build/zephyr_settings.txt new file mode 100644 index 0000000..3796751 --- /dev/null +++ b/firmware/canfd_cdc_composite/build/zephyr_settings.txt @@ -0,0 +1,19 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your modules. +# +# Modules may be set via ZEPHYR_MODULES, ZEPHYR_EXTRA_MODULES, +# and/or the west manifest file. +# +# See the Modules guide for more information. +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/adi" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/ambiq" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/atmel" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/bouffalolab" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/espressif" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/gigadevice" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/microchip" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/nuvoton" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/nxp" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/stm32" +"DTS_ROOT":"C:/Users/iteedi/zephyrproject/modules/hal/ti" diff --git a/firmware/canfd_cdc_composite/prj.conf b/firmware/canfd_cdc_composite/prj.conf index d79b57c..75346da 100644 --- a/firmware/canfd_cdc_composite/prj.conf +++ b/firmware/canfd_cdc_composite/prj.conf @@ -1,12 +1,35 @@ -# CAN configuration +# USB Device Stack for gs_usb +CONFIG_USB_DEVICE_STACK=y +CONFIG_USB_DEVICE_PRODUCT="EWS gs_usb CAN-FD" +CONFIG_USB_DEVICE_VID=0x1d50 +CONFIG_USB_DEVICE_PID=0x606f +CONFIG_USB_DEVICE_MANUFACTURER="EWS" + +# Ring buffer for USB communication +CONFIG_RING_BUFFER=y + +# Serial and UART +CONFIG_SERIAL=y +CONFIG_UART_LINE_CTRL=y + +# CAN configuration CONFIG_CAN=y CONFIG_CAN_FD_MODE=y # GPIO for PFET control CONFIG_GPIO=y +# Console and Shell +CONFIG_CONSOLE=y +CONFIG_UART_CONSOLE=y + # Logging CONFIG_LOG=y +CONFIG_LOG_DEFAULT_LEVEL=3 -# System -CONFIG_MAIN_STACK_SIZE=2048 \ No newline at end of file +# System configuration +CONFIG_MAIN_STACK_SIZE=4096 +CONFIG_HEAP_MEM_POOL_SIZE=8192 + +# Device tree and drivers +CONFIG_PINCTRL=y \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/cdc_handler.c b/firmware/canfd_cdc_composite/src/cdc_handler.c index eebbb33..d747547 100644 --- a/firmware/canfd_cdc_composite/src/cdc_handler.c +++ b/firmware/canfd_cdc_composite/src/cdc_handler.c @@ -15,10 +15,10 @@ LOG_MODULE_REGISTER(cdc_handler, LOG_LEVEL_DBG); -#define CDC_DEVICE_NAME "CDC_ACM_0" -#define RX_BUF_SIZE 64 +/* Use UART device for PFET control (not CDC over USB) */ +static const struct device *cdc_dev = DEVICE_DT_GET(DT_CHOSEN(zephyr_console)); -static const struct device *cdc_dev; +#define RX_BUF_SIZE 64 static char rx_buf[RX_BUF_SIZE]; static int rx_pos = 0; @@ -48,14 +48,15 @@ static void process_command(char *cmd) } /* Send response */ - uart_poll_out_string(cdc_dev, response); + for (int i = 0; i < strlen(response); i++) { + uart_poll_out(cdc_dev, response[i]); + } } int cdc_handler_init(void) { - cdc_dev = device_get_binding(CDC_DEVICE_NAME); - if (!cdc_dev) { - LOG_ERR("CDC ACM device not found"); + if (!device_is_ready(cdc_dev)) { + LOG_ERR("CDC ACM device not ready"); return -ENODEV; } @@ -65,10 +66,10 @@ int cdc_handler_init(void) void cdc_handler_process(void) { - char c; + unsigned char c; /* Check for incoming characters */ - while (uart_poll_in(cdc_dev, (unsigned char *)&c) == 0) { + while (uart_poll_in(cdc_dev, &c) == 0) { if (c == '\n' || c == '\r') { /* End of command */ if (rx_pos > 0) { @@ -78,7 +79,7 @@ void cdc_handler_process(void) } } else if (rx_pos < (RX_BUF_SIZE - 1)) { /* Add character to buffer */ - rx_buf[rx_pos++] = c; + rx_buf[rx_pos++] = (char)c; } else { /* Buffer full, reset */ rx_pos = 0; diff --git a/firmware/canfd_cdc_composite/src/gs_usb_can.c b/firmware/canfd_cdc_composite/src/gs_usb_can.c index b3e023d..66196bd 100644 --- a/firmware/canfd_cdc_composite/src/gs_usb_can.c +++ b/firmware/canfd_cdc_composite/src/gs_usb_can.c @@ -1,20 +1,99 @@ /* - * gs_usb CAN Interface - * Implements gs_usb protocol for CAN FD communication + * gs_usb CAN Interface Implementation + * Implements gs_usb protocol for CAN FD communication compatible with candleLight */ #include #include #include +#include #include +#include #include "gs_usb_can.h" +#include "usb_gs_usb_class.h" LOG_MODULE_REGISTER(gs_usb_can, LOG_LEVEL_DBG); /* CAN device */ static const struct device *can_dev = DEVICE_DT_GET(DT_CHOSEN(zephyr_canbus)); +/* gs_usb state */ +static struct gs_device_config device_config = { + .reserved1 = 0, + .reserved2 = 0, + .reserved3 = 0, + .icount = 1, /* One CAN interface */ + .sw_version = 0x00010001, + .hw_version = 0x00010001, +}; + +static struct gs_device_bt_const bt_const = { + .feature = GS_CAN_FEATURE_LISTEN_ONLY | + GS_CAN_FEATURE_LOOP_BACK | + GS_CAN_FEATURE_ONE_SHOT | + GS_CAN_FEATURE_HW_TIMESTAMP | + GS_CAN_FEATURE_FD | + GS_CAN_FEATURE_BRS, + .fclk_can = 64000000, /* 64MHz CAN clock */ + .tseg1_min = 1, + .tseg1_max = 256, + .tseg2_min = 1, + .tseg2_max = 128, + .sjw_max = 128, + .brp_min = 1, + .brp_max = 1024, + .brp_inc = 1, +}; + +static struct gs_device_mode current_mode = { + .mode = GS_CAN_MODE_NORMAL, + .flags = 0, +}; + +static struct gs_device_state current_state = { + .state = CAN_STATE_ERROR_ACTIVE, + .rxerr = 0, + .txerr = 0, +}; + +static bool can_started = false; +static uint32_t echo_id_counter = 0; + +/* CAN RX callback */ +static void can_rx_callback(const struct device *dev, struct can_frame *frame, void *user_data) +{ + struct gs_host_frame gs_frame = {0}; + + /* Convert CAN frame to gs_usb frame */ + gs_frame.echo_id = 0xFFFFFFFF; /* RX frame marker */ + gs_frame.can_id = frame->id; + + if (frame->flags & CAN_FRAME_IDE) { + gs_frame.can_id |= 0x80000000; /* Extended ID flag */ + } + if (frame->flags & CAN_FRAME_RTR) { + gs_frame.can_id |= 0x40000000; /* RTR flag */ + } + if (frame->flags & CAN_FRAME_FDF) { + gs_frame.flags |= 0x01; /* FD frame */ + } + if (frame->flags & CAN_FRAME_BRS) { + gs_frame.flags |= 0x02; /* BRS frame */ + } + + gs_frame.can_dlc = frame->dlc; + gs_frame.channel = 0; + gs_frame.timestamp_us = k_uptime_get_32(); + + memcpy(gs_frame.data, frame->data, MIN(frame->dlc, 8)); + + /* Send frame to host via USB bulk IN endpoint */ + gs_usb_send_frame_to_host((const uint8_t*)&gs_frame, sizeof(gs_frame)); + + LOG_DBG("RX: ID=0x%08x DLC=%d", frame->id, frame->dlc); +} + int gs_usb_can_init(void) { int ret; @@ -24,7 +103,7 @@ int gs_usb_can_init(void) return -ENODEV; } - /* Configure CAN timing for 500kbps (adjust as needed) */ + /* Set default timing for 500kbps */ struct can_timing timing = { .sjw = 1, .prop_seg = 6, @@ -39,10 +118,16 @@ int gs_usb_can_init(void) return ret; } - /* Start CAN controller */ - ret = can_start(can_dev); + /* Install RX callback */ + struct can_filter filter = { + .id = 0, + .mask = 0, + .flags = CAN_FILTER_IDE, + }; + + ret = can_add_rx_filter(can_dev, can_rx_callback, NULL, &filter); if (ret < 0) { - LOG_ERR("Failed to start CAN: %d", ret); + LOG_ERR("Failed to add CAN RX filter: %d", ret); return ret; } @@ -50,13 +135,168 @@ int gs_usb_can_init(void) return 0; } +int gs_usb_handle_control_request(struct usb_setup_packet *setup, int32_t *len, uint8_t **data) +{ + static uint8_t response_buf[64]; + int ret = 0; + + LOG_DBG("Control request: bRequest=0x%02x wValue=0x%04x wIndex=0x%04x wLength=%d", + setup->bRequest, setup->wValue, setup->wIndex, setup->wLength); + + switch (setup->bRequest) { + case GS_USB_BREQ_HOST_FORMAT: + /* Host format - not much to do */ + *len = 0; + break; + + case GS_USB_BREQ_DEVICE_CONFIG: + memcpy(response_buf, &device_config, sizeof(device_config)); + *data = response_buf; + *len = sizeof(device_config); + break; + + case GS_USB_BREQ_BT_CONST: + memcpy(response_buf, &bt_const, sizeof(bt_const)); + *data = response_buf; + *len = sizeof(bt_const); + break; + + case GS_USB_BREQ_BITTIMING: + if (setup->bmRequestType & USB_REQTYPE_DIR_TO_DEVICE) { + /* Set bit timing */ + struct gs_device_bittiming *bt = (struct gs_device_bittiming *)*data; + struct can_timing timing = { + .sjw = bt->sjw, + .prop_seg = bt->prop_seg, + .phase_seg1 = bt->phase_seg1, + .phase_seg2 = bt->phase_seg2, + .prescaler = bt->brp, + }; + + if (can_started) { + can_stop(can_dev); + can_started = false; + } + + ret = can_set_timing(can_dev, &timing); + if (ret < 0) { + LOG_ERR("Failed to set timing: %d", ret); + return ret; + } + LOG_INF("Set timing: brp=%d sjw=%d prop=%d ph1=%d ph2=%d", + bt->brp, bt->sjw, bt->prop_seg, bt->phase_seg1, bt->phase_seg2); + *len = 0; + } else { + /* Get current bit timing */ + *len = 0; /* TODO: Return current timing */ + } + break; + + case GS_USB_BREQ_MODE: + if (setup->bmRequestType & USB_REQTYPE_DIR_TO_DEVICE) { + /* Set mode */ + struct gs_device_mode *mode = (struct gs_device_mode *)*data; + current_mode = *mode; + + if (mode->mode & GS_CAN_MODE_NORMAL) { + if (!can_started) { + ret = can_start(can_dev); + if (ret < 0) { + LOG_ERR("Failed to start CAN: %d", ret); + return ret; + } + can_started = true; + LOG_INF("CAN started"); + } + } else { + if (can_started) { + can_stop(can_dev); + can_started = false; + LOG_INF("CAN stopped"); + } + } + *len = 0; + } else { + /* Get current mode */ + memcpy(response_buf, ¤t_mode, sizeof(current_mode)); + *data = response_buf; + *len = sizeof(current_mode); + } + break; + + case GS_USB_BREQ_GET_STATE: + /* Update error counters - simplified for now */ + current_state.state = CAN_STATE_ERROR_ACTIVE; + current_state.rxerr = 0; + current_state.txerr = 0; + + memcpy(response_buf, ¤t_state, sizeof(current_state)); + *data = response_buf; + *len = sizeof(current_state); + break; + + case GS_USB_BREQ_IDENTIFY: + /* LED identify - toggle status LED */ + *len = 0; + break; + + default: + LOG_WRN("Unhandled control request: 0x%02x", setup->bRequest); + ret = -ENOTSUP; + break; + } + + return ret; +} + int gs_usb_can_send_frame(const struct can_frame *frame) { + if (!can_started) { + return -ENETDOWN; + } + return can_send(can_dev, frame, K_FOREVER, NULL, NULL); } -/* TODO: Implement full gs_usb protocol */ -/* This would require implementing the USB bulk endpoints and - gs_usb command/response protocol as defined in: - https://github.com/candle-usb/candleLight_fw -*/ \ No newline at end of file +/* Handle incoming gs_usb frames from host */ +int gs_usb_process_host_frame(const struct gs_host_frame *gs_frame) +{ + struct can_frame frame = {0}; + int ret; + + /* Convert gs_usb frame to CAN frame */ + frame.id = gs_frame->can_id & 0x1FFFFFFF; + + if (gs_frame->can_id & 0x80000000) { + frame.flags |= CAN_FRAME_IDE; + } + if (gs_frame->can_id & 0x40000000) { + frame.flags |= CAN_FRAME_RTR; + } + if (gs_frame->flags & 0x01) { + frame.flags |= CAN_FRAME_FDF; + } + if (gs_frame->flags & 0x02) { + frame.flags |= CAN_FRAME_BRS; + } + + frame.dlc = gs_frame->can_dlc; + memcpy(frame.data, gs_frame->data, MIN(frame.dlc, 8)); + + /* Send frame */ + ret = gs_usb_can_send_frame(&frame); + + if (ret == 0) { + /* Echo frame back to host */ + struct gs_host_frame echo_frame = *gs_frame; + echo_frame.echo_id = echo_id_counter++; + echo_frame.timestamp_us = k_uptime_get_32(); + + /* Send echo frame via USB bulk IN endpoint */ + gs_usb_send_frame_to_host((const uint8_t*)&echo_frame, sizeof(echo_frame)); + + LOG_DBG("TX: ID=0x%08x DLC=%d", frame.id, frame.dlc); + } + + return ret; +} \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/gs_usb_can.h b/firmware/canfd_cdc_composite/src/gs_usb_can.h index a02136d..b0eaff0 100644 --- a/firmware/canfd_cdc_composite/src/gs_usb_can.h +++ b/firmware/canfd_cdc_composite/src/gs_usb_can.h @@ -1,11 +1,116 @@ /* * gs_usb CAN Interface Header + * Based on candleLight firmware gs_usb protocol */ #ifndef GS_USB_CAN_H #define GS_USB_CAN_H #include +#include + +/* gs_usb protocol definitions */ +#define GS_USB_BREQ_HOST_FORMAT 0 +#define GS_USB_BREQ_BITTIMING 1 +#define GS_USB_BREQ_MODE 2 +#define GS_USB_BREQ_BERR 3 +#define GS_USB_BREQ_BT_CONST 4 +#define GS_USB_BREQ_DEVICE_CONFIG 5 +#define GS_USB_BREQ_TIMESTAMP 6 +#define GS_USB_BREQ_IDENTIFY 7 +#define GS_USB_BREQ_GET_USER_ID 8 +#define GS_USB_BREQ_SET_USER_ID 9 +#define GS_USB_BREQ_DATA_BITTIMING 10 +#define GS_USB_BREQ_BT_CONST_EXT 11 +#define GS_USB_BREQ_SET_TERMINATION 12 +#define GS_USB_BREQ_GET_TERMINATION 13 +#define GS_USB_BREQ_GET_STATE 14 + +/* gs_usb mode flags */ +#define GS_CAN_MODE_NORMAL 0 +#define GS_CAN_MODE_LISTEN_ONLY (1 << 0) +#define GS_CAN_MODE_LOOP_BACK (1 << 1) +#define GS_CAN_MODE_TRIPLE_SAMPLE (1 << 2) +#define GS_CAN_MODE_ONE_SHOT (1 << 3) +#define GS_CAN_MODE_HW_TIMESTAMP (1 << 4) +#define GS_CAN_MODE_IDENTIFY (1 << 5) +#define GS_CAN_MODE_USER_ID (1 << 6) +#define GS_CAN_MODE_PAD_PKTS_TO_MAX_PKT_SIZE (1 << 7) +#define GS_CAN_MODE_FD (1 << 8) +#define GS_CAN_MODE_REQ_USB_QUIRK_LPC546XX (1 << 9) +#define GS_CAN_MODE_BRS (1 << 10) + +/* gs_usb feature flags */ +#define GS_CAN_FEATURE_LISTEN_ONLY (1 << 0) +#define GS_CAN_FEATURE_LOOP_BACK (1 << 1) +#define GS_CAN_FEATURE_TRIPLE_SAMPLE (1 << 2) +#define GS_CAN_FEATURE_ONE_SHOT (1 << 3) +#define GS_CAN_FEATURE_HW_TIMESTAMP (1 << 4) +#define GS_CAN_FEATURE_IDENTIFY (1 << 5) +#define GS_CAN_FEATURE_USER_ID (1 << 6) +#define GS_CAN_FEATURE_PAD_PKTS_TO_MAX_PKT_SIZE (1 << 7) +#define GS_CAN_FEATURE_FD (1 << 8) +#define GS_CAN_FEATURE_REQ_USB_QUIRK_LPC546XX (1 << 9) +#define GS_CAN_FEATURE_BRS (1 << 10) +#define GS_CAN_FEATURE_TERMINATION (1 << 11) +#define GS_CAN_FEATURE_BERR_REPORTING (1 << 12) +#define GS_CAN_FEATURE_GET_STATE (1 << 13) + +struct gs_host_config { + uint32_t byte_order; +}; + +struct gs_device_config { + uint8_t reserved1; + uint8_t reserved2; + uint8_t reserved3; + uint8_t icount; + uint32_t sw_version; + uint32_t hw_version; +}; + +struct gs_device_mode { + uint32_t mode; + uint32_t flags; +}; + +struct gs_device_state { + uint32_t state; + uint32_t rxerr; + uint32_t txerr; +}; + +struct gs_device_bittiming { + uint32_t prop_seg; + uint32_t phase_seg1; + uint32_t phase_seg2; + uint32_t sjw; + uint32_t brp; +}; + +struct gs_device_bt_const { + uint32_t feature; + uint32_t fclk_can; + uint32_t tseg1_min; + uint32_t tseg1_max; + uint32_t tseg2_min; + uint32_t tseg2_max; + uint32_t sjw_max; + uint32_t brp_min; + uint32_t brp_max; + uint32_t brp_inc; +}; + +struct gs_host_frame { + uint32_t echo_id; + uint32_t can_id; + uint8_t can_dlc; + uint8_t channel; + uint8_t flags; + uint8_t reserved; + uint8_t data[8]; + uint32_t timestamp_us; +}; /** * Initialize gs_usb CAN interface @@ -14,10 +119,26 @@ int gs_usb_can_init(void); /** - * Send a CAN frame + * Handle gs_usb control requests + * @param setup USB setup packet + * @param len Length of data + * @param data Data buffer + * @return 0 on success, negative error code on failure + */ +int gs_usb_handle_control_request(struct usb_setup_packet *setup, int32_t *len, uint8_t **data); + +/** + * Send a CAN frame via gs_usb protocol * @param frame CAN frame to send * @return 0 on success, negative error code on failure */ int gs_usb_can_send_frame(const struct can_frame *frame); +/** + * Process incoming gs_usb frame from host + * @param gs_frame gs_usb frame from host + * @return 0 on success, negative error code on failure + */ +int gs_usb_process_host_frame(const struct gs_host_frame *gs_frame); + #endif /* GS_USB_CAN_H */ \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/main.c b/firmware/canfd_cdc_composite/src/main.c index 5f2329b..2494ac3 100644 --- a/firmware/canfd_cdc_composite/src/main.c +++ b/firmware/canfd_cdc_composite/src/main.c @@ -6,12 +6,12 @@ #include #include #include -#include #include #include "cdc_handler.h" #include "pfet_control.h" #include "gs_usb_can.h" +#include "usb_gs_usb_class.h" LOG_MODULE_REGISTER(main, LOG_LEVEL_DBG); @@ -44,10 +44,10 @@ int main(void) return ret; } - /* Initialize USB composite device */ - ret = usb_enable(NULL); + /* Initialize USB gs_usb class */ + ret = usb_gs_usb_init(); if (ret != 0) { - LOG_ERR("Failed to enable USB: %d", ret); + LOG_ERR("Failed to initialize USB gs_usb: %d", ret); return ret; } diff --git a/firmware/canfd_cdc_composite/src/usb_gs_class.c b/firmware/canfd_cdc_composite/src/usb_gs_class.c new file mode 100644 index 0000000..7befa4c --- /dev/null +++ b/firmware/canfd_cdc_composite/src/usb_gs_class.c @@ -0,0 +1,152 @@ +/* + * GS_USB Device Implementation with Bulk Endpoints + * Complete gs_usb USB device for CAN interface + */ + +#include +#include +#include +#include +#include + +#include "gs_usb_can.h" +#include "usb_gs_descriptors.h" + +LOG_MODULE_REGISTER(usb_gs_device, LOG_LEVEL_DBG); + +/* USB endpoint buffers */ +#define GS_USB_BUFFER_SIZE 1024 +static uint8_t ep_out_buffer[GS_USB_BULK_EP_MPS]; +static uint8_t ep_in_buffer[GS_USB_BULK_EP_MPS]; + +/* Ring buffer for outgoing CAN frames */ +RING_BUF_DECLARE(gs_tx_ringbuf, GS_USB_BUFFER_SIZE); + +/* Endpoint callbacks */ +static void gs_usb_ep_out_cb(uint8_t ep, enum usb_dc_ep_cb_status_code cb_status) +{ + uint32_t bytes_read = 0; + int ret; + + LOG_DBG("EP OUT callback: ep=0x%02x status=%d", ep, cb_status); + + if (cb_status == USB_DC_EP_DATA_OUT) { + /* Read data from OUT endpoint */ + ret = usb_read(ep, ep_out_buffer, sizeof(ep_out_buffer), &bytes_read); + if (ret == 0 && bytes_read >= sizeof(struct gs_host_frame)) { + + /* Process each frame in the buffer */ + uint32_t offset = 0; + while (offset + sizeof(struct gs_host_frame) <= bytes_read) { + struct gs_host_frame *frame = (struct gs_host_frame *)(ep_out_buffer + offset); + + /* Process the host frame */ + gs_usb_process_host_frame(frame); + + offset += sizeof(struct gs_host_frame); + } + } + } +} + +static void gs_usb_ep_in_cb(uint8_t ep, enum usb_dc_ep_cb_status_code cb_status) +{ + LOG_DBG("EP IN callback: ep=0x%02x status=%d", ep, cb_status); + + if (cb_status == USB_DC_EP_DATA_IN) { + /* Check if we have more data to send */ + uint32_t available = ring_buf_size_get(&gs_tx_ringbuf); + if (available >= sizeof(struct gs_host_frame)) { + /* Send next frame */ + uint32_t bytes_read = ring_buf_get(&gs_tx_ringbuf, ep_in_buffer, sizeof(struct gs_host_frame)); + if (bytes_read == sizeof(struct gs_host_frame)) { + usb_write(ep, ep_in_buffer, bytes_read, NULL); + } + } + } +} + +/* USB device configuration */ +static struct usb_ep_cfg_data gs_usb_ep_cfg[] = { + { + .ep_cb = gs_usb_ep_out_cb, + .ep_addr = GS_USB_BULK_EP_OUT, + }, + { + .ep_cb = gs_usb_ep_in_cb, + .ep_addr = GS_USB_BULK_EP_IN, + }, +}; + +static struct usb_interface_cfg_data gs_usb_if_cfg = { + .class = USB_CLASS_VENDOR_SPECIFIC, + .subclass = USB_SUBCLASS_VENDOR, + .protocol = USB_PROTOCOL_VENDOR, + .ep = gs_usb_ep_cfg, + .num_ep = ARRAY_SIZE(gs_usb_ep_cfg), +}; + +/* Custom request handler */ +static int gs_usb_custom_req_handler(struct usb_setup_packet *setup, int32_t *len, uint8_t **data) +{ + /* Handle vendor-specific control requests */ + if ((setup->bmRequestType & 0x60) == 0x40) { /* Vendor request */ + return gs_usb_handle_control_request(setup, len, data); + } + + return -ENOTSUP; +} + +/* USB configuration structure */ +static struct usb_cfg_data gs_usb_cfg = { + .usb_device_description = &gs_usb_dev_desc, + .interface_config = gs_usb_custom_req_handler, + .interface_descriptor = &gs_usb_cfg_desc.interface, + .cb_usb_status = NULL, + .interface = { + .class_handler = NULL, + .custom_handler = gs_usb_custom_req_handler, + .vendor_handler = gs_usb_custom_req_handler, + }, + .num_endpoints = ARRAY_SIZE(gs_usb_ep_cfg), + .endpoint = gs_usb_ep_cfg, +}; + +/* Send a gs_usb frame to host */ +int gs_usb_send_frame_to_host(const struct gs_host_frame *frame) +{ + uint32_t bytes_written; + + /* Try to put frame in ring buffer */ + bytes_written = ring_buf_put(&gs_tx_ringbuf, (uint8_t *)frame, sizeof(struct gs_host_frame)); + + if (bytes_written != sizeof(struct gs_host_frame)) { + LOG_WRN("Ring buffer full, dropping frame"); + return -ENOMEM; + } + + /* If this is the first frame in buffer, start transmission */ + if (ring_buf_size_get(&gs_tx_ringbuf) == sizeof(struct gs_host_frame)) { + uint32_t bytes_read = ring_buf_get(&gs_tx_ringbuf, ep_in_buffer, sizeof(struct gs_host_frame)); + if (bytes_read == sizeof(struct gs_host_frame)) { + return usb_write(GS_USB_BULK_EP_IN, ep_in_buffer, bytes_read, NULL); + } + } + + return 0; +} + +int usb_gs_class_init(void) +{ + int ret; + + /* Configure USB device with our descriptors */ + ret = usb_set_config(&gs_usb_cfg); + if (ret < 0) { + LOG_ERR("Failed to configure USB device: %d", ret); + return ret; + } + + LOG_INF("GS_USB device configured with bulk endpoints"); + return 0; +} \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/usb_gs_class.h b/firmware/canfd_cdc_composite/src/usb_gs_class.h new file mode 100644 index 0000000..d7ca217 --- /dev/null +++ b/firmware/canfd_cdc_composite/src/usb_gs_class.h @@ -0,0 +1,23 @@ +/* + * USB gs_usb Class Header + */ + +#ifndef USB_GS_CLASS_H +#define USB_GS_CLASS_H + +#include "gs_usb_can.h" + +/** + * Initialize USB gs_usb class + * @return 0 on success, negative error code on failure + */ +int usb_gs_class_init(void); + +/** + * Send a gs_usb frame to host via USB bulk IN endpoint + * @param frame gs_usb frame to send + * @return 0 on success, negative error code on failure + */ +int gs_usb_send_frame_to_host(const struct gs_host_frame *frame); + +#endif /* USB_GS_CLASS_H */ \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/usb_gs_descriptors.c b/firmware/canfd_cdc_composite/src/usb_gs_descriptors.c new file mode 100644 index 0000000..dcb29bf --- /dev/null +++ b/firmware/canfd_cdc_composite/src/usb_gs_descriptors.c @@ -0,0 +1,99 @@ +/* + * GS_USB USB Device Descriptors Implementation + */ + +#include +#include +#include "usb_gs_descriptors.h" + +/* Device descriptor */ +const struct usb_device_descriptor gs_usb_dev_desc = { + .bLength = USB_DEVICE_DESC_SIZE, + .bDescriptorType = USB_DESC_DEVICE, + .bcdUSB = sys_cpu_to_le16(USB_SRN_2_0), + .bDeviceClass = 0, + .bDeviceSubClass = 0, + .bDeviceProtocol = 0, + .bMaxPacketSize0 = USB_MAX_CTRL_MPS, + .idVendor = sys_cpu_to_le16(GS_USB_VENDOR_ID), + .idProduct = sys_cpu_to_le16(GS_USB_PRODUCT_ID), + .bcdDevice = sys_cpu_to_le16(0x0100), /* Device release 1.0 */ + .iManufacturer = 1, + .iProduct = 2, + .iSerialNumber = 3, + .bNumConfigurations = 1, +}; + +/* Configuration descriptor */ +const struct gs_usb_config_descriptor gs_usb_cfg_desc = { + .config = { + .bLength = USB_CFG_DESC_SIZE, + .bDescriptorType = USB_DESC_CONFIGURATION, + .wTotalLength = sys_cpu_to_le16(sizeof(struct gs_usb_config_descriptor)), + .bNumInterfaces = 1, + .bConfigurationValue = 1, + .iConfiguration = 0, + .bmAttributes = USB_SRN_CFG_ATTR_BASE | USB_SRN_CFG_ATTR_SELF_POWERED, + .bMaxPower = 250, /* 500mA */ + }, + + .interface = { + .bLength = USB_IF_DESC_SIZE, + .bDescriptorType = USB_DESC_INTERFACE, + .bInterfaceNumber = GS_USB_INTERFACE_NUM, + .bAlternateSetting = 0, + .bNumEndpoints = 2, + .bInterfaceClass = USB_CLASS_VENDOR_SPECIFIC, + .bInterfaceSubClass = USB_SUBCLASS_VENDOR, + .bInterfaceProtocol = USB_PROTOCOL_VENDOR, + .iInterface = 0, + }, + + .ep_out = { + .bLength = USB_EP_DESC_SIZE, + .bDescriptorType = USB_DESC_ENDPOINT, + .bEndpointAddress = GS_USB_BULK_EP_OUT, + .bmAttributes = USB_DC_EP_BULK, + .wMaxPacketSize = sys_cpu_to_le16(GS_USB_BULK_EP_MPS), + .bInterval = 0, + }, + + .ep_in = { + .bLength = USB_EP_DESC_SIZE, + .bDescriptorType = USB_DESC_ENDPOINT, + .bEndpointAddress = GS_USB_BULK_EP_IN, + .bmAttributes = USB_DC_EP_BULK, + .wMaxPacketSize = sys_cpu_to_le16(GS_USB_BULK_EP_MPS), + .bInterval = 0, + }, +}; + +/* String descriptors */ +static const uint8_t gs_usb_string_lang[] = { + 0x04, 0x03, 0x09, 0x04 /* Language descriptor: English US */ +}; + +static const uint8_t gs_usb_string_manufacturer[] = { + 0x06, 0x03, 'E', 0, 'W', 0, 'S', 0 /* "EWS" */ +}; + +static const uint8_t gs_usb_string_product[] = { + 0x18, 0x03, + 'E', 0, 'W', 0, 'S', 0, ' ', 0, + 'C', 0, 'A', 0, 'N', 0, '-', 0, 'F', 0, 'D', 0 +}; + +static const uint8_t gs_usb_string_serial[] = { + 0x12, 0x03, + '0', 0, '0', 0, '0', 0, '0', 0, + '0', 0, '0', 0, '0', 0, '1', 0 +}; + +const struct usb_string_desription gs_usb_string_desc = { + .lang_descr = gs_usb_string_lang, + .utf16le_string = { + gs_usb_string_manufacturer, + gs_usb_string_product, + gs_usb_string_serial, + }, +}; \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/usb_gs_descriptors.h b/firmware/canfd_cdc_composite/src/usb_gs_descriptors.h new file mode 100644 index 0000000..566a562 --- /dev/null +++ b/firmware/canfd_cdc_composite/src/usb_gs_descriptors.h @@ -0,0 +1,43 @@ +/* + * GS_USB USB Device Descriptors + * Complete USB device configuration for gs_usb protocol with bulk endpoints + */ + +#ifndef USB_GS_DESCRIPTORS_H +#define USB_GS_DESCRIPTORS_H + +#include + +/* GS_USB specific USB descriptor values */ +#define GS_USB_VENDOR_ID 0x1d50 /* OpenMoko vendor ID */ +#define GS_USB_PRODUCT_ID 0x606f /* gs_usb device ID */ + +/* Interface and endpoint configuration */ +#define GS_USB_INTERFACE_NUM 0 +#define GS_USB_BULK_EP_OUT 0x01 +#define GS_USB_BULK_EP_IN 0x81 +#define GS_USB_BULK_EP_MPS 64 + +/* USB Class codes for vendor specific interface */ +#define USB_CLASS_VENDOR_SPECIFIC 0xFF +#define USB_SUBCLASS_VENDOR 0xFF +#define USB_PROTOCOL_VENDOR 0xFF + +/* USB descriptor structures */ +struct gs_usb_config_descriptor { + struct usb_cfg_descriptor config; + struct usb_if_descriptor interface; + struct usb_ep_descriptor ep_out; + struct usb_ep_descriptor ep_in; +} __packed; + +/* Configuration descriptor */ +extern const struct gs_usb_config_descriptor gs_usb_cfg_desc; + +/* Device descriptor */ +extern const struct usb_device_descriptor gs_usb_dev_desc; + +/* String descriptors */ +extern const struct usb_string_desription gs_usb_string_desc; + +#endif /* USB_GS_DESCRIPTORS_H */ \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/usb_gs_usb_class.c b/firmware/canfd_cdc_composite/src/usb_gs_usb_class.c new file mode 100644 index 0000000..2ece044 --- /dev/null +++ b/firmware/canfd_cdc_composite/src/usb_gs_usb_class.c @@ -0,0 +1,37 @@ +/* + * Minimal USB gs_usb interface - just USB enabling for now + */ + +#include +#include +#include + +#include "usb_gs_usb_class.h" + +LOG_MODULE_REGISTER(usb_gs_usb, LOG_LEVEL_DBG); + +/* Function to send frame to host - stub for now */ +int gs_usb_send_frame_to_host(const uint8_t *data, uint32_t len) +{ + /* For now, just log that we would send data */ + LOG_DBG("Would send %d bytes to host", len); + return 0; +} + +/* Initialize gs_usb USB interface - minimal version */ +int usb_gs_usb_init(void) +{ + int ret; + + LOG_INF("Initializing minimal gs_usb USB interface"); + + /* Just enable basic USB device stack for now */ + ret = usb_enable(NULL); + if (ret != 0) { + LOG_ERR("Failed to enable USB: %d", ret); + return ret; + } + + LOG_INF("Basic USB interface initialized"); + return 0; +} \ No newline at end of file diff --git a/firmware/canfd_cdc_composite/src/usb_gs_usb_class.h b/firmware/canfd_cdc_composite/src/usb_gs_usb_class.h new file mode 100644 index 0000000..600ac2e --- /dev/null +++ b/firmware/canfd_cdc_composite/src/usb_gs_usb_class.h @@ -0,0 +1,29 @@ +#ifndef USB_GS_USB_CLASS_H +#define USB_GS_USB_CLASS_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* gs_usb vendor request definitions */ +#define GS_USB_VENDOR_REQ_OUT 0x01 +#define GS_USB_VENDOR_REQ_IN 0x02 + +/* gs_usb functions from gs_usb_can.h */ +extern int gs_usb_host_frame_received(const uint8_t *data, uint32_t len); +extern int gs_usb_get_frame_to_send(uint8_t *buffer, uint32_t max_len); + +/* Function to send frame to host */ +extern int gs_usb_send_frame_to_host(const uint8_t *data, uint32_t len); + +/* Initialize the gs_usb USB class */ +int usb_gs_usb_init(void); + +#ifdef __cplusplus +} +#endif + +#endif /* USB_GS_USB_CLASS_H */ \ No newline at end of file